aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* FloatUtil.abs(a): Mark as deprecated, use Math.abs(a) directly. We assume it ...Sven Gothel2023-09-046-15/+22
* GraphUI Margin, Alignment: Reuse ctor for default-ctorSven Gothel2023-09-042-2/+2
* GraphUI: Button/Label: Complete String -> CharSequence type change for text, ...Sven Gothel2023-09-0410-24/+17
* GraphUI GraphShape: Split renderModes -> final renderModesReq + mutable rende...Sven Gothel2023-09-041-2/+26
* GraphUI Enhance: API doc; Scene/Button Z-offset and -epsilon; Push temp Affin...Sven Gothel2023-09-049-54/+243
* GraphUI Button: Add label bounds to own shape (adds used z-range)Sven Gothel2023-09-031-0/+2
* GraphUI Scene: Expose Z-Epsilon API for default and current PMVMatrixSetup va...Sven Gothel2023-09-032-6/+53
* GraphUI Shape.ZAscendingComparator: Use (faster) FloatUtil.isEqual2(a,b) and ...Sven Gothel2023-09-031-3/+10
* GraphUI Shape: Enhance API doc for colorsSven Gothel2023-09-031-6/+35
* FloatUtil.isEqual(..): Rename raw {isEqual->isEqualRaw}(a,b) varianr w/o EPSI...Sven Gothel2023-09-0311-59/+121
* GraphUI Scene: Generalize its interface PMVMatrixSetup and usage of its Defau...Sven Gothel2023-09-0310-229/+188
* GraphUI Scene: Pass sampleCount in ctor variant and refine API doc, clip to [...Sven Gothel2023-09-0313-31/+84
* GraphUI Demos: Proper use of CommandlineOptionsSven Gothel2023-09-024-34/+18
* Demos: CommandlineOptions: Add total_duration command line option '-duration ...Sven Gothel2023-09-021-14/+19
* PMVMatrix.gluPerspective(): Redfine angle in radians instead of degrees ** AP...Sven Gothel2023-09-0219-32/+53
* Graph Font + Glyph: Fix whitespace definition: Include 'no original underlyin...Sven Gothel2023-09-012-20/+26
* GraphUI Demo: Rename UISceneDemoU01a -> UIGraphDemoU01a, not using GraphUI's ...Sven Gothel2023-09-011-4/+24
* GraphUI Demo FontView01: Fix '-showUnderline', i.e. glyphListener shall use t...Sven Gothel2023-08-281-1/+1
* GraphUI Demo FontView01: Enhance usability and refactor: Add left-column glyp...Sven Gothel2023-08-281-78/+206
* Graph Font: Make TypecastRenderer.DEBUG package private to be used by Typecas...Sven Gothel2023-08-281-1/+1
* GraphUI Shape: Show dirty-state in getSubString()Sven Gothel2023-08-281-1/+13
* Graph Font + Glyph: More robust detetection and API definition of non-contour...Sven Gothel2023-08-289-71/+178
* Graph Loop: Make initFromPolyline() and locateClosestVertex() more robust, re...Sven Gothel2023-08-284-12/+34
* UISceneDemo03: Detail demo description, add blog entrySven Gothel2023-08-271-3/+7
* GraphUI Demo: UISceneDemo03: Add optional audio (only) via '-audio <URL or fi...Sven Gothel2023-08-271-4/+108
* GraphUI: Button: Reduce default DEFAULT_LABEL_ZOFFSET from 0.005f -> 0.0001f,...Sven Gothel2023-08-271-1/+1
* GraphUI: Extract generalized AnimGroup functionality from UISceneDemo03*, pro...Sven Gothel2023-08-277-781/+1336
* Add TestVec3f01NOUI: This test shall be enhanced, only priliminary angle test...Sven Gothel2023-08-271-0/+137
* AABBox: Fix intersects2DRegion(..), add resize{Height, Width}(..) and AABBox ...Sven Gothel2023-08-271-4/+57
* Vec3f: Add UNIX_X and UNIX_X_NEG, enhance API docSven Gothel2023-08-271-2/+4
* Quaternion: Add rotateByAngleNormalAxis(..) variant using Vec3f axisSven Gothel2023-08-271-1/+18
* GraphUI: Use thread-save and lock-free CopyOnWriteArrayList for List<Shape>, ...Sven Gothel2023-08-272-4/+4
* AABBox: Add set(AABBox)Sven Gothel2023-08-251-0/+13
* GraphUI: Shape: Add runSynced(Runnable); Add setPMVMatrix(..) to setup comple...Sven Gothel2023-08-251-39/+100
* GraphUI: Group API doc + remove GlyphShape's redundant many getOrigPos() vari...Sven Gothel2023-08-252-40/+7
* Vec[234]f: Add scale(Vec[234]f s) variant for convenienceSven Gothel2023-08-233-0/+9
* TestSWTAccessor02NewtGLWindow: Use lambda for SWTAccessor.invokeOnOSTKThread(..)Sven Gothel2023-08-231-4/+5
* Demos: Use Runnable lambda for window.destroy() off-thread and use key-symbol...Sven Gothel2023-08-2310-57/+37
* UISceneDemo03b: Add a little more customization ..Sven Gothel2023-08-191-6/+23
* Bug 1310: Reset GLJPanel states @ dispose(..) and always reshapeImpl(..) @ ad...v2.5.0Sven Gothel2023-08-181-7/+30
* Bug 1310: Detect missing glViewport(..) on Windows before GLEventListener.res...Sven Gothel2023-08-181-2/+24
* Demos: ..demos.graph.ui.util.GraphUIDemoArgs -> ..demos.util.CommandlineOptionsSven Gothel2023-08-1316-34/+33
* GraphUIDemoArgs: Issue GLProfile.initSingleton() once in static init block, e...Sven Gothel2023-08-132-1/+5
* UISceneDemo20: Fix info/debug text title GPUUISceneGLListener0A -> UISceneDemo20Sven Gothel2023-08-131-7/+8
* Minor cleanup of imports, etc: FBObject, GLContext*, Texture, ..Sven Gothel2023-08-137-58/+36
* Texture ctor w/ external textureID: Pass `ownsTextureID` where true hands ove...Sven Gothel2023-08-133-17/+48
* GraphUIDemoArgs: Add GL4 coreSven Gothel2023-08-131-0/+2
* Demos: Add main() to GearsES2, .. allowing to be used for simple bringup testsSven Gothel2023-08-133-12/+166
* Animator*: Add ctor variants passing modeBits directly, i.e. enable/disable A...Sven Gothel2023-08-1369-741/+941
* FontViewListener01/TestTextRendererNEWT21: Use 30 pixelPerCell (total w/ gap)...Sven Gothel2023-08-121-10/+21