From 446977d1269ab6a1f4f07786eb08dd357be3d3f5 Mon Sep 17 00:00:00 2001 From: uyjulian Date: Fri, 9 Jan 2015 19:39:59 -0600 Subject: [PATCH] GSdx forward compatible bit --- plugins/GSdx/GSWndWGL.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugins/GSdx/GSWndWGL.cpp b/plugins/GSdx/GSWndWGL.cpp index 07547d7b3a..69fe40650e 100644 --- a/plugins/GSdx/GSWndWGL.cpp +++ b/plugins/GSdx/GSWndWGL.cpp @@ -57,9 +57,11 @@ bool GSWndWGL::CreateContext(int major, int minor) // FIXME : Request a debug context to ease opengl development // Note: don't support deprecated feature (pre openg 3.1) //GLX_CONTEXT_FLAGS_ARB, GLX_CONTEXT_DEBUG_BIT_ARB | GLX_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB, + WGL_CONTEXT_FLAGS_ARB, WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB #ifdef ENABLE_OGL_DEBUG - WGL_CONTEXT_FLAGS_ARB, WGL_CONTEXT_DEBUG_BIT_ARB, + | WGL_CONTEXT_DEBUG_BIT_ARB #endif + , WGL_CONTEXT_PROFILE_MASK_ARB, WGL_CONTEXT_CORE_PROFILE_BIT_ARB, 0 };