loader: unmix wiz start/select, pnd root check
[ginge.git] / common / host_fb.h
... / ...
CommitLineData
1int host_video_init(int *stride, int no_dblbuf);
2void host_video_finish(void);
3void *host_video_flip(void);
4void host_video_change_bpp(int bpp);
5
6// these are mutually exclusive
7void host_video_update_pal16(unsigned short *pal);
8void host_video_update_pal32(unsigned int *pal);
9
10void host_video_blit4(const unsigned char *src, int w, int h, int stride);
11void host_video_blit8(const unsigned char *src, int w, int h, int stride);
12void host_video_blit16(const unsigned short *src, int w, int h, int stride);