70f89ed5b913f04a0d37c4cc4dea661d817e5d01
[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
13 int app_init(void);
14 void app_display(void);
15 void app_reshape(int x, int y);
16 void app_keyboard(int key, int pressed);
17 int app_parse_args(int argc, char **argv);
18
19 /* defined in main_*.c */
20 void app_quit(void);
21 void app_fullscreen(void);
22 void app_windowed(void);
23
24 #endif  /* APP_H_ */