openvr_test1

annotate 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
rev   line source
nuclear@0 1 #ifndef APP_H_
nuclear@0 2 #define APP_H_
nuclear@0 3
nuclear@0 4 bool app_init();
nuclear@0 5 void app_shutdown();
nuclear@0 6 void app_draw();
nuclear@0 7 void app_reshape(int x, int y);
nuclear@0 8 void app_keyboard(int bn, bool pressed);
nuclear@0 9 void app_mouse(int bn, bool pressed, int x, int y);
nuclear@0 10 void app_motion(int x, int y);
nuclear@0 11
nuclear@0 12 void app_swap_buffers();
nuclear@0 13 void app_quit();
nuclear@0 14
nuclear@0 15 #endif // APP_H_