show/hide this revision's text 2 made the actual answer stand out better; fixed typo

The reason for the slowdown is that GraphicsDevice.getConfigurations(), which is used by SimpleUniverse.getPreferredConfiguration(), is very slow on some systems. See this java.net forum thread, which links to this Java3D bug, which in turn links to this Sun bug:

The problem is that ::DescribePixelFormat Win32 call is slow - takes up to 60ms to complete. ...
With the suggested workaround (which elminats [sic] the offending win32 calls) the time is significantly improved (to, like, 0ms).

The workaround mentioned is to pass -Dsun.awt.nopixfmt=true to the JVM, which makes the underlying native code not call DescribePixelFormat.

This can apparently is not a perfect solution:

... some applications which use OpenGL with Java may not work correctly.

But since I was using Direct3D anyway, it's not a problem. This cut 3.2 seconds off of the startup time.

show/hide this revision's text 1

The reason for the slowdown is that GraphicsDevice.getConfigurations(), which is used by SimpleUniverse.getPreferredConfiguration(), is very slow on some systems. See this java.net forum thread, which links to this Java3D bug, which in turn links to this Sun bug:

The problem is that ::DescribePixelFormat Win32 call is slow - takes up to 60ms to complete. ...
With the suggested workaround (which elminats [sic] the offending win32 calls) the time is significantly improved (to, like, 0ms).

The workaround mentioned is to pass -Dsun.awt.nopixfmt=true, which makes the underlying native code not call DescribePixelFormat. This can apparently is not a perfect solution:

... some applications which use OpenGL with Java may not work correctly.

But since I was using Direct3D anyway, it's not a problem. This cut 3.2 seconds off of the startup time.