Browse Source

Fix GLFW_INCLUDE_GLEXT being ignored for glcorearb

The GLFW_INCLUDE_GLCOREARB branch was left out when GLFW_INCLUDE_GLEXT
was originally added, for reasons that are lost to history.  The current
versions of these headers seem to co-exist just fine.

Issue reported on IRC.
Camilla Löwy 4 years ago
parent
commit
309d79376f
1 changed files with 3 additions and 0 deletions
  1. 3 0
      include/GLFW/glfw3.h

+ 3 - 0
include/GLFW/glfw3.h

@@ -190,6 +190,9 @@ extern "C" {
  #else /*__APPLE__*/
  #else /*__APPLE__*/
 
 
   #include <GL/glcorearb.h>
   #include <GL/glcorearb.h>
+  #if defined(GLFW_INCLUDE_GLEXT)
+   #include <GL/glext.h>
+  #endif
 
 
  #endif /*__APPLE__*/
  #endif /*__APPLE__*/