aboutsummaryrefslogtreecommitdiff
path: root/frontend/plat.h
blob: 8a296ea49d12e3ae83cbc9e9c6fce4f5e7dc3bde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef __PLAT_H__
#define __PLAT_H__

void plat_init(void);
void plat_finish(void);
void plat_minimize(void);
void *plat_prepare_screenshot(int *w, int *h, int *bpp);

// indirectly called from GPU plugin
void  plat_gvideo_open(int is_pal);
void *plat_gvideo_set_mode(int *w, int *h, int *bpp);
void *plat_gvideo_flip(void);
void  plat_gvideo_close(void);

#endif /* __PLAT_H__ */