new patch type, more aggressive patching
[ginge.git] / common / host_fb.h
CommitLineData
3adc9ccb 1int host_video_init(int *stride, int no_dblbuf);
6ca08393 2void host_video_finish(void);
3adc9ccb 3void *host_video_flip(void);
6ca08393 4void host_video_change_bpp(int bpp);
3adc9ccb 5
7000b522 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);