Skip to content

Commit

Permalink
Merge pull request #427 from uyjulian/add_forward_compatilbe_gl_core_…
Browse files Browse the repository at this point in the history
…context

WGL GSdx forward compatible bit

(I think it is for wine)
  • Loading branch information
gregory38 committed Jan 16, 2015
2 parents 079ed2c + 446977d commit 1295b46
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion plugins/GSdx/GSWndWGL.cpp
Expand Up @@ -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
};
Expand Down

0 comments on commit 1295b46

Please sign in to comment.