diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-08-13 22:18:03 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-09-30 02:57:13 +0300 |
commit | 135c19b4337e1ab45cff40a306eadc52a061ddef (patch) | |
tree | 0a163ca1edd542aec5570b7e451034aafb4089dd /src/graphicsmanager.cpp | |
parent | 3a2bab265768c219b0c077eef10b69dfe8158131 (diff) | |
download | mv-135c19b4337e1ab45cff40a306eadc52a061ddef.tar.gz mv-135c19b4337e1ab45cff40a306eadc52a061ddef.tar.bz2 mv-135c19b4337e1ab45cff40a306eadc52a061ddef.tar.xz mv-135c19b4337e1ab45cff40a306eadc52a061ddef.zip |
add atlas textures support.
Diffstat (limited to 'src/graphicsmanager.cpp')
-rw-r--r-- | src/graphicsmanager.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/graphicsmanager.cpp b/src/graphicsmanager.cpp index 2d2740023..d10b5de9e 100644 --- a/src/graphicsmanager.cpp +++ b/src/graphicsmanager.cpp @@ -55,7 +55,8 @@ GraphicsManager::GraphicsManager() : mMajor(0), mPlatformMinor(0), mPlatformMajor(0), - mMaxVertices(500) + mMaxVertices(500), + mUseAtlases(false) { } @@ -174,21 +175,27 @@ void GraphicsManager::initGraphics(bool noOpenGL) { case 0: imageHelper = new SDLImageHelper; + sdlImageHelper = imageHelper; mainGraphics = new Graphics; break; case 1: default: imageHelper = new OpenGLImageHelper; + sdlImageHelper = new SDLImageHelper; mainGraphics = new NormalOpenGLGraphics; break; case 2: imageHelper = new OpenGLImageHelper; + sdlImageHelper = new SDLImageHelper; mainGraphics = new SafeOpenGLGraphics; break; }; + mUseAtlases = imageHelper->useOpenGL() + && config.getBoolValue("useAtlases"); #else // Create the graphics context imageHelper = new SDLImageHelper; + sdlImageHelper = imageHelper; mainGraphics = new Graphics; #endif } |