aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2012-10-19 09:59:14 +0200
committerSven Gothel <[email protected]>2012-10-19 09:59:14 +0200
commit5915aa179b74bc7cbc28d43f11e03adfddcecb57 (patch)
tree515efe32cc94dd377e26145e0bf9639f1d576265
parentba482e4042b899a8b9d9d4a2b660e8e92fcadfe7 (diff)
Fix commit 48bcceaf611a17bb3795aa9fe25a0e0c726879f7, EGLDrawableFactory's ES1 impl. detection
'glBegin' is not ES1, duh!
-rw-r--r--src/jogl/classes/jogamp/opengl/egl/EGLDrawableFactory.java1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/jogl/classes/jogamp/opengl/egl/EGLDrawableFactory.java b/src/jogl/classes/jogamp/opengl/egl/EGLDrawableFactory.java
index dbe7ffa16..f0d84c35c 100644
--- a/src/jogl/classes/jogamp/opengl/egl/EGLDrawableFactory.java
+++ b/src/jogl/classes/jogamp/opengl/egl/EGLDrawableFactory.java
@@ -102,7 +102,6 @@ public class EGLDrawableFactory extends GLDrawableFactoryImpl {
private static final boolean includesES1(GLDynamicLookupHelper dl) {
return 0 != dl.dynamicLookupFunction("glLoadIdentity") &&
0 != dl.dynamicLookupFunction("glEnableClientState") &&
- 0 != dl.dynamicLookupFunction("glBegin") &&
0 != dl.dynamicLookupFunction("glColorPointer");
}