diff options
author | Sven Gothel <[email protected]> | 2009-07-03 23:37:40 +0000 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2009-07-03 23:37:40 +0000 |
commit | d2479923b88f4444da2c48891e7ec006575d20cd (patch) | |
tree | ce16a0157643b356f70f807e6ec087d31f3d5803 /jnlp-files/JRefract.jnlp | |
parent | 676988d2ef6fbcd635cdfaeace39a4b17d73b5f3 (diff) |
Adding boiler-plate JNLP files
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/jogl-demos/trunk@368 3298f667-5e0e-4b4a-8ed4-a3559d26a5f4
Diffstat (limited to 'jnlp-files/JRefract.jnlp')
-rw-r--r-- | jnlp-files/JRefract.jnlp | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/jnlp-files/JRefract.jnlp b/jnlp-files/JRefract.jnlp new file mode 100644 index 0000000..fd37f1a --- /dev/null +++ b/jnlp-files/JRefract.jnlp @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?>
+<jnlp codebase="DEMO_CODEBASE_TAG"
+ href="JRefract.jnlp">
+ <information>
+ <title>JOGL JRefract Demo - JOGL/Java2D Integration</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 and integration with Java2D's OpenGL pipeline.</description>
+ <offline-allowed/>
+ </information>
+
+ <resources>
+ <j2se href="http://java.sun.com/products/autodl/j2se" version="1.4+"/>
+ <property name="sun.java2d.opengl" value="True"/>
+ <!-- Temporary workaround for slowness in Windows NVidia drivers -->
+ <property name="swing.bufferPerWindow" value="false"/>
+ <property name="jogl.debug.GLJPanel" value="true"/>
+ <jar href="jogl-demos.jar" main="true"/>
+ <jar href="jogl-demos-util.jar" />
+ <jar href="jogl-demos-data.jar" />
+ <extension name="jogl-all-awt" href="JOGL_CODEBASE_TAG/jogl-all-awt.jnlp" />
+ </resources>
+
+ <application-desc main-class="demos.jrefract.JRefract"/>
+</jnlp>
|