summaryrefslogtreecommitdiffstats
path: root/src/opengl/qopengltexture.cpp
diff options
context:
space:
mode:
authorLaszlo Agocs <laszlo.agocs@qt.io>2021-03-01 12:56:15 +0100
committerLaszlo Agocs <laszlo.agocs@qt.io>2021-03-03 14:50:59 +0100
commit2cfbce4bc61fd1f450f221e6ce733753f6cabb0b (patch)
treebdf4980b67c51ec97fe33c0259dceec080f04da8 /src/opengl/qopengltexture.cpp
parent4a037e86d4d2808634294daa7adb9d7523dfa3b9 (diff)
QOpenGLTexture: Fix typo in enum value
Pick-to: 6.1 Fixes: QTBUG-91431 Change-Id: I59c37de527f53339130216997402f325d0badb12 Reviewed-by: Jonas Karlsson <jonas.karlsson@qt.io> Reviewed-by: Andy Nichols <andy.nichols@qt.io>
Diffstat (limited to 'src/opengl/qopengltexture.cpp')
-rw-r--r--src/opengl/qopengltexture.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/opengl/qopengltexture.cpp b/src/opengl/qopengltexture.cpp
index cdf2494505..8e8f57d0fc 100644
--- a/src/opengl/qopengltexture.cpp
+++ b/src/opengl/qopengltexture.cpp
@@ -4258,7 +4258,7 @@ QOpenGLTexture::DepthStencilMode QOpenGLTexture::depthStencilMode() const
\value CompareLess Equivalent to GL_LESS.
\value CompareGreater Equivalent to GL_GREATER.
\value CompareEqual Equivalent to GL_EQUAL.
- \value CommpareNotEqual Equivalent to GL_NOTEQUAL.
+ \value CompareNotEqual Equivalent to GL_NOTEQUAL.
\value CompareAlways Equivalent to GL_ALWAYS.
\value CompareNever Equivalent to GL_NEVER.