From 5915aa179b74bc7cbc28d43f11e03adfddcecb57 Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Fri, 19 Oct 2012 09:59:14 +0200 Subject: Fix commit 48bcceaf611a17bb3795aa9fe25a0e0c726879f7, EGLDrawableFactory's ES1 impl. detection 'glBegin' is not ES1, duh! --- src/jogl/classes/jogamp/opengl/egl/EGLDrawableFactory.java | 1 - 1 file changed, 1 deletion(-) (limited to 'src/jogl/classes/jogamp/opengl/egl/EGLDrawableFactory.java') 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"); } -- cgit v1.2.3