aboutsummaryrefslogtreecommitdiff
path: root/backends/graphics
diff options
context:
space:
mode:
authorJoost Peters2010-12-01 09:53:43 +0000
committerJoost Peters2010-12-01 09:53:43 +0000
commit084ea7fc4ac650242a96fcb1079e3a5162b50acc (patch)
tree53d8f5b3c350b9883ceabb4ddd8095eb87e4785d /backends/graphics
parent13c1540522da35fc6f63f36ddaa3fc19ed69d860 (diff)
downloadscummvm-rg350-084ea7fc4ac650242a96fcb1079e3a5162b50acc.tar.gz
scummvm-rg350-084ea7fc4ac650242a96fcb1079e3a5162b50acc.tar.bz2
scummvm-rg350-084ea7fc4ac650242a96fcb1079e3a5162b50acc.zip
OpenGL: remove unnecessary glext.h include
svn-id: r54695
Diffstat (limited to 'backends/graphics')
-rw-r--r--backends/graphics/opengl/gltexture.h3
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"