libgoatvr

view src/opengl.h @ 8:3d9ec6fe97d7

- added distortion mesh generation for the OpenHMD module (unfinished) - changed internal implementation function naming to use the vrimp_ prefix - added an opengl helper function to load extension entry points
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 20 Sep 2014 13:22:53 +0300
parents e63cb28fc644
children 0fea7c2b25d7
line source
1 #ifndef VR_OPENGL_H_
2 #define VR_OPENGL_H_
4 #ifdef WIN32
5 #define WIN32_LEAN_AND_MEAN 1
6 #include <windows.h>
7 #endif
9 #ifdef __APPLE__
10 #include <OpenGL/gl.h>
11 #else
12 #include <GL/gl.h>
13 #endif
15 #ifdef __unix__
16 #include <GL/glx.h>
17 #endif
19 void vrimp_swap_buffers(void);
21 void (*vrimp_glfunc(const char *name))();
23 #endif /* VR_OPENGL_H_ */