implement automatic fire of bunker5
[rofl0r-openDOW.git] / video.h
blob66ad94d6dde8a3fdfce0208401a33434b59d35cd
1 #ifndef VIDEO_H
2 #define VIDEO_H
4 #define SCALE 2
5 #define VMODE_W 320*SCALE
6 #define VMODE_H 240*SCALE
8 #include "palpic.h"
9 #include <SDL/SDL.h>
11 extern struct vo_desc video;
13 void video_init(void);
14 void video_cleanup(void);
15 void toggle_fullscreen(void);
16 void clear_screen(void);
17 void video_update_region(int x, int y, int w, int h);
18 void video_update(void);
20 //RcB: DEP "video.c"
22 #endif