summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Adapt to to JOGL commit 78abc89be7f3935f26802cc0db33f61fc2c65de0 - ↵v2.0.2Sven Gothel2013-07-175-5/+5
| | | | LDrawableFactory.canCreateGLPbuffer(..) add GLProfile argument, similar to canCreateFBO(..)
* glredbook1314/mvarray: glMultiDrawElements require direct NIO bufferXerxes Rånby2013-07-051-1/+5
| | | | Signed-off-by: Xerxes Rånby <[email protected]>
* build.xml: Exclude SWT demos if empty user.swt.jar property is setXerxes Rånby2013-07-051-5/+7
| | | | Signed-off-by: Xerxes Rånby <[email protected]>
* www/index.html: Remove Grand Canyon Demo & XTransXerxes Rånby2013-06-301-108/+0
| | | | | | | | Grand Canyon Demo was hosted on the now offline java.sun.com server. XTrans require the, disabled by default, Java2D opengl backend to be enabled. Signed-off-by: Xerxes Rånby <[email protected]>
* add missing napplet files ..Sven Gothel2013-06-255-0/+206
|
* make script 32bit: force java6 creationv2.0.2-rc12v2.0-rc12Sven Gothel2013-06-211-0/+3
|
* Fix applet html pages, add gears and gearsjoal NApplet.Sven Gothel2013-06-218-24/+45
|
* HDR: Add resource re: floating point filtering ..Sven Gothel2013-06-171-0/+2
|
* Adapt to JOGL commit 8b33170ec6fd3f215976875cb66d746fa1b48f61, Fix Bug 688: ↵Sven Gothel2013-06-177-18/+6
| | | | Removal of NEWT KeyEvent.EVENT_KEY_TYPED and KeyListener.keyTyped(KeyEvent)
* Adapt to JOGL changes commit fd418a69eca7b8c1bb74244982305fc6004d0a52Sven Gothel2013-04-182-5/+12
| | | | Note: We have to find an independent impl. of HDR demo, due to removal of pbuffer floating point texture properties.
* jogl-demos.build.id -> target init, depends on jogamp.env.initSven Gothel2013-03-281-2/+2
|
* Adapt to new version scheme, see GlueGen ↵Sven Gothel2013-03-282-5/+3
| | | | a3f2ef50ad33c58a240a17fcf03e415d772207c3, etc
* RawGL2ES2demo: Fixed compile/launch in document due to package demos.es2;'Sven Gothel2013-01-191-1/+4
|
* RawGL2ES2demo: Fixed launch in document due to package demos.es2;'Sven Gothel2013-01-191-1/+1
|
* RawGL2ES2demo: Fix Animator usage; Added missing 'package demos.es2;'Sven Gothel2013-01-192-8/+3
|
* Use API level 10 (as the SDK will now refuse to use 9 due to it being ↵Mark Raynsford2013-01-078-4/+7
| | | | replaced with 10), and add a nice jp4da icon
* Rename the launcher to jp4da, from MainActivityMark Raynsford2013-01-071-1/+1
|
* Use SDK 9 in the Android manifestMark Raynsford2013-01-071-1/+1
|
* Use SDK 9, not 8Mark Raynsford2013-01-071-1/+1
|
* Use rc11post03Mark Raynsford2013-01-043-10/+10
|
* Use standard JOGL licenseMark Raynsford2013-01-041-13/+25
|
* Adapt to JOGL ShaderState changes - track our own instance.Sven Gothel2012-12-235-30/+58
|
* Use 3.5.0 android maven pluginMark Raynsford2012-12-201-1/+1
|
* Add licenseMark Raynsford2012-12-201-0/+13
|
* Initial jp4da setupMark Raynsford2012-12-0235-0/+959
|
* Adapt to JOGL changes commit 5fafc1ac360333645b807dcd8dff0c0a655ea439Sven Gothel2012-11-162-0/+3
|
* Merge branch 'master' of ssh://jogamp.org/srv/scm/jogl-demosSven Gothel2012-11-161-2/+2
|\
| * Removed JOAL example (moved to JOAL demos)Mark Raynsford2012-11-153-75/+0
| |
| * Trivial-as-possible JOAL testMark Raynsford2012-11-113-0/+75
| |
| * Update example to rc11Mark Raynsford2012-11-111-2/+2
| |
* | Adapt to JOGL changes commit 5fafc1ac360333645b807dcd8dff0c0a655ea439Sven Gothel2012-11-162-0/+4
|/
* Adapt to latest JOGL changesv2.0-rc11Sven Gothel2012-10-126-9/+13
|
* Merge remote-tracking branch 'origin/master'Sven Gothel2012-09-200-0/+0
|\
| * Merge pull request #5 from xranby/masterSven Gothel2012-09-201-68/+90
| |\ | | | | | | es2/RawGL2ES2demo: Remove AWT dependency to allow running on a Raspbe…
* | | Improve frame rendering smoothness in src/demos/es2/RawGL2ES2demo.javaXerxes Rånby2012-09-201-4/+7
| |/ |/| | | | | | | | | | | by using Animator instead of FPSAnimator. Calculate the time deltas for the theta movement using milliseconds passed between two frames. Signed-off-by: Xerxes Rånby <[email protected]>
* | Fix ecj warnings in src/demos/es2/RawGL2ES2demo.javaXerxes Rånby2012-09-201-21/+0
| | | | | | | | | | | | Removed unused imports, unused c field and the unused printMatrix function. Signed-off-by: Xerxes Rånby <[email protected]>
* | Use NIO Direct buffers to pass data to glVertexAttribPointer in ↵Xerxes Rånby2012-09-201-2/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | RawGL2ES2demo.java https://github.com/sgothel/jogl/commit/3f5aac3536956e245d0e151e4915e7dd67a08b7e Fixed two logical flaws regarding: - GL spec: Pointer functions required passed memory pointers to persist - JNI: Primitive arrays may change their native memory location (swap), even if they were not GC'ed. The demo code is now updated to stay compatible with this change. Signed-off-by Xerxes Rånby <[email protected]>
* | es2/RawGL2ES2demo: Remove AWT dependency to allow running on a Raspberry Pi; ↵Xerxes Rånby2012-08-221-46/+72
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Make syntax BeanShell compatible. - Raspberry Pi: Removed dependency of com.jogamp.newt.awt.NewtCanvasAWT to allow running on -Djava.awt.headlessi=true systems, we can do this by using NEWT directly to open a window. You can run this demo on a Raspberry Pi using the JogAmp JOGL auto-build aggregate from 20 Aug 2012 and later: wget http://jogamp.org/deployment/archive/master/gluegen_577-joal_347-jogl_790-jocl_653/archive/jogamp-all-platforms.7z 7z x jogamp-all-platforms.7z cd jogamp-all-platforms wget https://raw.github.com/xranby/jogl-demos/master/src/demos/es2/RawGL2ES2demo.java javac -cp jar/jogl-all.jar:jar/gluegen-rt.jar RawGL2ES2demo.java java -Dnativewindow.ws.name=jogamp.newt.driver.bcm.vc.iv -cp jar/jogl-all.jar:jar/gluegen-rt.jar:. RawGL2ES2demo - Beanshell: removed final in function arguments and changed float array declaration to become BeanShell compatible. You can run this demo interpreted using Beanshell: wget http://www.beanshell.org/bsh-2.0b4.jar java -cp jar/jogl-all.jar:jar/gluegen-rt.jar:bsh-2.0b4.jar:. bsh.Interpreter RawGL2ES2demo.java - Vertex and Fragment shaders: remove #version lines to make the shaders compile on more drivers.
* Adapt to JOGL changes commit 00bef95008b02cc71e166da122884402e9381f44v2.0-rc10Sven Gothel2012-07-251-2/+4
|
* Adapt to FBObject changesSven Gothel2012-07-203-47/+31
|
* Added trivial testMark Raynsford2012-06-273-0/+188
|
* Adapt to changes for Bug #598 - JOGL ALL JAR File Change incl. it's Native ↵Sven Gothel2012-06-269-44/+44
| | | | | | | Jar URL Derivation - Depends on GlueGen commit 9a71703904ebfec343fb2c7266343d37a2e4c3db - Depends on JOGL commit a393e45613d87101dbb13763df263c2f9291d2d0
* setenv-jogl.sh: remove LD_LIBRARY_PATH settings .. no more requiredSven Gothel2012-06-211-2/+2
|
* Remove GLProfile.initSingleton(..) calls and JNLP argument ↵Sven Gothel2012-06-2169-437/+50
| | | | | | | | | | 'NotFirstUIActionOnProcess'; Adapt to CapabilitiesChooser API/generics change; Misc - Remove GLProfile.initSingleton(..) calls and JNLP argument 'NotFirstUIActionOnProcess' - Adapt to CapabilitiesChooser API/generics change - Cleanup some generics use .. etc
* Merge pull request #3 from xranby/masterv2.0-rc9v2.0-rc6Sven Gothel2012-04-161-0/+455
|\ | | | | RAW JOGL2 OpenGL ES 2 demo
| * RawGL2ES2demo: make shaders Mesa X11 GL compatible.Xerxes Rånby2012-03-231-6/+21
| |
| * RawGL2ES2demo: Mention JOGL probing of system installed libGL and libEGL.Xerxes Rånby2012-03-231-3/+17
| |
| * JOGL2 OpenGL ES 2 demo to expose and learn what the RAW OpenGL ES 2 API ↵Xerxes Rånby2012-03-231-0/+426
| | | | | | | | looks like.
* | Adapt to JOGL's ShaderUtil API changes commit ↵v2.0-rc8v2.0-rc7Sven Gothel2012-04-163-14/+14
| | | | | | | | 62e5686fb583ad991d5811baf242d40d21952e27
* | Removed obsolete openmax demos. JOGL has demo/test code for GLMediaPlayerSven Gothel2012-04-098-977/+0
|/