handle writeback in interpreter
[ginge.git] / common / host_fb.h
index bd739d4..9a1c1f8 100644 (file)
@@ -1,3 +1,12 @@
 int   host_video_init(int *stride, int no_dblbuf);
+void  host_video_finish(void);
 void *host_video_flip(void);
+void  host_video_change_bpp(int bpp);
 
+// these are mutually exclusive
+void  host_video_update_pal16(unsigned short *pal);
+void  host_video_update_pal32(unsigned int *pal);
+
+void host_video_blit4(const unsigned char *src, int w, int h, int stride);
+void host_video_blit8(const unsigned char *src, int w, int h, int stride);
+void host_video_blit16(const unsigned short *src, int w, int h, int stride);