summaryrefslogtreecommitdiffstats
path: root/src/plugins/renderers/opengl/graphicshelpers/graphicshelpergl3_2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/renderers/opengl/graphicshelpers/graphicshelpergl3_2.cpp')
-rw-r--r--src/plugins/renderers/opengl/graphicshelpers/graphicshelpergl3_2.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/plugins/renderers/opengl/graphicshelpers/graphicshelpergl3_2.cpp b/src/plugins/renderers/opengl/graphicshelpers/graphicshelpergl3_2.cpp
index 6494a3dc6..4b82af0ba 100644
--- a/src/plugins/renderers/opengl/graphicshelpers/graphicshelpergl3_2.cpp
+++ b/src/plugins/renderers/opengl/graphicshelpers/graphicshelpergl3_2.cpp
@@ -83,11 +83,11 @@ GraphicsHelperGL3_2::~GraphicsHelperGL3_2()
void GraphicsHelperGL3_2::initializeHelper(QOpenGLContext *context,
QAbstractOpenGLFunctions *functions)
{
- Q_UNUSED(context)
+ Q_UNUSED(context);
m_funcs = static_cast<QOpenGLFunctions_3_2_Core*>(functions);
const bool ok = m_funcs->initializeOpenGLFunctions();
Q_ASSERT(ok);
- Q_UNUSED(ok)
+ Q_UNUSED(ok);
}
void GraphicsHelperGL3_2::drawElementsInstancedBaseVertexBaseInstance(GLenum primitiveType,
@@ -452,13 +452,13 @@ void GraphicsHelperGL3_2::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.2 (since OpenGL 4.2)";
}