summaryrefslogtreecommitdiff
path: root/src/graphicsvertexes.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-07-19 21:32:43 +0300
committerAndrei Karas <akaras@inbox.ru>2012-07-19 21:32:43 +0300
commit08f911af478cb3bbede503a3e704b61da713b74e (patch)
tree9bb352abc64bdc0eb1a08baa7b6f42d5b0c440be /src/graphicsvertexes.h
parent4503b047574e1374d16d2bec7e10285f59cc6d51 (diff)
downloadplus-08f911af478cb3bbede503a3e704b61da713b74e.tar.gz
plus-08f911af478cb3bbede503a3e704b61da713b74e.tar.bz2
plus-08f911af478cb3bbede503a3e704b61da713b74e.tar.xz
plus-08f911af478cb3bbede503a3e704b61da713b74e.zip
Rename openglgraphics to normalopenglgraphics.
Diffstat (limited to 'src/graphicsvertexes.h')
-rw-r--r--src/graphicsvertexes.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/graphicsvertexes.h b/src/graphicsvertexes.h
index 70ba4847b..b44f69179 100644
--- a/src/graphicsvertexes.h
+++ b/src/graphicsvertexes.h
@@ -34,7 +34,7 @@
#include <SDL_opengl.h>
#include "safeopenglgraphics.h"
-#include "openglgraphics.h"
+#include "normalopenglgraphics.h"
#endif
#include <string>
@@ -65,12 +65,12 @@ class SafeOpenGLGraphicsVertexes
{
};
-class OpenGLGraphicsVertexes
+class NormalOpenGLGraphicsVertexes
{
public:
- OpenGLGraphicsVertexes();
+ NormalOpenGLGraphicsVertexes();
- ~OpenGLGraphicsVertexes();
+ ~NormalOpenGLGraphicsVertexes();
GLfloat *switchFloatTexArray();
@@ -131,7 +131,7 @@ class ImageVertexes
DoubleRects sdl;
#ifdef USE_OPENGL
- OpenGLGraphicsVertexes *ogl;
+ NormalOpenGLGraphicsVertexes *ogl;
#endif
};
@@ -149,7 +149,7 @@ class GraphicsVertexes
#ifdef USE_OPENGL
// SafeOpenGLGraphicsVertexes ogl1[5];
- OpenGLGraphicsVertexes ogl[5];
+ NormalOpenGLGraphicsVertexes ogl[5];
#endif
void init(int x, int y, int w, int h);
@@ -167,7 +167,7 @@ class GraphicsVertexes
{ mPtr = num; }
#ifdef USE_OPENGL
- OpenGLGraphicsVertexes* getOGL()
+ NormalOpenGLGraphicsVertexes* getOGL()
{ return &ogl[mPtr]; }
#endif