Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix PMVMatrix changes and minor cleanup | Sven Gothel | 2023-05-07 | 2 | -131/+185 |
| | |||||
* | Adapt to JOGL GLArrayData API Change commit ↵ | Sven Gothel | 2023-02-25 | 3 | -82/+93 |
| | | | | 3d537d4239e3772ffdb33592e5e66844d94ac9f3 | ||||
* | Adapt to GlueGen commit acd52a1936090eee11b3220f5c75ee37763773c7 | Sven Gothel | 2015-10-15 | 1 | -14/+23 |
| | |||||
* | Bug 682 - Relocating javax.media.opengl.* -> com.jogamp.opengl.* (Part 1) | Sven Gothel | 2015-02-03 | 9 | -29/+29 |
| | |||||
* | Fix RawGL2ES2demo: Issue glDeleteBuffers(..) at dispose(..) not display(..); ↵ | Sven Gothel | 2014-04-11 | 1 | -25/+25 |
| | | | | | | Whistespace cleanup. Using a 'marked for deletion' buffer is not supported on all GL specifications, if at all (?). | ||||
* | Adapt to jogl changes post 2.1.5 | Sven Gothel | 2014-03-17 | 2 | -17/+15 |
| | |||||
* | Fix bug 821: RawGL2ES2demo: Explicit add #version 130 for GL3 core & release ↵ | Xerxes Rånby | 2013-09-02 | 1 | -26/+57 |
| | | | | | | VBO using glDeleteBuffers. Signed-off-by: Xerxes Rånby <[email protected]> | ||||
* | Fix bug 821: RawGL2ES2demo: Use VBO buffers and update shaders to stay ↵ | Xerxes Rånby | 2013-08-30 | 1 | -5/+59 |
| | | | | | | GL3/ES3 core profile compatible. Signed-off-by: Xerxes Rånby <[email protected]> | ||||
* | Adapt to JOGL commit 8b33170ec6fd3f215976875cb66d746fa1b48f61, Fix Bug 688: ↵ | Sven Gothel | 2013-06-17 | 1 | -2/+3 |
| | | | | Removal of NEWT KeyEvent.EVENT_KEY_TYPED and KeyListener.keyTyped(KeyEvent) | ||||
* | RawGL2ES2demo: Fixed compile/launch in document due to package demos.es2;' | Sven Gothel | 2013-01-19 | 1 | -1/+4 |
| | |||||
* | RawGL2ES2demo: Fixed launch in document due to package demos.es2;' | Sven Gothel | 2013-01-19 | 1 | -1/+1 |
| | |||||
* | RawGL2ES2demo: Fix Animator usage; Added missing 'package demos.es2;' | Sven Gothel | 2013-01-19 | 1 | -1/+3 |
| | |||||
* | Adapt to JOGL ShaderState changes - track our own instance. | Sven Gothel | 2012-12-23 | 5 | -30/+58 |
| | |||||
* | Adapt to JOGL changes commit 5fafc1ac360333645b807dcd8dff0c0a655ea439 | Sven Gothel | 2012-11-16 | 1 | -0/+1 |
| | |||||
* | Improve frame rendering smoothness in src/demos/es2/RawGL2ES2demo.java | Xerxes Rånby | 2012-09-20 | 1 | -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.java | Xerxes Rånby | 2012-09-20 | 1 | -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ånby | 2012-09-20 | 1 | -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ånby | 2012-08-22 | 1 | -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. | ||||
* | Merge pull request #3 from xranby/masterv2.0-rc9v2.0-rc6 | Sven Gothel | 2012-04-16 | 1 | -0/+455 |
|\ | | | | | RAW JOGL2 OpenGL ES 2 demo | ||||
| * | RawGL2ES2demo: make shaders Mesa X11 GL compatible. | Xerxes Rånby | 2012-03-23 | 1 | -6/+21 |
| | | |||||
| * | RawGL2ES2demo: Mention JOGL probing of system installed libGL and libEGL. | Xerxes Rånby | 2012-03-23 | 1 | -3/+17 |
| | | |||||
| * | JOGL2 OpenGL ES 2 demo to expose and learn what the RAW OpenGL ES 2 API ↵ | Xerxes Rånby | 2012-03-23 | 1 | -0/+426 |
| | | | | | | | | looks like. | ||||
* | | Adapt to JOGL's ShaderUtil API changes commit ↵v2.0-rc8v2.0-rc7 | Sven Gothel | 2012-04-16 | 2 | -8/+8 |
| | | | | | | | | 62e5686fb583ad991d5811baf242d40d21952e27 | ||||
* | | Removed obsolete openmax demos. JOGL has demo/test code for GLMediaPlayer | Sven Gothel | 2012-04-09 | 8 | -977/+0 |
|/ | |||||
* | Adapt to GlueGen IO resource changes URL -> URLConnection for effeciency | Sven Gothel | 2012-03-17 | 1 | -7/+9 |
| | |||||
* | Adapt to latest JOGL changes (commit: ↵ | Sven Gothel | 2012-02-24 | 3 | -13/+9 |
| | | | | a4c7bf0420e369e71561d2847f2fc444ce5abafa, d97c54896d349e8a22c9cafec75c62476c16fdd1) | ||||
* | Adapt to JOGL commit 7f2da7bb878813817efab0eb01bbf274065ef6c6 | Sven Gothel | 2011-08-30 | 5 | -11/+11 |
| | |||||
* | Adapt to latest jogl commit 6c346d98f04e2355210960fe9ffde47432f04d62 | Sven Gothel | 2011-08-22 | 3 | -9/+9 |
| | |||||
* | FixedFuncUtil.getFixedFuncImpl() -> FixedFuncUtil.wrapFixedFuncEmul() | Sven Gothel | 2011-08-01 | 2 | -2/+2 |
| | |||||
* | Fixes for latest jogl/gluegen (FileUtil/Locator -> IOUtil) | Sven Gothel | 2011-06-26 | 1 | -1/+3 |
| | |||||
* | sync w/ jogl e007bb306124411e0232e51d16aa493cbd361f74 | Sven Gothel | 2011-04-26 | 9 | -66/+66 |
| | |||||
* | Add NEWT WindowListener.windowDestroyed() ↵ | Sven Gothel | 2010-12-23 | 1 | -5/+3 |
| | | | | e7778124162aef7004e040dded5de1eaf5e1ece4 | ||||
* | Adapt to JOGL 7262641429b542929efc699e392f410f1dee2187 | Sven Gothel | 2010-11-23 | 1 | -2/+2 |
| | |||||
* | Accomodate JOGL changes up to ce24d32178106baa16e84f016192441ce45845a7 | Sven Gothel | 2010-10-29 | 3 | -6/+6 |
| | |||||
* | Sync with JOGL: 1c02f0eeb539ff5de7259b822893ab63a9cc3ab0 | Sven Gothel | 2010-09-23 | 3 | -3/+3 |
| | |||||
* | Fixes against JOGL a4b16ad544f3f7872f15e52d7ada7dc1e506d333 | Sven Gothel | 2010-07-16 | 1 | -0/+2 |
| | |||||
* | Changes according to JOGL 811bd23ed37e392abb349f850a0b1dac635d021e | Sven Gothel | 2010-05-28 | 1 | -1/+1 |
| | |||||
* | Fixes for JOGL changes 6e599a2696f878786783e0fea17534e67655a5c9 | Sven Gothel | 2010-05-21 | 3 | -3/+3 |
| | |||||
* | Adaption to JOGL 1ad8c39df6b097c80ba7a85badf555e7f669cc3f | Sven Gothel | 2010-04-24 | 5 | -7/+4 |
| | |||||
* | Fix: delete Newt window completly (deep) | Sven Gothel | 2010-04-23 | 1 | -1/+1 |
| | |||||
* | fixed imports to fix build. | Michael Bien | 2010-04-08 | 2 | -2/+2 |
| | |||||
* | Adaptions to jogl:1a2a54a83a9adb95b4bfe9c337751acbef0cb0d3 ↵ | Sven Gothel | 2010-03-30 | 1 | -0/+7 |
| | | | | gluegen:7220416bcef3140883d3966d921442feae3107c4 ; Fix build.xml: using rootrel.build | ||||
* | modifications due to refactorings in gluegen and jogl. | Michael Bien | 2010-03-29 | 2 | -12/+13 |
| | |||||
* | changes due to package rename in jogl. | Michael Bien | 2010-03-29 | 8 | -18/+12 |
| | |||||
* | fixed jogl-demos since we moved some packages in jogl. | Michael Bien | 2010-03-28 | 8 | -18/+18 |
| | |||||
* | modifications due to refactorings: com.sun.opengl -> com.jogamp.opengl. | Michael Bien | 2010-03-27 | 9 | -17/+17 |
| | |||||
* | Adapted JOGL TextureData API changes (138a5b057e39a4738a2e82f370424a9a21aceea9) | Sven Gothel | 2010-03-26 | 1 | -1/+1 |
| | |||||
* | JOGLNewtAppletBase et al - no dispose event at destruction, since it's ↵ | Sven Gothel | 2009-10-12 | 1 | -1/+6 |
| | | | | critical within a browser | ||||
* | JOGL changes .. | Sven Gothel | 2009-10-10 | 1 | -37/+25 |
| | |||||
* | Add ReadBuffer Demos/ModuleTests; Incl. SurfaceUpdated Listener, ReadPixel ↵ | Sven Gothel | 2009-10-04 | 1 | -5/+0 |
| | | | | to file, texture - direct or via attaching the drawable to another context as it's readbuffer |