Hi, all:
I've got only two bugs to fix for
jogl-demos, src/jbullet/src .
1) javabullet.demos.opengl/DemoApplication.java
around line 156
gl.getGLES2().enableFixedFunctionEmulationMode(GLES2.FIXED_EMULATION_VERTEXCOLORTEXTURE);
There are no definitions for either
GLES2.FIXED_EMULATION_VERTEXCOLORTEXTURE
or
enableFixedFunctionEmulationMode()
in class GLES2 .
2) javabullet.demos.opengl/JOGL.java
around line 92
nWindow = NewtFactory.createWindow(NativeWindowFactory.TYPE_AWT, nScreen, caps, null);
it's easy to remove the last parameter "false", but how to modify the 1st parameter
NativeWindowFactory.TYPE_AWT
, so that the first parameter is a "long" rather than a "String". (Right now
NativeWindowFactory.TYPE_AWT
is a "String" )
Best Regards
Pei