openvr_test1

view src/app.h @ 0:806d30b46748

OpenVR test initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Wed, 13 Apr 2016 09:39:37 +0300
parents
children
line source
1 #ifndef APP_H_
2 #define APP_H_
4 bool app_init();
5 void app_shutdown();
6 void app_draw();
7 void app_reshape(int x, int y);
8 void app_keyboard(int bn, bool pressed);
9 void app_mouse(int bn, bool pressed, int x, int y);
10 void app_motion(int x, int y);
12 void app_swap_buffers();
13 void app_quit();
15 #endif // APP_H_