diff options
author | Sven Gothel <[email protected]> | 2013-07-16 02:11:44 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-07-16 02:11:44 +0200 |
commit | 6b3e1349af5ea8c71c1e5170003bf701f19af3f3 (patch) | |
tree | 2613b90756ece1954187f96a51fac0e65a98faca /doc | |
parent | c2c5d142c5e4a70785a739c7645ae727c75fb5af (diff) |
SIGGRAPH 2013: Jens's slides - draft 01
Diffstat (limited to 'doc')
-rw-r--r-- | doc/siggraph2013/bof/jens/jogl-bof-2013-nifty-gui.odp | bin | 0 -> 4083007 bytes | |||
-rw-r--r-- | doc/siggraph2013/bof/jens/jogl-bof-2013-nifty-gui.pdf | bin | 0 -> 1330212 bytes | |||
-rw-r--r-- | doc/siggraph2013/bof/jens/readme-run-nifty.txt | 29 |
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 Binary files differnew file mode 100644 index 0000000..b87034a --- /dev/null +++ b/doc/siggraph2013/bof/jens/jogl-bof-2013-nifty-gui.odp diff --git a/doc/siggraph2013/bof/jens/jogl-bof-2013-nifty-gui.pdf b/doc/siggraph2013/bof/jens/jogl-bof-2013-nifty-gui.pdf Binary files differnew file mode 100644 index 0000000..cf60a4d --- /dev/null +++ b/doc/siggraph2013/bof/jens/jogl-bof-2013-nifty-gui.pdf 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 + |