diff options
Diffstat (limited to 'src/resources/openglimagehelper.h')
-rw-r--r-- | src/resources/openglimagehelper.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/resources/openglimagehelper.h b/src/resources/openglimagehelper.h index 87faaefe7..6311ca9e5 100644 --- a/src/resources/openglimagehelper.h +++ b/src/resources/openglimagehelper.h @@ -98,10 +98,10 @@ class OpenGLImageHelper final : public ImageHelper static int getInternalTextureType() noexcept2 A_WARN_UNUSED { return mInternalTextureType; } - constexpr static void setInternalTextureType(const int n) noexcept2 + constexpr2 static void setInternalTextureType(const int n) noexcept2 { mInternalTextureType = n; } - constexpr static void setBlur(const bool n) noexcept2 + constexpr2 static void setBlur(const bool n) noexcept2 { mBlur = n; } static int mTextureType; @@ -113,7 +113,7 @@ class OpenGLImageHelper final : public ImageHelper static void initTextureSampler(const GLint id); - constexpr static void setUseTextureSampler(const bool b) noexcept2 + constexpr2 static void setUseTextureSampler(const bool b) noexcept2 { mUseTextureSampler = b; } static void invalidate(const GLuint textureId); |