diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-12-12 18:26:16 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-12-12 18:26:16 +0300 |
commit | 67638eeec5267977940dce29c5a94ce4d093ed69 (patch) | |
tree | 2bacbaba1379e57c846929ef31e949fb2bd7f946 /src/resources/sdl2softwareimagehelper.h | |
parent | 3308da97a29b1170e720b4341456bb39869bed24 (diff) | |
download | ManaVerse-67638eeec5267977940dce29c5a94ce4d093ed69.tar.gz ManaVerse-67638eeec5267977940dce29c5a94ce4d093ed69.tar.bz2 ManaVerse-67638eeec5267977940dce29c5a94ce4d093ed69.tar.xz ManaVerse-67638eeec5267977940dce29c5a94ce4d093ed69.zip |
Add constexpr and noexcept into some methods.
Diffstat (limited to 'src/resources/sdl2softwareimagehelper.h')
-rw-r--r-- | src/resources/sdl2softwareimagehelper.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/resources/sdl2softwareimagehelper.h b/src/resources/sdl2softwareimagehelper.h index 0160a5660..38bd0f9d0 100644 --- a/src/resources/sdl2softwareimagehelper.h +++ b/src/resources/sdl2softwareimagehelper.h @@ -60,10 +60,10 @@ class SDL2SoftwareImageHelper final : public ImageHelper const float alpha) override final A_WARN_UNUSED; - static void SDLSetEnableAlphaCache(const bool n) + constexpr static void SDLSetEnableAlphaCache(const bool n) noexcept2 { mEnableAlphaCache = n; } - static bool SDLGetEnableAlphaCache() A_WARN_UNUSED + static bool SDLGetEnableAlphaCache() noexcept2 A_WARN_UNUSED { return mEnableAlphaCache; } static SDL_Surface* SDLDuplicateSurface(SDL_Surface *const tmpImage) @@ -74,7 +74,7 @@ class SDL2SoftwareImageHelper final : public ImageHelper SDL_Surface *restrict const dst, SDL_Rect *restrict const dstrect); - static void setFormat(SDL_PixelFormat *const format) + constexpr2 static void setFormat(SDL_PixelFormat *const format) noexcept2 { mFormat = format; if (mFormat) |