]> git.tdb.fi Git - libs/gl.git/commitdiff
Always include glext.h
authorMikko Rasa <tdb@tdb.fi>
Wed, 2 Oct 2013 08:20:03 +0000 (11:20 +0300)
committerMikko Rasa <tdb@tdb.fi>
Wed, 2 Oct 2013 08:20:03 +0000 (11:20 +0300)
There's no real reason to leave it out, and having it in multiple places
causes trouble for the upcoming OS X support.

scripts/extgen.py
source/gl.h
source/pixelformat.h

index bcff3b4498ccafeefbc061c81872c3fbef3051be..d8364b26ef3dbdeb160a4c9be5019e0ad0404f43 100755 (executable)
@@ -132,7 +132,6 @@ out.write("#define MSP_GL_%s_\n"%ext.upper())
 out.write("""
 #include <msp/gl/extension.h>
 #include <msp/gl/gl.h>
-#include <GL/glext.h>
 
 namespace Msp {
 namespace GL {
index d742bd57677ad33994f5f0ad5936acc82c5a2666..2c77d6809456e8a8ba65276359e16c4943ab1ff3 100644 (file)
@@ -5,5 +5,6 @@
 #include <windows.h>
 #endif
 #include <GL/gl.h>
+#include <GL/glext.h>
 
 #endif
index 55115cf77e7bbde4a2ac3af6f92d42ae7fcd9edb..43330f07dcfe1249f66794913eb577abd68a4e3a 100644 (file)
@@ -4,7 +4,6 @@
 #include <msp/graphics/pixelformat.h>
 #include <msp/strings/lexicalcast.h>
 #include "gl.h"
-#include <GL/glext.h>
 
 namespace Msp {
 namespace GL {