Fix compiler warning
authorAlexander Galazin <alexander.galazin@arm.com>
Mon, 3 Feb 2020 09:49:48 +0000 (10:49 +0100)
committerAlexander Galazin <alexander.galazin@arm.com>
Mon, 3 Feb 2020 09:49:51 +0000 (10:49 +0100)
Components: OpenGL

Change-Id: Ie61463fcd7d5ad006e364a8b18505af0a23ebf73

framework/opengl/gluContextInfo.cpp

index a253a2e..81ada61 100644 (file)
@@ -251,15 +251,15 @@ bool ContextInfo::isES3Compatible() const
 {
        // Detect compatible GLES context by querying GL_MAJOR_VERSION.
        // This query does not exist on GLES2 so succeeding query implies GLES3+ context.
-       bool isES3Compatible = false;
+       bool _isES3Compatible = false;
        glw::GLint majorVersion = 0;
        const glw::Functions& gl = m_context.getFunctions();
        gl.getError();
        gl.getIntegerv(GL_MAJOR_VERSION, &majorVersion);
        if (gl.getError() == GL_NO_ERROR)
-               isES3Compatible = true;
+               _isES3Compatible = true;
 
-       return isES3Compatible;
+       return _isES3Compatible;
 }
 
 ContextInfo* ContextInfo::create (const RenderContext& context)