aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/com
diff options
context:
space:
mode:
authorMark Raynsford <[email protected]>2013-07-02 16:40:56 +0000
committerMark Raynsford <[email protected]>2013-07-02 16:40:56 +0000
commit1455848398ccdfa89ec9f19379c5dcaed8198e28 (patch)
tree4f2a93246801a7777f7332a285a95bb8ddb9a65b /src/jogl/classes/com
parent3a32a59045ced338b2c5098cfb1102f847420efc (diff)
Bug 759:
Currently, the compatibility context on Mesa >= 9.1.3 seems to be very broken. The core contexts, however, seem to be quite stable. This commit both reduces and widens the scope of the current Mesa quirk to include only Compatibility contexts on OpenGL > 3 || 3.n where n >= 1.
Diffstat (limited to 'src/jogl/classes/com')
-rw-r--r--src/jogl/classes/com/jogamp/opengl/GLRendererQuirks.java13
1 files changed, 3 insertions, 10 deletions
diff --git a/src/jogl/classes/com/jogamp/opengl/GLRendererQuirks.java b/src/jogl/classes/com/jogamp/opengl/GLRendererQuirks.java
index 9fe74ee97..b119c62c9 100644
--- a/src/jogl/classes/com/jogamp/opengl/GLRendererQuirks.java
+++ b/src/jogl/classes/com/jogamp/opengl/GLRendererQuirks.java
@@ -71,16 +71,9 @@ public class GLRendererQuirks {
/**
* Non compliant GL context due to a buggy implementation not suitable for use.
* <p>
- * Mesa >= 9.0 (?), Intel driver, OpenGL 3.1 compatibility context is not compliant:
- * <pre>
- * GL_RENDERER: 'Mesa .* Intel(R) Sandybridge Desktop'
- * </pre>
- * </p>
- * <p>
- * Mesa >= 9.0 (?), AMD driver, OpenGL 3.1 core and compatibility context is not compliant:
- * <pre>
- * GL_RENDERER: 'Gallium 0.4 on AMD RS880'
- * </pre>
+ * Currently, Mesa >= 9.1.3 (may extend back as far as 9.0) OpenGL 3.1 compatibility
+ * context is not compliant. Most programs will give completely broken output (or no
+ * output at all. For now, this context is not trusted.
* </p>
*/
public static final int GLNonCompliant = 6;