dos3d

annotate src/wvga.h @ 21:00d84ab1ef26

switched to wacom
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 21 Sep 2013 18:17:55 +0300
parents
children
rev   line source
nuclear@21 1 #ifndef WVGA_H_
nuclear@21 2 #define WVGA_H_
nuclear@21 3
nuclear@21 4
nuclear@21 5 int set_video_mode(int mode);
nuclear@21 6 void set_palette(int idx, int *col, int count);
nuclear@21 7 void set_pal_entry(int idx, int r, int g, int b);
nuclear@21 8 void copy_frame(void *pixels);
nuclear@21 9
nuclear@21 10 void wait_vsync(void);
nuclear@21 11
nuclear@21 12 #endif /* WVGA_H_ */