vrseasons

annotate src/main.h @ 0:393ef1143c9c

VR seasons
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 07 Apr 2015 11:16:56 +0300
parents
children
rev   line source
nuclear@0 1 #ifndef MAIN_H_
nuclear@0 2 #define MAIN_H_
nuclear@0 3
nuclear@0 4 /* functions defined by the various main_whatever frontends */
nuclear@0 5
nuclear@0 6 void quit();
nuclear@0 7 void swap_buffers();
nuclear@0 8 void redisplay();
nuclear@0 9 void fullscreen();
nuclear@0 10 void windowed();
nuclear@0 11 void move_window(int x, int y);
nuclear@0 12 void window_position(int *xout, int *yout);
nuclear@0 13 void resize_window(int x, int y);
nuclear@0 14 void window_size(int *xout, int *yout);
nuclear@0 15
nuclear@0 16 #endif /* MAIN_H_ */