gl.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <ivorium_config.hpp>
4 
5 #if IV_GLPLATFORM_GLFW
6  #include <GL/glew.h>
7  #include <GL/gl.h>
8 #elif IV_GLPLATFORM_GLFM
9  #include <GLES3/gl3.h>
10 #else
11  #error "Unknown OpenGL platform."
12 #endif
13