Browse Source

glext.h was not included hence the error. Using GLFW3 facility to include it as some OS have OpenGL/xxx other GL/xxx for include file... NASTY!

Godzil 7 years ago
parent
commit
79e43a98e4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/os/unix/graphics.c

+ 1 - 1
src/os/unix/graphics.c

@@ -18,8 +18,8 @@
 
 #include <os_dependent.h>
 
+#define GLFW_INCLUDE_GLEXT
 #include <GLFW/glfw3.h>
-//#include <OpenGL/glext.h>
 
 #include <palette.h>