You can when did they add this to JNLP? I thought all you could change was the default memory sizes. In fact I think there is a bug requesting access to more VM options just for things like this.
Well, in my old Duke Rogers game, I have this:
1 2 3 4 5 6 7 8 9 10 11
| <resources> <j2se version="1.4+"/> <property name="sun.java2d.ddscale" value="true"/> <property name="sun.java2d.noddraw" value="false"/> <property name="sun.java2d.ddoffscreen" value="true"/> <property name="sun.java2d.d3d" value="true"/> <jar href="DukeRogers.jar"/> <jar href="Mus1.jar"/> <jar href="Gfx.jar"/> <jar href="Sfx.jar"/> </resources> |
and that definitely works (I checked).
I kind of assumed setting the properties like Cas described would work too, but I must confess I haven't tried...
Erik