diff options
author | Sven Gothel <[email protected]> | 2014-10-02 00:28:18 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-10-02 00:28:18 +0200 |
commit | 5d3caefa4ded044b2965d7e046e9c9fa35d58810 (patch) | |
tree | b74d842f338a71a9eda44312fe0ba8a7a6443e91 /src/jogl/classes/jogamp/opengl/GLContextImpl.java | |
parent | 6187fbc0a9ca9bd5140a3082013044f3294a8c6d (diff) | |
parent | 99f91f8b28d42cdf341533736e878056bcae4708 (diff) |
Merge remote-tracking branch 'gouessej/master'
Diffstat (limited to 'src/jogl/classes/jogamp/opengl/GLContextImpl.java')
-rw-r--r-- | src/jogl/classes/jogamp/opengl/GLContextImpl.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/jogl/classes/jogamp/opengl/GLContextImpl.java b/src/jogl/classes/jogamp/opengl/GLContextImpl.java index 01478a422..02557b7e1 100644 --- a/src/jogl/classes/jogamp/opengl/GLContextImpl.java +++ b/src/jogl/classes/jogamp/opengl/GLContextImpl.java @@ -1841,6 +1841,13 @@ public abstract class GLContextImpl extends GLContext { quirks.addQuirk( quirk ); } } + if (glVendor.equals("Intel") && glRenderer.equals("Intel Bear Lake B")) { + final int quirk = GLRendererQuirks.NoPBufferWithAccum; + if(DEBUG) { + System.err.println("Quirk: "+GLRendererQuirks.toString(quirk)+": cause: OS "+Platform.getOSType()+", [Vendor "+glVendor+" and Renderer "+glRenderer+"]"); + } + quirks.addQuirk( quirk ); + } } else if( Platform.OSType.ANDROID == Platform.getOSType() ) { // // ANDROID |