aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/com/jogamp/opengl
Commit message (Expand)AuthorAgeFilesLines
* Use DPI scaling to scale drawn fonts.Glenn Burkhardt2023-06-041-1/+14
* GLMediaPlayer: Add setAudioChannelLimit(..), correlating with AudioSink.setCh...Sven Gothel2023-05-231-0/+15
* Common av classes (*AudioSink, ..) are promoted to gluegen (commit 270172bcbd...Sven Gothel2023-05-175-590/+3
* HiDPI: Revise AWT GLCanvas/GLJPanel ScalableSurface: No setSurfaceScale(), ha...Sven Gothel2023-05-152-116/+118
* GLMediaPlayer: Replace GLMediaEventListener.EVENT_CHANGE_* 'int event_mask' w...Sven Gothel2023-05-091-39/+112
* AudioSinkFactory: Add debug output in case of failed initializationSven Gothel2023-05-041-0/+2
* AABBox: Add 'translate' w/ dedicated componentsSven Gothel2023-04-281-0/+15
* [PMV]Matrix[4f]: Clarify 'mulVec[34]f' in-place arg properties, add pure in-p...Sven Gothel2023-04-282-16/+113
* Vec[234]f: Add 'max' and 'min' functionSven Gothel2023-04-283-0/+45
* GLArrayDataClient: Refine API doc for grow*() and reserve()Sven Gothel2023-04-201-2/+2
* GLArrayDataServer.addGLSLSubArray(): Return (actual) GLArrayDataWrapper inste...Sven Gothel2023-04-201-1/+1
* VectorUtil: Fix isVec3InTriangle3(..) testing p1, p2 and p3Sven Gothel2023-04-181-12/+8
* Graph + GraphUI: Consolidate Vertex: Drop SVertex and factory, use Vec[234]f ...Sven Gothel2023-04-186-592/+199
* Graph/Math: Cleanup toString(), spacing and use System.lineSeparator()Sven Gothel2023-04-124-27/+21
* Matrix4f.mapWin*(): Drop unused temp matrices, map*() returns false on invPMv...Sven Gothel2023-04-092-335/+603
* PMVMatrix: Expose temporary storage (w/o side-effects) for efficiency; GraphU...Sven Gothel2023-04-081-1/+42
* PMVMatrix API doc: Use `` to quote code since {@code } causes block-quoting w...Sven Gothel2023-04-081-5/+5
* PMVMatrix rewrite using Matrix4f, providing SyncMatrix4f* for GLUniformData; ...Sven Gothel2023-04-0718-1403/+1513
* Matrix4f Perf: Enhance invert(), Drop (test) load on Matrix4f.mul(Matrix4f) f...Sven Gothel2023-04-052-89/+177
* AABBOX: Revert API doc copy/type errors from commit 15e60161787224e85172685f7...Sven Gothel2023-04-051-7/+7
* Math: Complete Matrix4f w/ Vec[234]f and adopt it throughout Quaternion, Ray,...Sven Gothel2023-04-0518-857/+3194
* Vec2f, Vec3f: Return this @ set(..), add set(float[]) and add(float, ..)Sven Gothel2023-03-302-22/+60
* Quaternion: Shorten toString() type nameSven Gothel2023-03-271-1/+2
* Add Vec2f and Vec3f, to support a more simple OO vector-math usage, e.g. for ...Sven Gothel2023-03-222-0/+528
* Graph Font Processing: Use Font.GlyphVisitor instead of OutlineShape.Visitor,...Sven Gothel2023-03-221-0/+10
* GraphUI UISceneDemo*: Use lambdas for GLAutoDrawable.invoke(..) to reduce LOCSven Gothel2023-03-211-0/+7
* GLArrayDataClient: Allow null buffer @ growIfNeeded(), removed from commit 90...Sven Gothel2023-03-201-20/+1
* GLOffscreenAutoDrawable: Remove unused importSven Gothel2023-03-201-2/+0
* Add FloatUtil.isZero(float) using FloatUtil.EPSILONSven Gothel2023-03-201-0/+8
* API doc cleanup, add + refine math testsSven Gothel2023-03-197-17/+35
* ShaderProgram field programLinked: Set to false @ release()/destroy(), On use...Sven Gothel2023-03-151-1/+5
* opengl/util/glsl/Shader*: Mark classes and fields final, rename dump{Shader->...Sven Gothel2023-03-154-22/+41
* AABBox: Add API doc comment on reset() and hence default ctor regarding infin...Sven Gothel2023-03-141-3/+10
* TextureSequence (API Change): Use setTextureLookupFunctionName(..) explicitly...Sven Gothel2023-03-142-16/+46
* GLMediaPlayer: Overhaul and simplify states, allow usage before stream ready ...Sven Gothel2023-03-131-17/+28
* Merge pull request #110 from gbburkhardt/masterGöthel Software2023-03-081-1/+7
|\
| * Fix for AWT GLCcanvas DPI scaling. Forum thread https://forum.jogamp.org/DPI...Glenn Burkhardt2023-03-061-1/+7
* | Rename NonFSAAGLCapabilitiesChooser -> NonFSAAGLCapsChooser (too long)Sven Gothel2023-03-081-3/+3
* | Apply NonFSAAGLCapabilitiesChooser in NEWTGLContext (tests only). TODO: Consi...Sven Gothel2023-03-081-3/+14
* | Graph GPUUISceneNewtDemo: Filter out all FSAA (multisample) caps if undesired...Sven Gothel2023-03-081-0/+73
* | GLArrayData: Fix API doc typo in sealed()Sven Gothel2023-03-071-1/+1
* | GLArrayData: Promote sealed() from GLArrayDataEditable, to correctly being us...Sven Gothel2023-03-075-119/+286
|/
* GLArrayData: year-rangeSven Gothel2023-03-061-1/+1
* GLArrayData*: Minor edits: API doc, space and year-rangeSven Gothel2023-03-063-5/+5
* GLArrayDataEditable: Clarify API doc on clear*(..) and rewind()Sven Gothel2023-03-061-2/+54
* GLArrayDataClient: Minor toString() and DEBUG output fixesSven Gothel2023-03-061-3/+3
* GLArrayData[Editable,Client]: Add put[34][bsif](..) and array put[bsif](..) v...Sven Gothel2023-03-062-0/+101
* GLDrawableFactory: Fix typos and mention 'surfaceless' in createDummyDrawable...Sven Gothel2023-03-041-3/+3
* GLProfile::initProfilesForDeviceCritical(): initLock.addOwner(t) only if t is...Sven Gothel2023-03-041-8/+21
* GLProfile.isValidArrayDataType() add missing accepted types for ES3/GL3+ but ...Sven Gothel2023-03-022-24/+74