deepstone

view src/wvga.h @ 38:17a5107b6fa4

- added perspective correct interpolation - added recording functionality - added video capture functionality
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 10 Mar 2014 17:24:42 +0200
parents 00d84ab1ef26
children
line source
1 #ifndef WVGA_H_
2 #define WVGA_H_
5 int set_video_mode(int mode);
6 void set_palette(int idx, int *col, int count);
7 void set_pal_entry(int idx, int r, int g, int b);
8 void copy_frame(void *pixels);
10 void wait_vsync(void);
12 void begin_capture(int frames);
13 void end_capture(void);
15 #endif /* WVGA_H_ */