aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/jogamp/graph
Commit message (Expand)AuthorAgeFilesLines
...
* Graph CDTriangulator2D: Drop invalid innerPoly, avoiding Loop.initFromPolylin...Sven Gothel2023-05-051-2/+30
* Graph OutlineShape.get{Outline->}VectexCount() renamedSven Gothel2023-04-201-1/+1
* Graph GLRegion*: Utilize interleaved GLSL buffers for vertices, curveParams a...Sven Gothel2023-04-203-104/+14
* Graph VBORegion2P*.renderVBO(): Add comment on BITHINT_GLOBAL_DEPTH_TEST_ENAB...Sven Gothel2023-04-192-0/+9
* Graph GLRegion: Consolidate pass-1 common data (indices, vertices, ..) and al...Sven Gothel2023-04-193-462/+2
* Graph Font.getGlyphShapeBounds(): Use variant w/ 2 temp AffineTransform match...Sven Gothel2023-04-181-4/+5
* Graph + GraphUI: Consolidate Vertex: Drop SVertex and factory, use Vec[234]f ...Sven Gothel2023-04-189-108/+118
* Typecast Font.getGlyph(..): Fix Glyph case w/ 0 getOutlineVectexCount() -> is...Sven Gothel2023-04-141-4/+14
* Typecast Font.Glyph: Expose isUndefined(), i.e. name == ".notdef"Sven Gothel2023-04-141-0/+3
* Typecast: Expose (new) getGlyphCount(): GlyfTable.getSize() -> (OTFont,Font)....Sven Gothel2023-04-144-1/+13
* Typecast GlyfTable: Use `final` qualifier (cleanup)Sven Gothel2023-04-141-14/+14
* Graph TypecastFont: Avoid PostTable (out-of-bounds) for glyph_name when not e...Sven Gothel2023-04-141-3/+7
* Matrix4f.mapWin*(): Drop unused temp matrices, map*() returns false on invPMv...Sven Gothel2023-04-092-6/+2
* VBORegion2P*ES2: Just instantiate SyncMatrices4f16 in place, drop local refSven Gothel2023-04-072-5/+2
* PMVMatrix rewrite using Matrix4f, providing SyncMatrix4f* for GLUniformData; ...Sven Gothel2023-04-072-38/+33
* Math: Complete Matrix4f w/ Vec[234]f and adopt it throughout Quaternion, Ray,...Sven Gothel2023-04-053-8/+8
* Graph Shader: Complete the USE_DISCARD logic avoiding output set after discar...Sven Gothel2023-03-3012-36/+67
* Graph GLSL: Enable 'discard' in fragment shader w/o GLRendererQuirks.GLSLBugg...Sven Gothel2023-03-3013-50/+53
* Graph Font: TypecastFont: getGlyphBoundsFU() + processString(): If isWhitespa...Sven Gothel2023-03-281-4/+6
* Graph Font.GlyphVisitor*: Pass 'char symbol' to visitor, passing full text-pr...Sven Gothel2023-03-281-5/+3
* Graph Font.Glyph: Add getFont() (the owner)Sven Gothel2023-03-281-0/+5
* Graph Font: Rename getBBox*() -> getBounds*() to preserve a common semantic nameSven Gothel2023-03-273-8/+8
* Graph: Fix Font.getGlyphBoundsFU(): FU of advance is requested here.Sven Gothel2023-03-271-1/+1
* Graph Font Processing: Use Font.GlyphVisitor instead of OutlineShape.Visitor,...Sven Gothel2023-03-221-9/+15
* Graph Font Processing: Produce a 'whitespace' Glyph w/ an OutlineShape (box) ...Sven Gothel2023-03-223-5/+76
* Graph: Cleanup Vertex.Factory referencing: Only bind to OutlineShape and use ...Sven Gothel2023-03-211-11/+8
* Graph: GLRegion: Pass curRenderModes to updateImpl() + drawImpl(), prepare sw...Sven Gothel2023-03-193-65/+100
* Fix ShaderProgram ownership bug, introduced in commit 67a723477ecd818fbc5859f...Sven Gothel2023-03-153-35/+9
* Graph: Have RegionRenderer.reshapeNotify(..) track x/y as well (vieport); Gra...Sven Gothel2023-03-141-3/+6
* GLRegion + RegionRenderer: Add clearShader(..) to delete all ShaderPrograms a...Sven Gothel2023-03-133-5/+32
* Graph: Font: Add equals() + hash() API doc; GraphUI's Label*.setText(): Only ...Sven Gothel2023-03-081-2/+1
* Graph Perf: Add Region.countOutlineShape(), Font.processString(Visitor2,..), ...Sven Gothel2023-03-071-5/+18
* Graph Perf: Font*: Remove PerfCounterCtrl since the Region counter is more th...Sven Gothel2023-03-071-76/+1
* Graph Perf: Region*: Add setBufferCapacity(..) and cut-off growBuffer() early...Sven Gothel2023-03-073-123/+203
* Graph Perf: Region: split addOutlineShape() -> addOutlineShape0() (fast) and ...Sven Gothel2023-03-073-3/+3
* Graph Perf: Region*: Rely on growBuffer(..) per addOutlineShape() and known b...Sven Gothel2023-03-073-50/+62
* Graph: Bring back passing through temp AffineTransform instances (optional, b...Sven Gothel2023-03-071-4/+9
* Graph Perf Counter: Use GlueGen's Clock.currentNanos() to ease on performance...Sven Gothel2023-03-071-13/+9
* Graph: Use PerfCounterCtrl interface and Instant/Duration & Clock.getMonotoni...Sven Gothel2023-03-061-38/+55
* Graph: Font: Add perf counter (w/ API)Sven Gothel2023-03-061-2/+70
* Graph: Region: Add perf counter (w/ API); Utilize put[34][sif](..); Fix indic...Sven Gothel2023-03-063-85/+169
* Graph Region: Fix printBufferStats(..) overrideSven Gothel2023-02-243-3/+3
* Graph Region: Address overflow issue using GL2ES3 integer indices (WIP...); E...Sven Gothel2023-02-243-16/+128
* GLArrayData*: Shorten methods (*API Change*), use proper constructor and fina...Sven Gothel2023-02-243-35/+25
* Graph Font: Fix TypecastRenderer TTF corner-case: Prefer initial segment's mo...Sven Gothel2023-02-231-36/+68
* Graph TypecastFont: Add hashCode() and equals(), feed TypecastGlyph w/ LeftSi...Sven Gothel2023-02-191-3/+20
* Graph Font.Glyph: Cleanup: Remove Font and getScale() from interface (redunda...Sven Gothel2023-02-191-76/+43
* Graph Font: Add more DEBUG info ..Sven Gothel2023-02-191-3/+32
* Graph Font: Simplify CmapFormat selection (cmap symbol -> glyph-idx), just us...Sven Gothel2023-02-191-51/+24
* Graph Font: Add 'name' to Glyph; Drop erroneous Glyph ID_SPACE, ID_CR manual ...Sven Gothel2023-02-192-50/+40