I don’t know if it’s all applications. Do you know another LWJGL 2.1.0 application somewhere that I can try?
Debug gave me this:
[quote]Initial mode: 1280 x 800 x 32 @60Hz
*** START ***
1280x800 1.6
OpenGL14 was reported as available but an entry point is missing
F
Removed 0 duplicate displaymodes
Setting mode 800 x 600 x 32 @60Hz
VSync=true
Throttle=true
getPathFromClassLoader: searching for: OpenAL32
Failed to locate findLibrary method: java.lang.NoSuchMethodException: sun.misc.Launcher$AppClassLoader.findLibrary(java.lang.String)
Failed to locate findLibrary method: java.lang.NoSuchMethodException: java.net.URLClassLoader.findLibrary(java.lang.String)
Failed to locate findLibrary method: java.lang.NoSuchMethodException: java.security.SecureClassLoader.findLibrary(java.lang.String)
getPathFromClassLoader: searching for: lwjgl
Failed to locate findLibrary method: java.lang.NoSuchMethodException: sun.misc.Launcher$AppClassLoader.findLibrary(java.lang.String)
Failed to locate findLibrary method: java.lang.NoSuchMethodException: java.net.URLClassLoader.findLibrary(java.lang.String)
Failed to locate findLibrary method: java.lang.NoSuchMethodException: java.security.SecureClassLoader.findLibrary(java.lang.String)
getPathFromClassLoader: searching for: lwjgl
Failed to locate findLibrary method: java.lang.NoSuchMethodException: sun.misc.Launcher$AppClassLoader.findLibrary(java.lang.String)
Failed to locate findLibrary method: java.lang.NoSuchMethodException: java.net.URLClassLoader.findLibrary(java.lang.String)
Failed to locate findLibrary method: java.lang.NoSuchMethodException: java.security.SecureClassLoader.findLibrary(java.lang.String)
Found 44 OpenAL paths
T
Failed to load D:\Program Files\Java\jre1.6.0\bin\OpenAL64.dll: C
T
Failed to load .\OpenAL64.dll: C
T
Failed to load C:\WINDOWS\Sun\Java\bin\OpenAL64.dll: C
T
Failed to load C:\WINDOWS\system32\OpenAL64.dll: C
T
Failed to load C:\WINDOWS\OpenAL64.dll: C
T
Failed to load C:\Program Files\PC Connectivity Solution\OpenAL64.dll: C
T
Failed to load C:\Perl\bin\OpenAL64.dll: C
T
Failed to load C:\WINDOWS\system32\OpenAL64.dll: C
T
Failed to load C:\WINDOWS\OpenAL64.dll: C
T
Failed to load C:\WINDOWS\System32\Wbem\OpenAL64.dll: C
T
Failed to load C:\Program Files\Java\jdk1.6.0_05\bin\OpenAL64.dll: C
T
Failed to load C:\Program Files\gs\gs8.54\bin\OpenAL64.dll: C
T
Failed to load C:\Program Files\gs\gs8.54\lib\OpenAL64.dll: C
T
Failed to load c:\Program Files\Microsoft SQL Server\90\Tools\binn\OpenAL64.dll: C
T
Failed to load C:\Program Files\Microsoft Driver Test Manager\Controller\OpenAL64.dll: C
T
Failed to load C:\Python25\OpenAL64.dll: C
T
Failed to load C:\Program Files\Common Files\Symbian\tools\OpenAL64.dll: C
T
Failed to load C:\Program Files\CSL Arm Toolchain\bin\OpenAL64.dll: C
T
Failed to load C:\Program Files\TortoiseSVN\bin\OpenAL64.dll: C
T
Failed to load C:\Program Files\Common Files\Nero\Lib\OpenAL64.dll: C
T
Failed to load D:\eclipse\workspace\HighwayBlast\OpenAL64.dll: C
T
/player.png
Texture ‘/player.png’ loaded.
Texture ID 0 assigned
Loaded clip /explo1.wav
Loaded clip /boing.wav
Loaded clip /fx2.wav
Texture ID 1 assigned
Texture ID 2 assigned
/tunnel0.png
Texture ‘/tunnel0.png’ loaded.
Texture ID 3 assigned
/tunnel1.png
Texture ‘/tunnel1.png’ loaded.
Texture ID 4 assigned
/tunnel2.png
Failed to load OpenAL64.dll: C
T
Failed to load D:\Program Files\Java\jre1.6.0\bin\OpenAL32.dll: C
T
F
Texture ‘/tunnel2.png’ loaded.
Texture ID 5 assigned
/tunnel3.png
Texture ‘/tunnel3.png’ loaded.
Texture ID 6 assigned
/bg5.jpg
Texture ‘/bg5.jpg’ loaded.
Texture ID 7 assigned
/title.png
Texture ‘/title.png’ loaded.
Texture ID 8 assigned
/levelscore.png
Texture ‘/levelscore.png’ loaded.
Texture ID 9 assigned
/19x16Lucida.png
Texture ‘/19x16Lucida.png’ loaded.
Texture ID 10 assigned
Frequency:60
/tile.jpg
Texture ‘/tile.jpg’ loaded.
Texture ID 11 assigned
Texture ID 12 assigned
/TileDrag.png
Texture ‘/TileDrag.png’ loaded.
Texture ID 13 assigned
/TileSpeed.png
Texture ‘/TileSpeed.png’ loaded.
Texture ID 14 assigned
/gagaplay.png
Texture ‘/gagaplay.png’ loaded.
Texture ID 15 assigned
Loaded clip /claps.wav
Loaded clip /low1.wav
INIT COMPLETE
[/quote]
After initialization (which seemed to be successful, although the LWJGL debug log output seems a bit worrying), the line that causes the crash is this:
[quote]GL11.glClear(GL11.GL_COLOR_BUFFER_BIT | GL11.GL_DEPTH_BUFFER_BIT);
[/quote]
…which is a bit strange since the INIT already did the same successfully, and it’s such a trivial thing…