Skip to content

Commit

Permalink
Bug 1189 - Add OpenGL ES 3.2 and new GL 4.5 Extensions support - Part…
Browse files Browse the repository at this point in the history
…4: Fix GLNameResolver: Add all known vendor extensions
  • Loading branch information
sgothel committed Oct 7, 2015
1 parent 9c9577f commit 570ed51
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions make/scripts/tests.sh
Expand Up @@ -427,7 +427,7 @@ function testawtswt() {
#testnoawt com.jogamp.opengl.test.junit.jogl.acore.TestGLProfile02NEWTNoARBCtx $*
#testnoawt com.jogamp.opengl.test.junit.jogl.acore.TestGLProfile03NEWTOffscreen $*
#testnoawt com.jogamp.opengl.test.junit.jogl.acore.TestGLProfile04NEWTOffscreenNoARBCtx $*
#testawt com.jogamp.opengl.test.junit.jogl.acore.TestVersionSemanticsNOUI $*
testawt com.jogamp.opengl.test.junit.jogl.acore.TestVersionSemanticsNOUI $*

#
# Stereo
Expand Down Expand Up @@ -484,7 +484,7 @@ function testawtswt() {
#
#testnoawt jogamp.opengl.openal.av.ALDummyUsage $*
#testnoawt com.jogamp.opengl.test.junit.jogl.demos.es2.av.MovieCube $*
testnoawt com.jogamp.opengl.test.junit.jogl.demos.es2.av.MovieSimple $*
#testnoawt com.jogamp.opengl.test.junit.jogl.demos.es2.av.MovieSimple $*
#testnoawt com.jogamp.opengl.test.junit.jogl.demos.es2.av.CrossFadePlayer $*

#
Expand Down
Expand Up @@ -50,27 +50,30 @@ public class GLNameResolver {
private static final String[] extensionsARB = { "ARB", "GL2", "OES", "KHR", "OML" };
private static final String[] extensionsVEN = { "3DFX",
"AMD",
"ANDROID",
"ANGLE",
"ARM",
"APPLE",
"ATI",
"EXT",
"FJ",
"HI",
"HP",
"IBM",
"IMG",
"INGR",
"INTEL",
"MESA",
"MESAX",
"NV",
"PGI",
"QCOM",
"SGI",
"SGIS",
"SGIX",
"SUN",
"VIV",
"WIN"
};

"WIN" };

public static final boolean isGLFunction(final String str) {
return str.startsWith("gl") || /* str.startsWith("glu") || str.startsWith("glX") || */
Expand Down

0 comments on commit 570ed51

Please sign in to comment.