How can I make Java3D start faster? - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T03:15:50Zhttp://stackoverflow.com/feeds/question/507987http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/507987/how-can-i-make-java3d-start-faster2How can I make Java3D start faster?mmyers2009-02-03T17:03:49Z2009-02-03T17:17:38Z
<p>My application takes several seconds to show the first window with a <code>Canvas3D</code> in it. I've profiled it and found that the bottleneck is in <code>SimpleUniverse.getPreferredConfiguration()</code>; the first call takes three or four seconds, and it <em>must</em> be called before the scene can be rendered.</p>
<p>I'm using the Direct3D renderer (<code>-Dj3d.rend=d3d</code>), because the OpenGL renderer crashes on my graphics card. I have an integrated ATI card running a single monitor.</p>
http://stackoverflow.com/questions/507987/how-can-i-make-java3d-start-faster/507988#5079885Answer by mmyers for How can I make Java3D start faster?mmyers2009-02-03T17:04:02Z2009-02-03T17:17:38Z<p>The reason for the slowdown is that <code>GraphicsDevice.getConfigurations()</code>, which is used by <code>SimpleUniverse.getPreferredConfiguration()</code>, is very slow on some systems. See <a href="http://forums.java.net/jive/thread.jspa?threadID=56947&tstart=0" rel="nofollow">this java.net forum thread</a>, which links to <a href="https://java3d.dev.java.net/issues/show_bug.cgi?id=406" rel="nofollow">this Java3D bug</a>, which in turn links to <a href="http://forums.java.net/jive/thread.jspa?threadID=56947&tstart=0" rel="nofollow">this Sun bug</a>:</p>
<blockquote>
<p>The problem is that <code>::DescribePixelFormat</code> Win32 call is slow - takes
up to 60ms to complete.
...<br />
With the suggested workaround (which elminats [sic] the offending win32 calls)
the time is significantly improved (to, like, 0ms).</p>
</blockquote>
<p>The workaround mentioned is to <strong>pass <code>-Dsun.awt.nopixfmt=true</code> to the JVM</strong>, which makes the underlying native code not call <code>DescribePixelFormat</code>.</p>
<p>This apparently is not a perfect solution:</p>
<blockquote>
<p>... some
applications which use OpenGL with Java may not work correctly.</p>
</blockquote>
<p>But since I was using Direct3D anyway, it's not a problem. <strong>This cut 3.2 seconds off of the startup time.</strong></p>