diff options
-rwxr-xr-x | www/webstart/JRefractSingleThreaded.jnlp | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/www/webstart/JRefractSingleThreaded.jnlp b/www/webstart/JRefractSingleThreaded.jnlp new file mode 100755 index 0000000..c278249 --- /dev/null +++ b/www/webstart/JRefractSingleThreaded.jnlp @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8"?> +<jnlp spec="1.0" + codebase="https://jogl-demos.dev.java.net/webstart/" + href="JRefractSingleThreaded.jnlp"> + <information> + <title>JOGL JRefract Demo</title> + <vendor>Sun Microsystems, Inc.</vendor> + <homepage href="http://jogl-demos.dev.java.net/"/> + <description>JRefract Demo</description> + <description kind="short">Variant of NVidia's vtxprog_refract demo illustrating JOGL's hardware-accelerated Swing component.</description> + <offline-allowed/> + </information> + + <resources> + <j2se href="http://java.sun.com/products/autodl/j2se" version="1.4+"/> + <property name="sun.java2d.noddraw" value="true"/> + <property name="JOGL_SINGLE_THREADED_WORKAROUND" value="true"/> + <jar href="jogl-demos.jar" main="true"/> + <jar href="jogl-demos-util.jar" /> + <jar href="jogl-demos-data.jar" /> + <extension name="jogl" href="https://jogl.dev.java.net/webstart/jogl.jnlp" /> + </resources> + + <application-desc main-class="demos.jrefract.JRefract"/> +</jnlp> |