diff options
author | Joost Peters | 2010-12-01 09:53:43 +0000 |
---|---|---|
committer | Joost Peters | 2010-12-01 09:53:43 +0000 |
commit | 084ea7fc4ac650242a96fcb1079e3a5162b50acc (patch) | |
tree | 53d8f5b3c350b9883ceabb4ddd8095eb87e4785d | |
parent | 13c1540522da35fc6f63f36ddaa3fc19ed69d860 (diff) | |
download | scummvm-rg350-084ea7fc4ac650242a96fcb1079e3a5162b50acc.tar.gz scummvm-rg350-084ea7fc4ac650242a96fcb1079e3a5162b50acc.tar.bz2 scummvm-rg350-084ea7fc4ac650242a96fcb1079e3a5162b50acc.zip |
OpenGL: remove unnecessary glext.h include
svn-id: r54695
-rw-r--r-- | backends/graphics/opengl/gltexture.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/backends/graphics/opengl/gltexture.h b/backends/graphics/opengl/gltexture.h index 40060e2158..bc5cc2d0a0 100644 --- a/backends/graphics/opengl/gltexture.h +++ b/backends/graphics/opengl/gltexture.h @@ -34,13 +34,10 @@ #if defined(USE_GLES) #include <GLES/gl.h> -#include <GLES/glext.h> #elif defined(MACOSX) #include <OpenGL/gl.h> -#include <OpenGL/glext.h> #else #include <GL/gl.h> -#include <GL/glext.h> #endif #include "graphics/surface.h" |