diff options
Diffstat (limited to 'backends/graphics/opengl/opengl-graphics.h')
-rw-r--r-- | backends/graphics/opengl/opengl-graphics.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/backends/graphics/opengl/opengl-graphics.h b/backends/graphics/opengl/opengl-graphics.h index 17d0b842e9..e0807d8a73 100644 --- a/backends/graphics/opengl/opengl-graphics.h +++ b/backends/graphics/opengl/opengl-graphics.h @@ -29,10 +29,16 @@ #include "backends/graphics/opengl/gltexture.h" #include "backends/graphics/graphics.h" +namespace OpenGL { + enum { - GFX_NORMAL = 0 + GFX_NORMAL = 0, + GFX_DOUBLESIZE = 1, + GFX_TRIPLESIZE = 2 }; +} + /** * Open GL graphics manager */ |