| | 1 | int host_video_init(int *stride, int no_dblbuf); |
| | 2 | void host_video_finish(void); |
| | 3 | void *host_video_flip(void); |
| | 4 | void host_video_change_bpp(int bpp); |
| | 5 | |
| | 6 | // these are mutually exclusive |
| | 7 | void host_video_update_pal16(unsigned short *pal); |
| | 8 | void host_video_update_pal32(unsigned int *pal); |
| | 9 | |
| | 10 | void host_video_blit4(const unsigned char *src, int w, int h, int stride); |
| | 11 | void host_video_blit8(const unsigned char *src, int w, int h, int stride); |
| | 12 | void host_video_blit16(const unsigned short *src, int w, int h, int stride); |
| | 13 | |
| | 14 | void host_video_normalize_ts(int *x1024, int *y1024); |