diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-05-23 00:09:05 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-05-23 00:09:05 +0300 |
commit | 2bcfc80fe18a7239e2eae5600e4ed118e038da32 (patch) | |
tree | cd5c771c6954ffc83584be712ef49dd1b09a385e /src/openglgraphics.cpp | |
parent | 6494df1ca2a1c00b85828deb3b62f371338536fb (diff) | |
download | plus-2bcfc80fe18a7239e2eae5600e4ed118e038da32.tar.gz plus-2bcfc80fe18a7239e2eae5600e4ed118e038da32.tar.bz2 plus-2bcfc80fe18a7239e2eae5600e4ed118e038da32.tar.xz plus-2bcfc80fe18a7239e2eae5600e4ed118e038da32.zip |
OpenGL fix for mac version.
Diffstat (limited to 'src/openglgraphics.cpp')
-rw-r--r-- | src/openglgraphics.cpp | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/openglgraphics.cpp b/src/openglgraphics.cpp index 4f800bf9b..bcadb8c67 100644 --- a/src/openglgraphics.cpp +++ b/src/openglgraphics.cpp @@ -33,10 +33,6 @@ #include "utils/stringutils.h" -#ifdef __APPLE__ -#include <OpenGL/OpenGL.h> -#endif - #include <SDL.h> #include "debug.h" @@ -51,7 +47,7 @@ const unsigned int vertexBufSize = 500; GLuint OpenGLGraphics::mLastImage = 0; OpenGLGraphics::OpenGLGraphics(): - mAlpha(false), mTexture(false), mColorAlpha(false), mSync(false), + mAlpha(false), mTexture(false), mColorAlpha(false), mFboId(0), mTextureId(0), mRboId(0) { mOpenGL = 1; @@ -68,11 +64,6 @@ OpenGLGraphics::~OpenGLGraphics() delete [] mIntVertArray; } -void OpenGLGraphics::setSync(bool sync) -{ - mSync = sync; -} - bool OpenGLGraphics::setVideoMode(int w, int h, int bpp, bool fs, bool hwaccel, bool resize, bool noFrame) { |