summaryrefslogtreecommitdiffstats
path: root/src/plugins/renderers/opengl/graphicshelpers/graphicshelpergl3_3.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/renderers/opengl/graphicshelpers/graphicshelpergl3_3.cpp')
-rw-r--r--src/plugins/renderers/opengl/graphicshelpers/graphicshelpergl3_3.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/plugins/renderers/opengl/graphicshelpers/graphicshelpergl3_3.cpp b/src/plugins/renderers/opengl/graphicshelpers/graphicshelpergl3_3.cpp
index cb992293a..6aaa2d7ff 100644
--- a/src/plugins/renderers/opengl/graphicshelpers/graphicshelpergl3_3.cpp
+++ b/src/plugins/renderers/opengl/graphicshelpers/graphicshelpergl3_3.cpp
@@ -82,11 +82,11 @@ GraphicsHelperGL3_3::~GraphicsHelperGL3_3()
void GraphicsHelperGL3_3::initializeHelper(QOpenGLContext *context,
QAbstractOpenGLFunctions *functions)
{
- Q_UNUSED(context)
+ Q_UNUSED(context);
m_funcs = static_cast<QOpenGLFunctions_3_3_Core*>(functions);
const bool ok = m_funcs->initializeOpenGLFunctions();
Q_ASSERT(ok);
- Q_UNUSED(ok)
+ Q_UNUSED(ok);
}
void GraphicsHelperGL3_3::drawElementsInstancedBaseVertexBaseInstance(GLenum primitiveType,
@@ -544,13 +544,13 @@ void GraphicsHelperGL3_3::bindImageTexture(GLuint imageUnit, GLuint texture,
GLint mipLevel, GLboolean layered,
GLint layer, GLenum access, GLenum format)
{
- Q_UNUSED(imageUnit)
- Q_UNUSED(texture)
- Q_UNUSED(mipLevel)
- Q_UNUSED(layered)
- Q_UNUSED(layer)
- Q_UNUSED(access)
- Q_UNUSED(format)
+ Q_UNUSED(imageUnit);
+ Q_UNUSED(texture);
+ Q_UNUSED(mipLevel);
+ Q_UNUSED(layered);
+ Q_UNUSED(layer);
+ Q_UNUSED(access);
+ Q_UNUSED(format);
qWarning() << "Shader Images are not supported by OpenGL 3.3 (since OpenGL 4.2)";
}