aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/com/jogamp/opengl
Commit message (Expand)AuthorAgeFilesLines
* 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
* GLArrayData*: Expose reserve() for total elementCount and growIfNeeded() for ...Sven Gothel2023-02-242-37/+69
* GLArrayData*: Shorten methods (*API Change*), use proper constructor and fina...Sven Gothel2023-02-245-213/+247
* Rename VectorUtil.ccw(..) -> isCCW(..)Sven Gothel2023-02-171-2/+3
* Merge pull request #109 from david-hall/masterSven Gothel2023-02-171-0/+1
|\
| * Add GL_DEBUG_SEVERITY_NOTIFICATION to getDbgSeverityString()David Hall2023-02-131-0/+1
* | Graph: Fix Loop.initFromPolyline()'s Winding determination, document Winding ...Sven Gothel2023-02-171-7/+23
|/
* Graph Type Rendering: Drop pixelSize and use font em-size [0..1] throughout s...Sven Gothel2023-02-131-1/+20
* Graph: Path2D -> self-contained Path2D (w/ Iterator) fixed; OutlineShape: Add...Sven Gothel2023-02-061-10/+2
* Graph: Complete move jogamp.graph.plane to public com.jogamp.graph.planeSven Gothel2023-02-041-2/+1
* Fix GLProfile GL2 Mapping: Only use GL3bc is available, add additional GLCont...Sven Gothel2023-01-151-1/+11
* Replace AccessController.doPrivileged() w/ SecurityUtil.doPrivileged()Sven Gothel2023-01-142-4/+4