vrseasons

view src/main.h @ 2:eea1b91dc3d4

added is_complete() to framebuffer object and fixed GL_UNSUPPORTED_FRAMEBUFFER on intel
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 13 Apr 2015 16:51:52 +0300
parents
children
line source
1 #ifndef MAIN_H_
2 #define MAIN_H_
4 /* functions defined by the various main_whatever frontends */
6 void quit();
7 void swap_buffers();
8 void redisplay();
9 void fullscreen();
10 void windowed();
11 void move_window(int x, int y);
12 void window_position(int *xout, int *yout);
13 void resize_window(int x, int y);
14 void window_size(int *xout, int *yout);
16 #endif /* MAIN_H_ */