summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Use 7z instead of zipSven Gothel2011-02-232-3/+3
|
* Bump source level to 1.5Sven Gothel2011-02-091-4/+5
|
* Adapt impl namespace change jogl: 360b6716f68b44b28fd8c4f8e61ab86d5a56738bSven Gothel2011-02-096-8/+8
|
* Adapt CapabilitiesChooser.chooseCapabilities() changes of JOGL ↵Sven Gothel2011-01-312-11/+13
| | | | 8adc04788a6d9dd44de5a4636b46d14dbb70b799
* Add NEWT WindowListener.windowDestroyed() ↵Sven Gothel2010-12-238-8/+18
| | | | e7778124162aef7004e040dded5de1eaf5e1ece4
* Unique ZIP archive name ; Gears main init sequenceSven Gothel2010-12-192-13/+24
|
* jnlp: remove version attribute from extension ref, which would require the ↵Sven Gothel2010-12-1724-25/+25
| | | | server side jnlp/version protocol
* Fix joal/gears applet demoSven Gothel2010-12-163-2/+11
|
* don't read artifact.propertiesSven Gothel2010-12-152-3/+1
|
* Use jogamp version tagSven Gothel2010-12-1526-27/+27
|
* Add jnlp/html for jogl/joal demoSven Gothel2010-12-135-3/+49
|
* Update GearsJOALApplet: Depending on joal build; incl joal snippet, remove ↵Sven Gothel2010-12-1312-32/+328
| | | | joal/joal-demos jar files.
* remove HHmm from version timestampSven Gothel2010-12-131-1/+1
|
* Oops type jogl-demo -> jogl-demosSven Gothel2010-12-1310-18/+18
|
* Oops type jogl-demo -> jogl-demosSven Gothel2010-12-131-21/+21
|
* jogl-demos deployed under jogl-demos subfolderSven Gothel2010-12-1312-67/+67
|
* Add GearsApplet applet lifecycle messageSven Gothel2010-12-121-0/+10
|
* Adapt JOGL API Cleanup: 4b9ad2508ff31a03d3bc4482d812a6cbc0c5c33bSven Gothel2010-12-035-9/+10
|
* Fix context sharing demo, ie the shared context must be available ↵Sven Gothel2010-12-031-25/+15
| | | | (addNotify) before it can be retrieved.
* Add build id, branch and commit to artifacts propertiesSven Gothel2010-11-291-1/+7
|
* Adapt to JOGL 597007fc23fbf86e036629b6c6b157e0e0506715Sven Gothel2010-11-282-2/+2
|
* JNLP: Add missing newtSven Gothel2010-11-252-2/+2
|
* Add missing newt-allv2.0-rc1Sven Gothel2010-11-2414-8/+15
|
* Adapt to JOGL 7262641429b542929efc699e392f410f1dee2187Sven Gothel2010-11-2317-29/+119
|
* Add ArchiveSven Gothel2010-11-091-32/+62
|
* Accomodate JOGL changes up to ce24d32178106baa16e84f016192441ce45845a7Sven Gothel2010-10-2912-25/+25
|
* Fix/Syn with JOGL 774138544e1eec3330309ad682fa05154a07ab8d ; Notably add: ↵Sven Gothel2010-10-1482-285/+573
| | | | Applet's with native NEWT support, ie jogl-newt-applet-runner-gears.html
* syn with JOGL 018c7e8660dc0af68bd129be9af5094d04d0b431Sven Gothel2010-10-082-3/+3
|
* Merge branch 'master' of github.com:sgothel/jogl-demosSven Gothel2010-09-242-113/+90
|\
| * html cleanup.Michael Bien2010-09-032-124/+57
| | | | | | | | | | - moved links table section into sidebar + added a few links. - removed page.xml artifact from java.net
| * Fixed a couple of small glitches in the jogl-demos websiteDemoscenePassivist2010-09-042-6/+50
| |
* | Picking unsigned integer handling fix.Sven Gothel2010-09-241-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: 1c02f0eeb539ff5de7259b822893ab63a9cc3ab0Sven Gothel2010-09-2326-61/+94
|/
* Add GL 3.3, 4.0 and 4.1 info - JOGL: ca119c97340caf325cd682c5fdbe8f794a35ac0eSven Gothel2010-08-241-0/+73
|
* Simplify default value of product.build.numberSven Gothel2010-07-271-5/+1
|
* Fix: jogl-demos.build.number default/file value orderSven Gothel2010-07-261-0/+5
|
* Add jogl-demos.build.number - artifact.propertiesSven Gothel2010-07-263-3/+10
|
* Fixes against JOGL a4b16ad544f3f7872f15e52d7ada7dc1e506d333Sven Gothel2010-07-1612-32/+22
|
* Adding GLProfile.initSingleton() call, ensuring [multithreading] ↵Sven Gothel2010-06-1051-20/+197
| | | | intitialization can be done in time
* Changes according to JOGL 811bd23ed37e392abb349f850a0b1dac635d021eSven Gothel2010-05-286-6/+6
|
* Fixes for JOGL changes 6e599a2696f878786783e0fea17534e67655a5c9Sven Gothel2010-05-2115-15/+16
|
* Fix JNLPs .. vendor and urlSven Gothel2010-05-1918-377/+9
|
* www: add proper redirection to folder wwwSven Gothel2010-05-081-0/+7
|
* Fix URLsSven Gothel2010-05-0824-44/+44
|
* Fix applet-launcher URLsSven Gothel2010-05-083-6/+6
|
* Fix linksSven Gothel2010-05-081-21/+21
|
* Merge jogamp.org edited versionSven Gothel2010-05-081-1388/+1075
|
* Fix URLsSven Gothel2010-05-0513-146/+133
|
* Fix NewtFactory usageSven Gothel2010-05-057-1/+1
|
* Adaption to JOGL 1ad8c39df6b097c80ba7a85badf555e7f669cc3fSven Gothel2010-04-2420-20/+18
|