aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/com
Commit message (Expand)AuthorAgeFilesLines
* Vec[234]f: Add scale(Vec[234]f s) variant for convenienceSven Gothel2023-08-233-0/+9
* Bug 1310: Reset GLJPanel states @ dispose(..) and always reshapeImpl(..) @ ad...v2.5.0Sven Gothel2023-08-181-7/+30
* GraphUIDemoArgs: Issue GLProfile.initSingleton() once in static init block, e...Sven Gothel2023-08-131-1/+1
* Minor cleanup of imports, etc: FBObject, GLContext*, Texture, ..Sven Gothel2023-08-135-45/+30
* Texture ctor w/ external textureID: Pass `ownsTextureID` where true hands ove...Sven Gothel2023-08-131-10/+28
* Animator*: Add ctor variants passing modeBits directly, i.e. enable/disable A...Sven Gothel2023-08-133-37/+177
* Graph TextRegionUtil.drawString3D(..): Allow null `rgbaColor` w/o color-chann...Sven Gothel2023-08-121-6/+12
* GLMediaPlayer: Show more reasonable DEBUG output in factory; Impl initGL(GL) ...Sven Gothel2023-08-111-2/+20
* Graph TextRegionUtil.drawString3D(..): Redefine 'rgbaColor' semantics: Either...Sven Gothel2023-08-021-3/+24
* Graph RenderState: Initialize colorStatic w/ all white (1,1,1,1) if color-cha...Sven Gothel2023-08-021-1/+1
* Graph RegionRenderer.destroy(): Detach RenderState from GL instanceSven Gothel2023-08-021-0/+1
* Graph: Simplify RegionRenderer API by exposing common RenderState methods (an...Sven Gothel2023-08-021-16/+34
* Graph Add {GLRegion, GraphShape}.setTextureUnit(int): Allowing to set texture...Sven Gothel2023-08-011-0/+3
* Graph RegionRendered.init(..): Disable renderer (and shader programs etc) to ...Sven Gothel2023-08-011-5/+3
* Graph RenderState: Initialize colorStatic w/ alpha=1 to avoid invisible rende...Sven Gothel2023-08-011-1/+1
* Graph GLRegion.create(..): Expose variant with custom pass2TexUnit for VBAA (...Sven Gothel2023-08-011-5/+23
* Graph: Minor cleanup: TextRegionUtil: Fix API doc references; RegionRenderer....Sven Gothel2023-08-012-7/+6
* Add {GL, GLContext}.getDefaultDrawBuffer() to complement getDefaultReadBuffer()Sven Gothel2023-07-153-28/+80
* NativeSignatureJavaMethodBindingEmitter: Adopt to GlueGen changesSven Gothel2023-07-101-41/+40
* Adopt to GlueGen commit 952e0c1f83c9e0583a97d39988a6ba1428911c8cSven Gothel2023-06-163-207/+205
* 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
* Graph GLRegion: DEBUG_BUFFER (growth) 'jogl.debug.graph.curve.Buffer'Sven Gothel2023-05-051-19/+35
* Graph GLRegion.growBuffer(..): Disable debug output (static final flag)Sven Gothel2023-05-041-3/+9
* AudioSinkFactory: Add debug output in case of failed initializationSven Gothel2023-05-041-0/+2
* Graph FontFactor: Adopt to GlueGen commit 69d22df0a6132dbf8b88fd04090c0bc8112...Sven Gothel2023-05-041-1/+1
* 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
* Graph GLRegion/TextRegionUtil: Enhance pre-determination of buffer-size, incr...Sven Gothel2023-04-203-33/+93
* Graph OutlineShape.get{Outline->}VectexCount() renamedSven Gothel2023-04-201-1/+1
* GLArrayDataClient: Refine API doc for grow*() and reserve()Sven Gothel2023-04-201-2/+2
* Graph GLRegion*: Utilize interleaved GLSL buffers for vertices, curveParams a...Sven Gothel2023-04-203-68/+105
* GLArrayDataServer.addGLSLSubArray(): Return (actual) GLArrayDataWrapper inste...Sven Gothel2023-04-201-1/+1
* Graph [GL]Region: Use small initial indices/vertices count (640 -> 16), since...Sven Gothel2023-04-192-6/+9
* Graph GLRegion: Consolidate pass-1 common data (indices, vertices, ..) and al...Sven Gothel2023-04-192-14/+184
* Graph Region.addOutlineShape(): Fix DEBUG_INSTANCE path, enable perf counter ...Sven Gothel2023-04-191-0/+3
* Graph: Region.countOutlineShape(..) -> static, allow usage w/o instance; Text...Sven Gothel2023-04-193-33/+40
* Graph Font.getGlyphShapeBounds(): Use variant w/ 2 temp AffineTransform match...Sven Gothel2023-04-181-2/+5
* Graph OutlineShape.checkOverlaps(): Test overlap first to drop overlaps.conta...Sven Gothel2023-04-181-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-1815-956/+438
* Typecast Font: Add API doc for getLineHeight(), remove unused Vec3f importSven Gothel2023-04-141-2/+14
* Graph OutlineShape: Add getOutlineVectexCount(), i.e. total vertex count of a...Sven Gothel2023-04-141-0/+10
* 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-141-0/+5
* Graph Region: Add NORM_RENDERING_BIT (0) for better documented usage; Add get...Sven Gothel2023-04-141-0/+31