diff options
author | Sven Gothel <[email protected]> | 2014-10-24 17:45:18 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-10-24 17:45:18 +0200 |
commit | 9e3843bf51b1e297eba181b9c5e15a0da8614e7b (patch) | |
tree | 36af2a91b0b264af4507f8946e4750cb3a941c63 /src/jogl/classes/jogamp/opengl/windows | |
parent | e2d7816823039fc75be809d64b88a3d3af9cdca8 (diff) | |
parent | 1e039b27aa1c036f663091d1018c3c15b259b80d (diff) |
Merge pull request #85 from gouessej/master
Skips ARB_create_context with ATI Radeon 3100 (see the bug 1038)
Diffstat (limited to 'src/jogl/classes/jogamp/opengl/windows')
-rw-r--r-- | src/jogl/classes/jogamp/opengl/windows/wgl/WindowsWGLContext.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jogl/classes/jogamp/opengl/windows/wgl/WindowsWGLContext.java b/src/jogl/classes/jogamp/opengl/windows/wgl/WindowsWGLContext.java index 33980d663..ebd107c47 100644 --- a/src/jogl/classes/jogamp/opengl/windows/wgl/WindowsWGLContext.java +++ b/src/jogl/classes/jogamp/opengl/windows/wgl/WindowsWGLContext.java @@ -331,7 +331,7 @@ public class WindowsWGLContext extends GLContextImpl { isProcCreateContextAttribsARBAvailable = false; isExtARBCreateContextAvailable = false; } - if ( isProcCreateContextAttribsARBAvailable && isExtARBCreateContextAvailable && !GLProfile.disableOpenGLARBContext ) { + if ( isProcCreateContextAttribsARBAvailable && isExtARBCreateContextAvailable && !GLProfile.disableOpenGLARBContext && !getRendererQuirks().exist( GLRendererQuirks.NoARBCreateContext ) ) { // initial ARB context creation contextHandle = createContextARB(shareWithHandle, true); createContextARBTried=true; |