aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes
Commit message (Expand)AuthorAgeFilesLines
...
* StereoDevice: Don't make inner class's method private due to wrapper generati...Sven Gothel2014-07-081-1/+1
* Findbugs: Comment on some issues (OK, they are) ; Remove dead branchesSven Gothel2014-07-081-2/+2
* Findbugs: Use static fields where possibleSven Gothel2014-07-086-7/+7
* Findbugs: Use inner static class where possibleSven Gothel2014-07-0812-67/+68
* Findbugs: Misc issues (Use private accessors of static fields; Use boolean op...Sven Gothel2014-07-081-23/+23
* AnimatorBase: Use cached synchronized value instead of unsynchronized (sloppy...Sven Gothel2014-07-081-1/+1
* Findbugs: Misc minor issues (see below)Sven Gothel2014-07-087-44/+39
* Findbugs: Add comments that FB warnings are of no concern ..Sven Gothel2014-07-084-4/+4
* Findbugs: Remove dead-code / unused [temp] storage and it's assignmentSven Gothel2014-07-0816-105/+121
* Findbugs: Remove branches where reference cannot be nullSven Gothel2014-07-088-31/+34
* Findbugs: Use <NumberType>.valueOf(..) instead of 'new <NumberType>(..)'Sven Gothel2014-07-0811-44/+41
* Fix regression of commit 96d530e7127c89db9991080e6268c6e8430d0619: EGLDisplay...Sven Gothel2014-07-081-1/+1
* Findbugs: Add FIXME comment regarding float comparison (consider using FloatU...Sven Gothel2014-07-081-0/+2
* Findbugs: Use Integer.parseInt(string) for int values to avoid boxing and unb...Sven Gothel2014-07-083-6/+6
* Findbugs: Remove redundant instanceof checksSven Gothel2014-07-081-7/+8
* Findbugs.static_final_immutable: Use final qualifier for static immutable ins...Sven Gothel2014-07-086-21/+22
* GenericStereoDevice: Cast to float before operating division, requesting floa...Sven Gothel2014-07-081-3/+4
* Findbugs.increment_volatile: Use AtomicInteger or add comment that operation ...Sven Gothel2014-07-082-2/+2
* Findbugs.switch-case: GLBuffers.bytesPerPixel(..) throw GLException for type ...Sven Gothel2014-07-081-0/+3
* Findbugs.not-written.null: Fix referencing non-written fields (never written ...Sven Gothel2014-07-089-37/+52
* Findbugs.synchronization: Fix double-check w/o volatile; Remove redundant syn...Sven Gothel2014-07-081-1/+1
* Findbugs.normal: Adding safeguard hashCode() implementation throwing Internal...Sven Gothel2014-07-086-0/+25
* Findbugs.minor: Fix 'array -> string', missing argumentSven Gothel2014-07-083-4/+4
* Bug 1021: Add GenericStereoDevice* Supporting custom configurations; Hook-in ...Sven Gothel2014-07-0720-72/+1793
* Merge remote-tracking branch 'github-mark/master' (Bug 1023/Bug 1024)Sven Gothel2014-07-051-1/+1
|\
| * Attempt to remove aliasing from native libraries.Mark Raynsford2014-06-301-1/+1
* | Fix FloatUtil.makePerspective(..): The tan(fovy/2) shall be used, not tan(fov...Sven Gothel2014-07-054-64/+64
* | Bug 1021: Make OVR access vendor agnostic: Package 'com.jogamp.opengl.util.st...Sven Gothel2014-07-0511-10/+809
* | Code Clean-Up based on our Recommended Settings (jogamp-scripting c47bc86ae2e...Sven Gothel2014-07-03488-9585/+9607
* | FloatUtil.makePick(..): Refine API doc, incl. PMVMatrix.gluPickMatrix(..)Sven Gothel2014-07-032-17/+26
* | Bug 1021: Refine Stereo Rendering API and OculusVR implementing rendererSven Gothel2014-07-037-41/+402
* | Bug 1021: Add OculusVR distortion renderer (single FBO and dual FBO); Add GLE...Sven Gothel2014-07-014-37/+154
* | Fix 'typo' in messages: 'Catched' -> 'Caught'Sven Gothel2014-06-2818-32/+32
* | WIP: Add Matrix4 OO wraper for FloatUtil matrix operationsSven Gothel2014-06-281-0/+151
* | Enhance FloatUtil: More optimizations, concludes commit 0bded476868c5fdfe4450...Sven Gothel2014-06-284-577/+563
* | Enhance FloatUtil: Merge ProjectFloat features while adding optimized variati...Sven Gothel2014-06-2710-1039/+1900
* | GLU: Make ProjectFloat/ProjectDouble final and deprecate GLU.destroy() method.Sven Gothel2014-06-271-1/+0
|/
* Adapt to GlueGen commit c3054a01990e55ab35756ea23ab7d7c05f24dd37 (compount ca...Sven Gothel2014-06-171-1/+1
* Fix Bug 826 Regression caused by commit 41190c3830157abdf9649cbf7767e57108f55...Sven Gothel2014-06-131-23/+34
* Fix Bug 1019 - Remedy of Bug 691 causes 'access/modify after free' and crashe...Sven Gothel2014-06-121-2/+2
* Graph RegionRenderer: Fix GL3 and ES3 GLSL issuesSven Gothel2014-06-112-20/+32
* Graph: Fix GLSL issue w/ ES3, add 'const float sample_count', since define SA...Sven Gothel2014-06-113-5/+7
* Bug 1011 / Bug 1012: GLMediaPlayer Audio/Video stuttering w/ OSX and OpenAL/J...Sven Gothel2014-06-113-6/+50
* GLMediaPlayer: Fix video stutter if using NullAudioSinkSven Gothel2014-06-094-9/+72
* GraphUI: Fix using multiple texture units w/ opt. colorTexUnit in GLRegionSven Gothel2014-06-093-16/+7
* Bug 741 HiDPI: Add ScalableSurface.getNativeSurfaceScale(..) to compute surfa...Sven Gothel2014-06-092-12/+26
* Bug 741 HiDPI: Simplify ScalableSurface (2): Add request pixelScale API entry...Sven Gothel2014-06-082-15/+19
* Bug 741 HiDPI: Simplify ScalableSurface [set|get]SurfaceScale(..) spec, which...Sven Gothel2014-06-082-13/+16
* Bug 741 HiDPI: Add ScalableSurface interface to get/set pixelScale w/ full OS...Sven Gothel2014-06-082-62/+144
* UpstreamSurfaceHook: Add 'NativeSurface getUpstreamSurface()' (from EGLUpstre...Sven Gothel2014-06-083-7/+21