b93c6b7a40814cf9842cb73c33512a340c14fe6d
[censuslogo] / src / app.h
1 #ifndef APP_H_
2 #define APP_H_
3
4 /* undefine to build without anti-aliasing */
5 #define MSAA
6
7 int win_width, win_height;
8 int nverts;
9 int msaa;
10 int fullscr;
11 long msec;
12 int nloops;
13
14 int app_init(void);
15 void app_display(void);
16 void app_reshape(int x, int y);
17 void app_keyboard(int key, int pressed);
18 int app_parse_args(int argc, char **argv);
19
20 /* defined in main_*.c */
21 void app_quit(void);
22 void app_fullscreen(void);
23 void app_windowed(void);
24
25 #endif  /* APP_H_ */