Fix OpenGL context creation in Windows platform plugin
Attribute index was incremented incorrectly. Task-number: QTBUG-27272 Change-Id: Ia7e9c76acc6c9d8208b8ba43131861a3beff6b2c Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
This commit is contained in:
parent
60e2ec9db4
commit
9c4b7d5eb2
@ -575,7 +575,7 @@ static HGLRC createContext(const QOpenGLStaticContext &staticContext,
|
||||
if (format.testOption(QSurfaceFormat::DeprecatedFunctions))
|
||||
attributes[attribIndex] |= WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB;
|
||||
if (format.testOption(QSurfaceFormat::DebugContext))
|
||||
attributes[attribIndex++] |= WGL_CONTEXT_DEBUG_BIT_ARB;
|
||||
attributes[attribIndex] |= WGL_CONTEXT_DEBUG_BIT_ARB;
|
||||
attribIndex++;
|
||||
}
|
||||
if (requestedVersion >= 0x0302) {
|
||||
|
Loading…
Reference in New Issue
Block a user