summaryrefslogtreecommitdiff
path: root/src/compoundsprite.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-08-26 01:27:16 +0300
committerAndrei Karas <akaras@inbox.ru>2013-08-26 01:27:16 +0300
commitb661524e8b7b41cec237492ecd52fdda7b9be394 (patch)
tree94bb6290dcb5cdc0f63747f4b97f1b5714175971 /src/compoundsprite.cpp
parent6f8da91cf4af4057ae4d2b9a2e2cd654e54d2d2c (diff)
downloadplus-b661524e8b7b41cec237492ecd52fdda7b9be394.tar.gz
plus-b661524e8b7b41cec237492ecd52fdda7b9be394.tar.bz2
plus-b661524e8b7b41cec237492ecd52fdda7b9be394.tar.xz
plus-b661524e8b7b41cec237492ecd52fdda7b9be394.zip
Disable being caching in soft mode in SDL2.
Diffstat (limited to 'src/compoundsprite.cpp')
-rw-r--r--src/compoundsprite.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/compoundsprite.cpp b/src/compoundsprite.cpp
index 6e8d47373..e89e1154b 100644
--- a/src/compoundsprite.cpp
+++ b/src/compoundsprite.cpp
@@ -313,10 +313,7 @@ unsigned int CompoundSprite::getFrameCount(unsigned int layer)
void CompoundSprite::redraw() const
{
-#ifdef USE_SDL2
- // +++ need impliment after
- return;
-#else
+#ifndef USE_SDL2
#if SDL_BYTEORDER == SDL_BIG_ENDIAN
const int rmask = 0xff000000;
@@ -417,6 +414,7 @@ void CompoundSprite::setAlpha(float alpha)
void CompoundSprite::updateImages() const
{
+#ifndef USE_SDL2
#ifdef USE_OPENGL
if (imageHelper->useOpenGL())
return;
@@ -450,10 +448,12 @@ void CompoundSprite::updateImages() const
redraw();
}
}
+#endif
}
bool CompoundSprite::updateFromCache() const
{
+#ifndef USE_SDL2
// static int hits = 0;
// static int miss = 0;
@@ -516,6 +516,7 @@ bool CompoundSprite::updateFromCache() const
mImage = nullptr;
mAlphaImage = nullptr;
// miss++;
+#endif
return false;
}