diff options
author | jada <jada@28c7f869-5b4e-e670-f602-82bfaf57f300> | 2006-02-14 19:32:21 +0000 |
---|---|---|
committer | jada <jada@28c7f869-5b4e-e670-f602-82bfaf57f300> | 2006-02-14 19:32:21 +0000 |
commit | 971762138bef7ad540026e9fb77e1018f9d23828 (patch) | |
tree | cd394380fb136b0bb21d86511dd25c56d77be081 | |
parent | db51908057c333598179879522a230fc4929aeb3 (diff) |
1) Copy shader related files to respective classes directory instead of under resources directory.
2) Added more examples to run with ant command.
-rw-r--r-- | build.xml | 84 |
1 files changed, 77 insertions, 7 deletions
@@ -79,11 +79,11 @@ <fileset dir="${src}/resources"/> </copy> <!-- Cg shader --> - <copy todir="${build}/classes/org/jdesktop/j3d/examples/resources/cg_shader"> + <copy todir="${build}/classes/org/jdesktop/j3d/examples/cg_shader"> <fileset dir="${src}/classes/org/jdesktop/j3d/examples/cg_shader" includes ="*.cg"/> </copy> <!-- GLSL shader --> - <copy todir="${build}/classes/org/jdesktop/j3d/examples/resources/glsl_shader"> + <copy todir="${build}/classes/org/jdesktop/j3d/examples/glsl_shader"> <fileset dir="${src}/classes/org/jdesktop/j3d/examples/glsl_shader" includes ="*.vert, *.frag"/> </copy> @@ -119,9 +119,16 @@ ************************************************** --> - <target name="run.HelloUniverse" depends="init-run"> + <target name="run.AppearanceMixed" depends="init-run"> <java fork="true" - classname="org.jdesktop.j3d.examples.hello_universe.HelloUniverse"> + classname="org.jdesktop.j3d.examples.appearance.AppearanceMixed"> + <classpath refid="run.classpath"/> + </java> + </target> + + <target name="run.AppearanceTest" depends="init-run"> + <java fork="true" + classname="org.jdesktop.j3d.examples.appearance.AppearanceTest"> <classpath refid="run.classpath"/> </java> </target> @@ -133,6 +140,48 @@ </java> </target> + <target name="run.HelloUniverse" depends="init-run"> + <java fork="true" + classname="org.jdesktop.j3d.examples.hello_universe.HelloUniverse"> + <classpath refid="run.classpath"/> + </java> + </target> + + <target name="run.Morphing" depends="init-run"> + <java fork="true" + classname="org.jdesktop.j3d.examples.morphing.Morphing"> + <classpath refid="run.classpath"/> + </java> + </target> + + <target name="run.MultiTextureTest" depends="init-run"> + <java fork="true" + classname="org.jdesktop.j3d.examples.texture.MultiTextureTest"> + <classpath refid="run.classpath"/> + </java> + </target> + + <target name="run.ObjLoad" depends="init-run"> + <java fork="true" + classname="org.jdesktop.j3d.examples.objload.ObjLoad"> + <classpath refid="run.classpath"/> + </java> + </target> + + <target name="run.ObjLoadGLSL" depends="init-run"> + <java fork="true" + classname="org.jdesktop.j3d.examples.glsl_shader.ObjLoadGLSL"> + <classpath refid="run.classpath"/> + </java> + </target> + + <target name="run.PhongShadingGLSL" depends="init-run"> + <java fork="true" + classname="org.jdesktop.j3d.examples.glsl_shader.PhongShadingGLSL"> + <classpath refid="run.classpath"/> + </java> + </target> + <target name="run.QueryProperties" depends="init-run"> <java fork="true" classname="org.jdesktop.j3d.examples.package_info.QueryProperties"> @@ -140,18 +189,39 @@ </java> </target> + <target name="run.ShaderTestGLSL" depends="init-run"> + <java fork="true" + classname="org.jdesktop.j3d.examples.glsl_shader.ShaderTestGLSL"> + <classpath refid="run.classpath"/> + </java> + </target> + <target name="run.SphereMotion" depends="init-run"> <java fork="true" classname="org.jdesktop.j3d.examples.sphere_motion.SphereMotion"> <classpath refid="run.classpath"/> </java> </target> + + <target name="run.SphereGLSL" depends="init-run"> + <java fork="true" + classname="org.jdesktop.j3d.examples.glsl_shader.SphereGLSL"> + <classpath refid="run.classpath"/> + </java> + </target> - <target name="run.ObjLoad" depends="init-run"> + <target name="run.TextureByReference" depends="init-run"> <java fork="true" - classname="org.jdesktop.j3d.examples.objload.ObjLoad"> + classname="org.jdesktop.j3d.examples.texture_by_ref.TextureByReference"> <classpath refid="run.classpath"/> </java> </target> - + + <target name="run.TextureImage" depends="init-run"> + <java fork="true" + classname="org.jdesktop.j3d.examples.texture.TextureImage"> + <classpath refid="run.classpath"/> + </java> + </target> + </project> |