summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2013-07-16 02:11:44 +0200
committerSven Gothel <[email protected]>2013-07-16 02:11:44 +0200
commit6b3e1349af5ea8c71c1e5170003bf701f19af3f3 (patch)
tree2613b90756ece1954187f96a51fac0e65a98faca /doc
parentc2c5d142c5e4a70785a739c7645ae727c75fb5af (diff)
SIGGRAPH 2013: Jens's slides - draft 01
Diffstat (limited to 'doc')
-rw-r--r--doc/siggraph2013/bof/jens/jogl-bof-2013-nifty-gui.odpbin0 -> 4083007 bytes
-rw-r--r--doc/siggraph2013/bof/jens/jogl-bof-2013-nifty-gui.pdfbin0 -> 1330212 bytes
-rw-r--r--doc/siggraph2013/bof/jens/readme-run-nifty.txt29
3 files changed, 29 insertions, 0 deletions
diff --git a/doc/siggraph2013/bof/jens/jogl-bof-2013-nifty-gui.odp b/doc/siggraph2013/bof/jens/jogl-bof-2013-nifty-gui.odp
new file mode 100644
index 0000000..b87034a
--- /dev/null
+++ b/doc/siggraph2013/bof/jens/jogl-bof-2013-nifty-gui.odp
Binary files differ
diff --git a/doc/siggraph2013/bof/jens/jogl-bof-2013-nifty-gui.pdf b/doc/siggraph2013/bof/jens/jogl-bof-2013-nifty-gui.pdf
new file mode 100644
index 0000000..cf60a4d
--- /dev/null
+++ b/doc/siggraph2013/bof/jens/jogl-bof-2013-nifty-gui.pdf
Binary files differ
diff --git a/doc/siggraph2013/bof/jens/readme-run-nifty.txt b/doc/siggraph2013/bof/jens/readme-run-nifty.txt
new file mode 100644
index 0000000..b70e4b3
--- /dev/null
+++ b/doc/siggraph2013/bof/jens/readme-run-nifty.txt
@@ -0,0 +1,29 @@
+# clone the repo
+git clone https://github.com/void256/nifty-gui.git
+cd nifty-gui
+
+# and make sure we're on the right branch (1.3)
+git checkout 1.3
+
+# compile and install everything in the local maven repo
+mvn install
+
+# switch to the jogl examples project
+cd nifty-examples-jogl
+
+# run nifty 1.2 tutorial demo. options:
+# - without arguments -> run standard old renderer
+# - add "-Dexec.arguments=batch" -> run batched renderer
+# - add "-Dexec.arguments=core" -> run batched renderer using OpenGL core profile
+mvn exec:java -Dexec.mainClass=de.lessvoid.nifty.examples.jogl.NiftyTutorialJOGL
+mvn exec:java -Dexec.mainClass=de.lessvoid.nifty.examples.jogl.NiftyTutorialJOGL -Dexec.arguments=batch
+mvn exec:java -Dexec.mainClass=de.lessvoid.nifty.examples.jogl.NiftyTutorialJOGL -Dexec.arguments=core
+
+# run controls demo. options:
+# - without arguments -> run standard old renderer
+# - add "-Dexec.arguments=batch" -> run batched renderer
+# - add "-Dexec.arguments=core" -> run batched renderer using OpenGL core profile
+mvn exec:java -Dexec.mainClass=de.lessvoid.nifty.examples.jogl.ControlsDemoJOGL
+mvn exec:java -Dexec.mainClass=de.lessvoid.nifty.examples.jogl.ControlsDemoJOGL -Dexec.arguments=batch
+mvn exec:java -Dexec.mainClass=de.lessvoid.nifty.examples.jogl.ControlsDemoJOGL -Dexec.arguments=core
+