diff options
author | Travis Howell | 2010-12-01 11:29:26 +0000 |
---|---|---|
committer | Travis Howell | 2010-12-01 11:29:26 +0000 |
commit | e2282e48163030f7c910ccb88921a7d5b9fe4748 (patch) | |
tree | d6d17f8301efb1091bcb3d106e0a74c3a661c473 /backends/graphics/opengl | |
parent | 084ea7fc4ac650242a96fcb1079e3a5162b50acc (diff) | |
download | scummvm-rg350-e2282e48163030f7c910ccb88921a7d5b9fe4748.tar.gz scummvm-rg350-e2282e48163030f7c910ccb88921a7d5b9fe4748.tar.bz2 scummvm-rg350-e2282e48163030f7c910ccb88921a7d5b9fe4748.zip |
Fix mingw compile.
svn-id: r54696
Diffstat (limited to 'backends/graphics/opengl')
-rw-r--r-- | backends/graphics/opengl/gltexture.h | 3 |
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 |