Browse Source

Fix includes

DricomDragon 4 years ago
parent
commit
ac01673452
4 changed files with 6 additions and 4 deletions
  1. 2 1
      colorCube/ColorCube.h
  2. 1 1
      colorCube/Mosaic.h
  3. 2 1
      colorCube/SceneOpenGL.h
  4. 1 1
      colorCube/Shader.h

+ 2 - 1
colorCube/ColorCube.h

@@ -8,11 +8,12 @@
 
 #else
 #define GL3_PROTOTYPES 1
-#include <GL3/gl3.h>
+#include <GL/gl.h>
 #endif
 
 // Includes GLM
 #include <glm/glm.hpp>
+#define GLM_ENABLE_EXPERIMENTAL
 #include <glm/gtx/transform.hpp>
 #include <glm/gtc/type_ptr.hpp>
 

+ 1 - 1
colorCube/Mosaic.h

@@ -7,7 +7,7 @@
 
 #else
 #define GL3_PROTOTYPES 1
-#include <GL3/gl3.h>
+#include <GL/gl.h>
 #endif
 
 // Includes GLM

+ 2 - 1
colorCube/SceneOpenGL.h

@@ -3,13 +3,14 @@
 
 // Includes GLM
 #include <glm/glm.hpp>
+#define GLM_ENABLE_EXPERIMENTAL
 #include <glm/gtx/transform.hpp>
 #include <glm/gtc/type_ptr.hpp>
 
 // Includes OpenGL
 #include <SDL2/SDL.h>
 #define GL3_PROTOTYPES 1
-#include <GL3/gl3.h>
+#include <GL/gl.h>
 
 //Includes de base
 #include <string>

+ 1 - 1
colorCube/Shader.h

@@ -10,7 +10,7 @@
 // Include Mac ou UNIX/Linux
 #else
 #define GL3_PROTOTYPES 1
-#include <GL3/gl3.h>
+#include <GL/gl.h>
 
 #endif