aboutsummaryrefslogtreecommitdiff
path: root/backends/graphics
diff options
context:
space:
mode:
authorTravis Howell2010-12-01 11:29:26 +0000
committerTravis Howell2010-12-01 11:29:26 +0000
commite2282e48163030f7c910ccb88921a7d5b9fe4748 (patch)
treed6d17f8301efb1091bcb3d106e0a74c3a661c473 /backends/graphics
parent084ea7fc4ac650242a96fcb1079e3a5162b50acc (diff)
downloadscummvm-rg350-e2282e48163030f7c910ccb88921a7d5b9fe4748.tar.gz
scummvm-rg350-e2282e48163030f7c910ccb88921a7d5b9fe4748.tar.bz2
scummvm-rg350-e2282e48163030f7c910ccb88921a7d5b9fe4748.zip
Fix mingw compile.
svn-id: r54696
Diffstat (limited to 'backends/graphics')
-rw-r--r--backends/graphics/opengl/gltexture.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/backends/graphics/opengl/gltexture.h b/backends/graphics/opengl/gltexture.h
index bc5cc2d0a0..944cdf221c 100644
--- a/backends/graphics/opengl/gltexture.h
+++ b/backends/graphics/opengl/gltexture.h
@@ -36,6 +36,9 @@
#include <GLES/gl.h>
#elif defined(MACOSX)
#include <OpenGL/gl.h>
+#elif defined(WIN32)
+#include <GL/gl.h>
+#include <GL/glext.h>
#else
#include <GL/gl.h>
#endif