metadata, walk polygons, stuff...
[laserbrain_demo] / src / app.h
1 #ifndef APP_H_
2 #define APP_H_
3
4 extern long time_msec;
5 extern int win_width, win_height;
6 extern bool opt_gear_wireframe;
7
8 enum {
9         MOD_SHIFT       = 1,
10         MOD_ALT         = 2,
11         MOD_CTRL        = 4
12 };
13
14 bool app_init();
15 void app_cleanup();
16
17 void app_display();
18 void app_reshape(int x, int y);
19
20 void app_keyboard(int key, bool pressed);
21 void app_mouse_button(int bn, bool pressed, int x, int y);
22 void app_mouse_motion(int x, int y);
23
24 // the following functions are implemented by the backend (main.cc)
25 void app_quit();
26 void app_swap_buffers();
27 unsigned int app_get_modifiers();
28
29 #endif  // APP_H_