From 67638eeec5267977940dce29c5a94ce4d093ed69 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Mon, 12 Dec 2016 18:26:16 +0300 Subject: Add constexpr and noexcept into some methods. --- src/resources/openglimagehelper.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/resources/openglimagehelper.h') diff --git a/src/resources/openglimagehelper.h b/src/resources/openglimagehelper.h index 5f6e0b8aa..87faaefe7 100644 --- a/src/resources/openglimagehelper.h +++ b/src/resources/openglimagehelper.h @@ -92,28 +92,28 @@ class OpenGLImageHelper final : public ImageHelper // OpenGL only public functions - static int getTextureType() A_WARN_UNUSED + static int getTextureType() noexcept2 A_WARN_UNUSED { return mTextureType; } - static int getInternalTextureType() A_WARN_UNUSED + static int getInternalTextureType() noexcept2 A_WARN_UNUSED { return mInternalTextureType; } - static void setInternalTextureType(const int n) + constexpr static void setInternalTextureType(const int n) noexcept2 { mInternalTextureType = n; } - static void setBlur(const bool n) + constexpr static void setBlur(const bool n) noexcept2 { mBlur = n; } static int mTextureType; static int mInternalTextureType; - static int getTextureSize() A_WARN_UNUSED + static int getTextureSize() noexcept2 A_WARN_UNUSED { return mTextureSize; } static void initTextureSampler(const GLint id); - static void setUseTextureSampler(const bool b) + constexpr static void setUseTextureSampler(const bool b) noexcept2 { mUseTextureSampler = b; } static void invalidate(const GLuint textureId); -- cgit v1.2.3-60-g2f50