diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-07-01 21:57:46 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-07-01 21:57:46 +0300 |
commit | 62e2ccbb158f146e2c3ceab14ff5581d3f3975ef (patch) | |
tree | 736e615b6ff94e09144df7df3aa06f9f231743ff /src/resources/imagehelper.h | |
parent | d3b57bd96a07a674432fd28cefd2f20ae5404b8b (diff) | |
download | plus-62e2ccbb158f146e2c3ceab14ff5581d3f3975ef.tar.gz plus-62e2ccbb158f146e2c3ceab14ff5581d3f3975ef.tar.bz2 plus-62e2ccbb158f146e2c3ceab14ff5581d3f3975ef.tar.xz plus-62e2ccbb158f146e2c3ceab14ff5581d3f3975ef.zip |
Add to image helper function to copy surface into part of image.
Diffstat (limited to 'src/resources/imagehelper.h')
-rw-r--r-- | src/resources/imagehelper.h | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/src/resources/imagehelper.h b/src/resources/imagehelper.h index 6752f3eae..b7080ee4b 100644 --- a/src/resources/imagehelper.h +++ b/src/resources/imagehelper.h @@ -75,15 +75,22 @@ class ImageHelper notfinal { return nullptr; } #endif + virtual SDL_Surface *create32BitSurface(int width, + int height) + const A_WARN_UNUSED; + + virtual void copySurfaceToImage(Image *const image A_UNUSED, + const int x A_UNUSED, + const int y A_UNUSED, + SDL_Surface *const surface A_UNUSED) + const + { } + static SDL_Surface *convertTo32Bit(SDL_Surface *const tmpImage) A_WARN_UNUSED; static void dumpSurfaceFormat(const SDL_Surface *const image); - virtual SDL_Surface *create32BitSurface(int width, - int height) - const A_WARN_UNUSED; - static void setEnableAlpha(const bool n) { mEnableAlpha = n; } |