HatchitGraphics
ht_gl.h
1 
15 #pragma once
16 
17 #include <ht_platform.h>
18 
19 #ifdef HT_SYS_WINDOWS
20 #include <GL/glew.h>
21 #include <GL/GL.h>
22 #include <GL/GLU.h>
23 #elif defined(HT_SYS_LINUX)
24 #include <GL/glew.h>
25 #include <GL/gl.h>
26 #include <GL/glu.h>
27 #elif defined(HT_SYS_MACOS)
28 #include <OpenGL/gl.h>
29 #include <OpenGL/glu.h>
30 #endif