aboutsummaryrefslogtreecommitdiff
path: root/backends/graphics
diff options
context:
space:
mode:
authorJohannes Schickel2011-08-09 02:14:12 +0200
committerJohannes Schickel2011-08-09 02:14:12 +0200
commit06b95b35439dca6a30afa9a823123343f4679feb (patch)
tree96db22c0e0aad93e606c014606cb7f1737986c95 /backends/graphics
parentef695cb7dd17aaa24378c834a5ba5d78e6093792 (diff)
downloadscummvm-rg350-06b95b35439dca6a30afa9a823123343f4679feb.tar.gz
scummvm-rg350-06b95b35439dca6a30afa9a823123343f4679feb.tar.bz2
scummvm-rg350-06b95b35439dca6a30afa9a823123343f4679feb.zip
OPENGL: Add include guard to gltexture.h
Diffstat (limited to 'backends/graphics')
-rw-r--r--backends/graphics/opengl/gltexture.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/backends/graphics/opengl/gltexture.h b/backends/graphics/opengl/gltexture.h
index 3e04949c8c..2f0bef2bbf 100644
--- a/backends/graphics/opengl/gltexture.h
+++ b/backends/graphics/opengl/gltexture.h
@@ -20,6 +20,9 @@
*
*/
+#ifndef BACKENDS_GRAPHICS_OPENGL_GLTEXTURE_H
+#define BACKENDS_GRAPHICS_OPENGL_GLTEXTURE_H
+
#include "common/scummsys.h"
#ifdef WIN32
@@ -116,3 +119,5 @@ protected:
GLint _filter;
bool _refresh;
};
+
+#endif