Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Adapt to FBObject jogl changes b44288b26e8ac6de0593db349725c2a288bb520a | Sven Gothel | 2011-04-05 | 3 | -55/+131 |
| | |||||
* | Adapt impl namespace change jogl: 360b6716f68b44b28fd8c4f8e61ab86d5a56738b | Sven Gothel | 2011-02-09 | 6 | -8/+8 |
| | |||||
* | Adapt CapabilitiesChooser.chooseCapabilities() changes of JOGL ↵ | Sven Gothel | 2011-01-31 | 2 | -11/+13 |
| | | | | 8adc04788a6d9dd44de5a4636b46d14dbb70b799 | ||||
* | Add NEWT WindowListener.windowDestroyed() ↵ | Sven Gothel | 2010-12-23 | 8 | -8/+18 |
| | | | | e7778124162aef7004e040dded5de1eaf5e1ece4 | ||||
* | Unique ZIP archive name ; Gears main init sequence | Sven Gothel | 2010-12-19 | 1 | -11/+20 |
| | |||||
* | Fix joal/gears applet demo | Sven Gothel | 2010-12-16 | 2 | -2/+10 |
| | |||||
* | Update GearsJOALApplet: Depending on joal build; incl joal snippet, remove ↵ | Sven Gothel | 2010-12-13 | 2 | -2/+293 |
| | | | | joal/joal-demos jar files. | ||||
* | Add GearsApplet applet lifecycle message | Sven Gothel | 2010-12-12 | 1 | -0/+10 |
| | |||||
* | Adapt JOGL API Cleanup: 4b9ad2508ff31a03d3bc4482d812a6cbc0c5c33b | Sven Gothel | 2010-12-03 | 5 | -9/+10 |
| | |||||
* | Fix context sharing demo, ie the shared context must be available ↵ | Sven Gothel | 2010-12-03 | 1 | -25/+15 |
| | | | | (addNotify) before it can be retrieved. | ||||
* | Adapt to JOGL 597007fc23fbf86e036629b6c6b157e0e0506715 | Sven Gothel | 2010-11-28 | 1 | -1/+1 |
| | |||||
* | Adapt to JOGL 7262641429b542929efc699e392f410f1dee2187 | Sven Gothel | 2010-11-23 | 9 | -19/+22 |
| | |||||
* | Accomodate JOGL changes up to ce24d32178106baa16e84f016192441ce45845a7 | Sven Gothel | 2010-10-29 | 12 | -25/+25 |
| | |||||
* | Fix/Syn with JOGL 774138544e1eec3330309ad682fa05154a07ab8d ; Notably add: ↵ | Sven Gothel | 2010-10-14 | 52 | -257/+421 |
| | | | | Applet's with native NEWT support, ie jogl-newt-applet-runner-gears.html | ||||
* | syn with JOGL 018c7e8660dc0af68bd129be9af5094d04d0b431 | Sven Gothel | 2010-10-08 | 2 | -3/+3 |
| | |||||
* | Picking unsigned integer handling fix. | Sven Gothel | 2010-09-24 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | Julien Gouesse send me this patch to the jogamp ML on 2010-09-09 16:24 Thu +0200: Picking.java is a provided example of JOGL 2 here: http://jogamp.org/jogl-demos/src/demos/misc/Picking.java http://jogamp.org/jogl-demos/src/demos/misc/Picking.java The both lines above are wrong: z1 = (float) buffer.get(offset) / 0x7fffffff; offset++; z2 = (float) buffer.get(offset) / 0x7fffffff; offset++; Actually, the select buffer contains 32-bits unsigned integers stored into 32-bits signed integers. Then, the last digit is wrongly used as a sign bit. As Java has no unsigned type, at least 33 bits are required to store these positive values with their sign. Therefore, the long type (64 bits) should be used. The both lines above often work correctly except when the depth values are bigger than 2^31. I assume that they have been copied from an example written in C++. We should rather do this: z1 = (float) (buffer.get(offset)& 0xffffffffL) / 0x7fffffff; offset++; z2 = (float) (buffer.get(offset)& 0xffffffffL) / 0x7fffffff; offset++; | ||||
* | Sync with JOGL: 1c02f0eeb539ff5de7259b822893ab63a9cc3ab0 | Sven Gothel | 2010-09-23 | 22 | -59/+59 |
| | |||||
* | Add GL 3.3, 4.0 and 4.1 info - JOGL: ca119c97340caf325cd682c5fdbe8f794a35ac0e | Sven Gothel | 2010-08-24 | 1 | -0/+73 |
| | |||||
* | Fixes against JOGL a4b16ad544f3f7872f15e52d7ada7dc1e506d333 | Sven Gothel | 2010-07-16 | 11 | -30/+20 |
| | |||||
* | Adding GLProfile.initSingleton() call, ensuring [multithreading] ↵ | Sven Gothel | 2010-06-10 | 47 | -4/+180 |
| | | | | intitialization can be done in time | ||||
* | Changes according to JOGL 811bd23ed37e392abb349f850a0b1dac635d021e | Sven Gothel | 2010-05-28 | 6 | -6/+6 |
| | |||||
* | Fixes for JOGL changes 6e599a2696f878786783e0fea17534e67655a5c9 | Sven Gothel | 2010-05-21 | 13 | -13/+13 |
| | |||||
* | Fix URLs | Sven Gothel | 2010-05-08 | 3 | -3/+3 |
| | |||||
* | Fix NewtFactory usage | Sven Gothel | 2010-05-05 | 1 | -1/+1 |
| | |||||
* | Adaption to JOGL 1ad8c39df6b097c80ba7a85badf555e7f669cc3f | Sven Gothel | 2010-04-24 | 20 | -20/+18 |
| | |||||
* | Fix: delete Newt window completly (deep) | Sven Gothel | 2010-04-23 | 2 | -2/+9 |
| | |||||
* | Add win32 script, misc stuff .. | Sven Gothel | 2010-04-21 | 3 | -1/+8 |
| | |||||
* | Show GLContext GL Version | Sven Gothel | 2010-04-16 | 1 | -0/+2 |
| | |||||
* | Fixes to match JOGL 2ae28d54858ff684bc2368e0476a7a357dc63432 | Sven Gothel | 2010-04-15 | 7 | -13/+35 |
| | |||||
* | fixed imports to fix build. | Michael Bien | 2010-04-08 | 17 | -17/+17 |
| | |||||
* | Adaptions to jogl:1a2a54a83a9adb95b4bfe9c337751acbef0cb0d3 ↵ | Sven Gothel | 2010-03-30 | 2 | -11/+16 |
| | | | | gluegen:7220416bcef3140883d3966d921442feae3107c4 ; Fix build.xml: using rootrel.build | ||||
* | modifications due to refactorings in gluegen and jogl. | Michael Bien | 2010-03-29 | 56 | -316/+362 |
| | |||||
* | changes due to package rename in jogl. | Michael Bien | 2010-03-29 | 25 | -56/+39 |
| | |||||
* | fixed jogl-demos since we moved some packages in jogl. | Michael Bien | 2010-03-28 | 25 | -46/+46 |
| | |||||
* | modifications due to refactorings: com.sun.opengl -> com.jogamp.opengl. | Michael Bien | 2010-03-27 | 145 | -270/+379 |
| | |||||
* | Adapted JOGL TextureData API changes (138a5b057e39a4738a2e82f370424a9a21aceea9) | Sven Gothel | 2010-03-26 | 8 | -15/+23 |
| | |||||
* | Tweak read buffer demoAwayFromSun | Sven Gothel | 2009-10-16 | 1 | -5/+8 |
| | |||||
* | JOGLNewtAppletBase et al - no dispose event at destruction, since it's ↵ | Sven Gothel | 2009-10-12 | 4 | -8/+24 |
| | | | | critical within a browser | ||||
* | ReadBuffer: Use temp file ; Use TextureIO ; JOGL ↵ | Sven Gothel | 2009-10-11 | 3 | -8/+16 |
| | | | | 8f76db4364f66c36780e762e086a18d5cc315363 | ||||
* | JOGL changes .. | Sven Gothel | 2009-10-10 | 5 | -95/+91 |
| | |||||
* | demos.readbuffer.Main: Allow setting a boolean | Sven Gothel | 2009-10-05 | 1 | -1/+1 |
| | |||||
* | Fix ReadBuffer .. | Sven Gothel | 2009-10-05 | 3 | -5/+24 |
| | |||||
* | ReadBuffer Demos: Use NetPbmTextureWriter | Sven Gothel | 2009-10-04 | 4 | -9/+16 |
| | |||||
* | Add ReadBuffer Demos/ModuleTests; Incl. SurfaceUpdated Listener, ReadPixel ↵ | Sven Gothel | 2009-10-04 | 10 | -38/+814 |
| | | | | to file, texture - direct or via attaching the drawable to another context as it's readbuffer | ||||
* | GLNewtRun: Add parenting re-pos/re-size test; JOGLNewtAppletBase: Remove ↵ | Sven Gothel | 2009-09-29 | 3 | -5/+28 |
| | | | | GLProfile, must be used in Capabilities/Window construction phase | ||||
* | Fix generic no awt test case | Sven Gothel | 2009-09-25 | 1 | -0/+1 |
| | |||||
* | Add SWT example | Sven Gothel | 2009-09-24 | 1 | -0/+141 |
| | |||||
* | fixed EDT deadlock in redbook applet | Michael Bien | 2009-09-16 | 2 | -10/+30 |
| | |||||
* | Initial import of JOGL 2 redbook sample projects | Michael Bien | 2009-09-15 | 119 | -0/+19836 |
| | | | | | | | -project builds stand alone, all dependencies including doc are downloaded automatically -a full build will create a slideshow applet in dist/ -project can be opened with NetBeans -original credits go to Kiet Le, ported to JOGL 2 by Claudio E. Goes | ||||
* | Add tests .. | Sven Gothel | 2009-09-14 | 1 | -1/+1 |
| |