summaryrefslogtreecommitdiff
path: root/src/resources/image.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-07-28 22:49:25 +0300
committerAndrei Karas <akaras@inbox.ru>2013-07-28 22:49:25 +0300
commit7c8410604d16e960a4ef7727517dd5fd43e9499e (patch)
treee0513ec61fffe2978192e9e4ed963fe1198148b3 /src/resources/image.cpp
parent4d8b97711684c66338c629500ea650c3d1a6802f (diff)
downloadplus-7c8410604d16e960a4ef7727517dd5fd43e9499e.tar.gz
plus-7c8410604d16e960a4ef7727517dd5fd43e9499e.tar.bz2
plus-7c8410604d16e960a4ef7727517dd5fd43e9499e.tar.xz
plus-7c8410604d16e960a4ef7727517dd5fd43e9499e.zip
move bools in image.
Diffstat (limited to 'src/resources/image.cpp')
-rw-r--r--src/resources/image.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/resources/image.cpp b/src/resources/image.cpp
index 88360c870..c19d92d2d 100644
--- a/src/resources/image.cpp
+++ b/src/resources/image.cpp
@@ -53,12 +53,12 @@ Image::Image(SDL_Surface *const image, const bool hasAlphaChannel0,
mTexHeight(0),
#endif
mBounds(),
- mLoaded(false),
mAlpha(1.0f),
- mHasAlphaChannel(hasAlphaChannel0),
mSDLSurface(image),
mAlphaChannel(alphaChannel),
mAlphaCache(),
+ mLoaded(false),
+ mHasAlphaChannel(hasAlphaChannel0),
mUseAlphaCache(SDLImageHelper::mEnableAlphaCache),
mIsAlphaVisible(hasAlphaChannel0),
mIsAlphaCalculated(false)
@@ -90,12 +90,12 @@ Image::Image(const GLuint glimage, const int width, const int height,
mTexWidth(texWidth),
mTexHeight(texHeight),
mBounds(),
- mLoaded(false),
mAlpha(1.0f),
- mHasAlphaChannel(true),
mSDLSurface(nullptr),
mAlphaChannel(nullptr),
mAlphaCache(),
+ mLoaded(false),
+ mHasAlphaChannel(true),
mUseAlphaCache(false),
mIsAlphaVisible(true),
mIsAlphaCalculated(false)