aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/com/jogamp/opengl
Commit message (Expand)AuthorAgeFilesLines
* Fix FloatUtil.makePerspective(..): The tan(fovy/2) shall be used, not tan(fov...Sven Gothel2014-07-053-61/+56
* Bug 1021: Make OVR access vendor agnostic: Package 'com.jogamp.opengl.util.st...Sven Gothel2014-07-059-9/+782
* Code Clean-Up based on our Recommended Settings (jogamp-scripting c47bc86ae2e...Sven Gothel2014-07-0385-2804/+2816
* 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-25/+460
* Bug 1021: Add OculusVR distortion renderer (single FBO and dual FBO); Add GLE...Sven Gothel2014-07-013-37/+80
* Fix 'typo' in messages: 'Catched' -> 'Caught'Sven Gothel2014-06-284-5/+5
* WIP: Add Matrix4 OO wraper for FloatUtil matrix operationsSven Gothel2014-06-281-0/+151
* Enhance FloatUtil: More optimizations, concludes commit 0bded476868c5fdfe4450...Sven Gothel2014-06-283-574/+560
* Enhance FloatUtil: Merge ProjectFloat features while adding optimized variati...Sven Gothel2014-06-276-481/+1691
* GLU: Make ProjectFloat/ProjectDouble final and deprecate GLU.destroy() method.Sven Gothel2014-06-271-1/+0
* GLMediaPlayer: Fix video stutter if using NullAudioSinkSven Gothel2014-06-091-0/+6
* UpstreamSurfaceHook: Add 'NativeSurface getUpstreamSurface()' (from EGLUpstre...Sven Gothel2014-06-081-0/+11
* Bug 1010 - Fix ES3.glPixelStorei and revalidate GLPixelStorageModesSven Gothel2014-05-264-84/+193
* Bug 1009: Make FBObject's sampling sink format compatible w/ sampling source ...Sven Gothel2014-05-261-17/+97
* Bug 742 HiDPI: [Core API Change] Distinguish window-units and pixel-units: Re...Sven Gothel2014-05-222-3/+19
* Bug 742 HiDPI: [Core API Change] Distinguish window-units and pixel-units; Ad...Sven Gothel2014-05-215-24/+24
* Bug 801: Refine commit 9a15aad0e5388a4b927e44d3d2ce136f32474bc2 cache Texture...Sven Gothel2014-05-202-1/+34
* Bug 801: Split GraphUI's TextureButton: TextureSeqButton (Base) and it's deri...Sven Gothel2014-05-191-0/+176
* Texture/TextureIO: Make 'wrapping' Texture ctor public, remove same factory m...Sven Gothel2014-05-192-45/+33
* VectorUtil: Fix method names, i.e. use type-suffix in end of function for cla...Sven Gothel2014-04-093-73/+73
* Fix ShaderCode.insertShaderSource(..): Return 'position' if nothing has been ...Sven Gothel2014-04-091-7/+7
* Add TextureSequence.isTextureAvailable(), allowing triggering action only whe...Sven Gothel2014-04-091-0/+6
* Add AABBox.getRayIntersection(..), VectorUtil.line2PlaneIntersection(..) incl...Sven Gothel2014-04-094-2/+319
* Fix Quaternion.rotateByEuler(..): Zero rotation shall lead to NOP instead of ...Sven Gothel2014-04-091-2/+2
* Bug 801: Cleanup shader-program location/data update ; Add COLORTEXTURE + Tex...Sven Gothel2014-04-041-2/+2
* Bug 801: Reduce temp. object creation, i.e. GC loadSven Gothel2014-04-021-11/+30
* Bug 801: WIP 2/2 - Add color attribute; Switch Shader instead of branching in...Sven Gothel2014-04-024-82/+181
* Merge branch 'master' into graph-wipSven Gothel2014-04-011-1/+0
|\
| * X11/WGL GLContext Impl: setGLFunctionAvailability(..) w/ withinGLVersionsMapp...Sven Gothel2014-04-011-1/+0
* | Bug 801: WIP 1/2 - Add color attribute; Switch Shader instead of branching in...Sven Gothel2014-04-013-29/+196
|/
* Demos MovieCube/Simple: Update video URLs .. since download.blender.org seems...Sven Gothel2014-03-261-0/+1
* Bug 801: Graph OpenGL ES2 and ES3 CompatibilitySven Gothel2014-03-251-0/+1
* ShaderCode: Allow 'srcRoot' to be optional ; RegionRendererImpl01: Allos cust...Sven Gothel2014-03-251-7/+13
* Bug 801: Revise Graph VBAA (Add border dropping MSAA; Test diff. AA modes inc...Sven Gothel2014-03-222-14/+86
* GLRendererQuirks.NoMultiSamplingBuffers: Prelim detection of this quirk due t...Sven Gothel2014-03-191-2/+27
* AABBox: Add rotate(..)Sven Gothel2014-03-171-22/+75
* Quaternion: Add rotateByEuler(..); AABBox: Add translate(..); Minor edits ..Sven Gothel2014-03-174-36/+110
* Add generic support for picking via raycast intersection and AABBox (or similar)Sven Gothel2014-03-164-23/+190
* FloatUtil/VectorUtil: Enhance isEqual/compare w/ and w/o epsilon, add unit te...Sven Gothel2014-03-154-182/+258
* Quaternion: User EPSILON for all tests against zero and one (identity .. ) an...Sven Gothel2014-03-153-41/+138
* Bug 801: Remove Vertex.Factory from AffineTransform ; Add AABBox tranformed r...Sven Gothel2014-03-151-15/+57
* Bug 801: Outline/OutlineShape tranform and sort fixes ; Quaternion: Reduce mu...Sven Gothel2014-03-151-12/+25
* PMVMatrix.glLoadMatrix(Quaternion): Load Quaternion's directly w/o intermedia...Sven Gothel2014-03-141-2/+15
* Quaternion: Fix and enhance class incl. Extensive Unit Tests (all passed)Sven Gothel2014-03-142-232/+968
* Math and PMVMatrix: Cleanup and RefineSven Gothel2014-03-144-257/+491
* Bug 801: AffineTransform: Remove Serializable, make methods final; FloatUtil:...Sven Gothel2014-03-063-14/+48
* Bug 801: Fix 183e1bc1868699b99eb9f9c8bf18d646d1120a48 'window box' CalculationSven Gothel2014-03-051-0/+48
* Bug 801: VectorUtil: Pass result vector, allowing caller to manage memory (pe...Sven Gothel2014-03-053-108/+96
* Bug 801: Add MSAA_RENDERING_BIT ; VBAA: Uses GL_NEAREST (good result) ; Demos...Sven Gothel2014-03-021-2/+2