Skip to content
Unstable

Changes

Summary

  1. Cleanup nonuniform impl(method params and comments) (details)
  2. Merging OutlineShape.VerticesState enum type (John Pritchard (details)
  3. Graph: More std. functionality (equals, clone) / Better in-place (details)
  4. GlyphShape: Use switch block for PathIterator - adding default (details)
  5. Graph: more clone() cleanup. (details)
  6. Graph / Text: Use CharSequence as char/string interface to text (details)
  7. Graph: GLSL fix, Adding renderModes bits instead of dedicated booleans, (details)
  8. Graph: OutlineShape fix, cleanup (details)
  9. Graph: RenderState (interface -> abstract) missing commit of (details)
  10. Graph/Font: use StringBuilder (details)
  11. Graph/JOGL: Avoid NPE (details)
  12. JOGL/ShaderCode: Dump proper GLSL source w/ line numbers if GLSLCode (details)
  13. Graph VBORegion*: Lazy GL alloc of resources at update(GL, ..) not (details)
  14. Graph/GLyph*: Add static factory method for non Renderer creation, (details)
  15. Graph: whitespace .. (details)
  16. TypecastRenderer: Avoid -y direction and later y-flipping / FIXME: math (details)
  17. Graph/Tests: Adapt to latest commits .. (details)
  18. Graph/UI-Demo: Use RegionRenderer for region and text, start data/gl (details)
  19. Graph/UI-Demo: Use RegionRenderer for region and text, start data/gl (details)
  20. Loop: Fix invert; GlyphString/createRegion: Remove unnecessary (details)
  21. Fix: glyph outline orientation with the removal of inversion (details)
  22. Graph/Loop: More readable/verbose invert case; using Winding enum; ttf (details)
  23. Graph: getWinding(ArrayList<Vertex> vertices) test; minor renaming (details)
  24. Graph: Add comments 'n questions (FIXME?) (details)
  25. build: Query git branch/sha1 and use it if not set and tools are (details)
  26. Fix ShaderState useProgram() case: on && program not linked (yet) (details)
  27. JUnit Tests: Extract utility of creating a NEWT Window w/ GLContext w/o (details)
  28. JUnit Test: Add 'ruler' testcase using monitor mode's mm/pixel size. (details)
  29. GLSL UnitTest: Reloc Ruler and make local fields final (details)
  30. ShaderProgram: useProgram(..) -> public (details)
  31. Fix: GLSLArrayHandler (data has no location); Fix ShaderState (switch (details)
  32. JOGL/GLDebug/GLTrace: Gluegen/BuildComposablePipeline: print arguments (details)
  33. Fix/Extend FBObject (API Change): plain init(GL), support multiple (details)
  34. FIX graph FBObject usage - 526ea7a3fb579f88a0c0a1e597387aae29d5aa06 (details)
  35. GLSL unit tests: cleanup shader state tests (details)
Commit 21b13e0fccf48a2396cbffb611345f02a9117bdc by Rami Santina
Cleanup nonuniform impl(method params and comments)
The file was modifiedsrc/jogl/classes/com/jogamp/graph/curve/opengl/RegionRenderer.java (diff)
The file was modifiedsrc/jogl/classes/jogamp/graph/curve/opengl/RegionRendererImpl01.java (diff)
The file was modifiedsrc/jogl/classes/com/jogamp/graph/curve/opengl/Renderer.java (diff)
Commit 59aa8737528743b83cf56b804c9d713bc325c97c by Sven Gothel
Merging OutlineShape.VerticesState enum type (John Pritchard <jdp@syntelos.org> https://github.com/syntelos/jogl/commit/05a7ec92d30e1e688b1eb7cc317cad83a0e8fd60#L0R59)
The file was modifiedsrc/jogl/classes/com/jogamp/graph/curve/OutlineShape.java (diff)
The file was modifiedsrc/jogl/classes/com/jogamp/graph/curve/opengl/RegionRenderer.java (diff)
The file was modifiedmake/scripts/tests.sh (diff)
The file was modifiedsrc/jogl/classes/jogamp/graph/curve/text/GlyphShape.java (diff)
Commit d75835796900cac602f7e5789601ffba0a27efe2 by Sven Gothel
Graph: More std. functionality (equals, clone) / Better in-place transformation (cubic -> quadratic)

Impl. more of John Pritchard <jdp@syntelos.org> proposal
  https://github.com/syntelos/jogl/commit/05a7ec92d30e1e688b1eb7cc317cad83a0e8fd60

+++

More std. functionality (equals, deep clone) of AABBox, Vertex, Outline and OutlineShape.

Simplify Vertex:
  - Remove 2 component constructor
  - Add on-curve in Vertex.Factory / Constructor
  - Adding equals(Object)
  - Remove Comparable/compareTo, since we only can make an equals statement

Outline/OutlineShape: Handle dirty flag for boundary (new set/remove operation)

OutlineShape: Better in-place transformation (cubic -> quadratic)
The file was modifiedsrc/jogl/classes/jogamp/graph/curve/text/GlyphShape.java (diff)
The file was modifiedsrc/jogl/classes/jogamp/graph/geom/plane/AffineTransform.java (diff)
The file was modifiedsrc/jogl/classes/com/jogamp/graph/curve/OutlineShape.java (diff)
The file was modifiedsrc/jogl/classes/jogamp/graph/geom/plane/Path2D.java (diff)
The file was modifiedsrc/jogl/classes/com/jogamp/graph/geom/AABBox.java (diff)
The file was modifiedsrc/jogl/classes/com/jogamp/graph/geom/Vertex.java (diff)
The file was modifiedsrc/jogl/classes/com/jogamp/graph/geom/opengl/SVertex.java (diff)
The file was modifiedsrc/jogl/classes/com/jogamp/graph/geom/Outline.java (diff)
The file was modifiedsrc/jogl/classes/com/jogamp/graph/math/VectorUtil.java (diff)
Commit 2570c1bee6dd8b33ac2e92b533e32b69b02a2cfc by Sven Gothel
GlyphShape: Use switch block for PathIterator - adding default (exception)

Implements more of John Pritchard <jdp@syntelos.org> proposal
      https://github.com/syntelos/jogl/commit/05a7ec92d30e1e688b1eb7cc317cad83a0e8fd60
The file was modifiedsrc/jogl/classes/jogamp/graph/geom/plane/Path2D.java (diff)
The file was modifiedsrc/jogl/classes/jogamp/graph/math/plane/Crossing.java (diff)
The file was modifiedsrc/jogl/classes/jogamp/graph/curve/text/GlyphShape.java (diff)
Commit eeb7c5fae3caf508fe5a6021ce700630632c6a02 by Sven Gothel
Graph: more clone() cleanup.

- throw InternalError() for CloneNotSupportedException case, which never happens
- AffineTransform clone() uses covariant return type as well, ie AffineTransform
The file was modifiedsrc/jogl/classes/com/jogamp/graph/geom/Outline.java (diff)
The file was modifiedsrc/jogl/classes/jogamp/graph/geom/plane/AffineTransform.java (diff)
The file was modifiedsrc/jogl/classes/com/jogamp/graph/curve/OutlineShape.java (diff)
Commit f5aaaf5cd65dedba658392cc30edb24b0dc3c026 by Sven Gothel
Graph / Text: Use CharSequence as char/string interface to text rendering

Implements more of John Pritchard <jdp@syntelos.org> proposal
   https://github.com/syntelos/jogl/commit/eadee0758babcddaa5eeaffbe046e1b09f9f550e
The file was modifiedsrc/jogl/classes/jogamp/graph/curve/text/GlyphString.java (diff)
The file was modifiedsrc/jogl/classes/com/jogamp/graph/font/Font.java (diff)
The file was modifiedsrc/jogl/classes/jogamp/graph/font/typecast/TypecastFont.java (diff)
The file was modifiedsrc/jogl/classes/jogamp/graph/font/FontInt.java (diff)
The file was modifiedsrc/jogl/classes/jogamp/graph/font/typecast/TypecastRenderer.java (diff)
Commit e122b2f92b2302362569cdc9a67efd5750f46eb1 by Sven Gothel
Graph: GLSL fix, Adding renderModes bits instead of dedicated booleans, Region/GLRegion, ..

GLSL fix:
  - allowing #version tag
  - add uniform textureSize (ES2)
  - fix int/float conversion

Region/GLRegion:
  - non OpenGL Region and GL related GLRegion split

Region/Renderer renderModes bits (def. in Region)
  - user creates a Renderer* impl .. and derive Region*'s from outline,
    possibly from a different code path.

  - to avoid mode explosion, a bit field is being used for now

- Renderer: remove flushCache(), since non caching impl. is intended,
            or caching by an external user transparent object.
The file was modifiedsrc/jogl/classes/com/jogamp/graph/curve/opengl/Renderer.java (diff)
The file was modifiedsrc/jogl/classes/jogamp/graph/curve/opengl/shader/uniforms.glsl (diff)
The file was removedsrc/jogl/classes/jogamp/graph/curve/opengl/shader/curverenderer01.vp (diff)
The file was addedsrc/jogl/classes/jogamp/graph/curve/opengl/shader/curverenderer01-gl2.vp (diff)
The file was addedsrc/jogl/classes/jogamp/graph/curve/opengl/RegionFactory.java (diff)
The file was modifiedsrc/jogl/classes/jogamp/graph/curve/opengl/TextRendererImpl01.java (diff)
The file was modifiedsrc/jogl/classes/jogamp/graph/curve/opengl/RenderStateImpl.java (diff)
The file was addedsrc/jogl/classes/jogamp/graph/curve/opengl/shader/curverenderer02-es2.fp (diff)
The file was modifiedsrc/jogl/classes/jogamp/graph/curve/opengl/RegionRendererImpl01.java (diff)
The file was modifiedsrc/jogl/classes/com/jogamp/graph/curve/opengl/RegionRenderer.java (diff)
The file was modifiedsrc/jogl/classes/com/jogamp/graph/curve/opengl/TextRenderer.java (diff)
The file was addedsrc/jogl/classes/jogamp/graph/curve/opengl/shader/curverenderer02-gl2.fp (diff)
The file was addedsrc/jogl/classes/jogamp/graph/curve/opengl/shader/curverenderer01-es2.fp (diff)
The file was addedsrc/jogl/classes/jogamp/graph/curve/opengl/shader/curverenderer01-xxx.vp (diff)
The file was addedsrc/jogl/classes/jogamp/graph/curve/opengl/shader/curverenderer01-gl2.fp (diff)
The file was addedsrc/jogl/classes/jogamp/graph/curve/opengl/shader/curverenderer02-xxx.fp (diff)
The file was modifiedsrc/jogl/classes/com/jogamp/graph/curve/Region.java (diff)
The file was addedsrc/jogl/classes/jogamp/graph/curve/opengl/shader/curverenderer01-es2.vp (diff)
The file was modifiedsrc/jogl/classes/jogamp/graph/curve/opengl/shader/UniformNames.java (diff)
The file was removedsrc/jogl/classes/jogamp/graph/curve/opengl/shader/curverenderer01.fp (diff)
The file was removedsrc/jogl/classes/com/jogamp/graph/curve/RegionFactory.java (diff)
The file was addedsrc/jogl/classes/com/jogamp/graph/curve/opengl/GLRegion.java (diff)
The file was addedsrc/jogl/classes/jogamp/graph/curve/opengl/shader/curverenderer01-xxx.fp (diff)
The file was removedsrc/jogl/classes/jogamp/graph/curve/opengl/shader/curverenderer02.fp (diff)
Commit 9caa7eeee9408fdafa8b3bc04bd963e2fa818e13 by Sven Gothel
Graph: OutlineShape fix, cleanup

OutlineShape:
   - add clear()
   - safe addEmptyOutline()
   - fix addOutline(..)
   - add addOutlineShape(OutlineShape)
   -
The file was modifiedsrc/jogl/classes/com/jogamp/graph/curve/OutlineShape.java (diff)
Commit d60bc9c4bc4a6f99bafa8c723b3d7f3bacc80950 by Sven Gothel
Graph: RenderState (interface -> abstract) missing commit of e122b2f92b2302362569cdc9a67efd5750f46eb1
The file was modifiedsrc/jogl/classes/com/jogamp/graph/curve/opengl/RenderState.java (diff)
Commit eefa76604706bcaa55a1a324cb4eef78dd7a030c by Sven Gothel
Graph/Font: use StringBuilder
The file was modifiedsrc/jogl/classes/jogamp/graph/font/typecast/ot/OTFont.java (diff)
The file was modifiedsrc/jogl/classes/jogamp/graph/font/typecast/TypecastFont.java (diff)
The file was modifiedsrc/jogl/classes/jogamp/graph/font/typecast/ot/table/NameRecord.java (diff)
The file was modifiedsrc/jogl/classes/jogamp/graph/font/typecast/ot/table/NameTable.java (diff)
The file was modifiedsrc/jogl/classes/com/jogamp/graph/font/Font.java (diff)
The file was modifiedsrc/jogl/classes/com/jogamp/graph/geom/Outline.java (diff)
The file was modifiedsrc/jogl/classes/com/jogamp/opengl/util/glsl/ShaderState.java (diff)
Commit 169f4a60fee62e7742c33596c1494901d9ba8df9 by Sven Gothel
JOGL/ShaderCode: Dump proper GLSL source w/ line numbers if GLSLCode debug prop is set
The file was modifiedsrc/jogl/classes/com/jogamp/opengl/util/glsl/ShaderCode.java (diff)
Commit 624a52690b429c486bb8946d58f77936ead41785 by Sven Gothel
Graph VBORegion*: Lazy GL alloc of resources at update(GL, ..) not constructor
The file was modifiedsrc/jogl/classes/jogamp/graph/curve/opengl/VBORegionSPES2.java (diff)
The file was modifiedsrc/jogl/classes/jogamp/graph/curve/opengl/VBORegion2PES2.java (diff)
Commit fc5b810cb210f22572815642cdc810c7dc472319 by Sven Gothel
Graph/GLyph*: Add static factory method for non Renderer creation,
              separating text->OutlineShape and OutlineShape->Region step.
The file was modifiedsrc/jogl/classes/jogamp/graph/curve/text/GlyphString.java (diff)
The file was modifiedsrc/jogl/classes/jogamp/graph/curve/text/GlyphShape.java (diff)
The file was modifiedsrc/jogl/classes/com/jogamp/graph/curve/tess/CDTriangulator2D.java (diff)
Commit b96b95e44e96dace30836c14704ca73ad3f22106 by Sven Gothel
TypecastRenderer: Avoid -y direction and later y-flipping / FIXME: math must be updated .. Rami ?
The file was modifiedsrc/jogl/classes/jogamp/graph/font/typecast/TypecastRenderer.java (diff)
Commit fbb4e5822c2da4458bfaeb728ba0eb2e45184e77 by Sven Gothel
Graph/Tests: Adapt to latest commits ..
The file was modifiedsrc/test/com/jogamp/opengl/test/junit/graph/demos/GPURegionGLListener01.java (diff)
The file was modifiedsrc/test/com/jogamp/opengl/test/junit/graph/demos/GPURegionNewtDemo01.java (diff)
The file was modifiedsrc/test/com/jogamp/opengl/test/junit/graph/demos/GPURegionNewtDemo02.java (diff)
The file was modifiedsrc/test/com/jogamp/opengl/test/junit/graph/demos/GPUTextGLListener0A.java (diff)
The file was modifiedsrc/test/com/jogamp/opengl/test/junit/graph/TestRegionRendererNEWT01.java (diff)
The file was modifiedsrc/test/com/jogamp/opengl/test/junit/graph/TestTextRendererNEWT01.java (diff)
The file was modifiedsrc/test/com/jogamp/opengl/test/junit/graph/demos/GPUTextNewtDemo02.java (diff)
The file was modifiedsrc/test/com/jogamp/opengl/test/junit/graph/demos/GPUTextRendererListenerBase01.java (diff)
The file was modifiedsrc/test/com/jogamp/opengl/test/junit/graph/demos/GPUTextNewtDemo01.java (diff)
The file was modifiedsrc/test/com/jogamp/opengl/test/junit/graph/demos/GPURegionRendererListenerBase01.java (diff)
The file was modifiedsrc/test/com/jogamp/opengl/test/junit/graph/demos/GPURendererListenerBase01.java (diff)
The file was modifiedsrc/test/com/jogamp/opengl/test/junit/graph/demos/GPURegionGLListener02.java (diff)
Commit 77910075c04d4c86aabf12a2853b381f804bf04a by Sven Gothel
Graph/UI-Demo: Use RegionRenderer for region and text, start data/gl separation
The file was modifiedsrc/test/com/jogamp/opengl/test/junit/graph/demos/ui/UIGLListener01.java (diff)
The file was modifiedsrc/test/com/jogamp/opengl/test/junit/graph/demos/ui/UINewtDemo01.java (diff)
The file was modifiedsrc/test/com/jogamp/opengl/test/junit/graph/demos/ui/UIListenerBase01.java (diff)
The file was removedsrc/test/com/jogamp/opengl/test/junit/graph/demos/ui/UIControl.java (diff)
The file was modifiedsrc/test/com/jogamp/opengl/test/junit/graph/demos/ui/RIButton.java (diff)
Commit 4ccf5ed0cc14743a3a97d7b0dcc61e839d263a1a by Sven Gothel
Graph/UI-Demo: Use RegionRenderer for region and text, start data/gl separation (2)

Complete commit 77910075c04d4c86aabf12a2853b381f804bf04a, oops, got a fs corruption.
The file was addedsrc/test/com/jogamp/opengl/test/junit/graph/demos/ui/UITextShape.java (diff)
The file was addedsrc/test/com/jogamp/opengl/test/junit/graph/demos/ui/opengl/UIRegion.java (diff)
The file was addedsrc/test/com/jogamp/opengl/test/junit/graph/demos/ui/UIShape.java (diff)
The file was addedsrc/test/com/jogamp/opengl/test/junit/graph/demos/ui/Label.java (diff)
The file was modifiedsrc/test/com/jogamp/opengl/test/junit/graph/demos/ui/UINewtDemo01.java (diff)
Commit 1303328b476570d94e56c9d2fc061e3b09cf538a by Sven Gothel
Loop: Fix invert; GlyphString/createRegion: Remove unnecessary on-the-fly object creation
The file was modifiedsrc/jogl/classes/jogamp/graph/curve/tess/Loop.java (diff)
The file was modifiedsrc/jogl/classes/jogamp/graph/curve/text/GlyphString.java (diff)
The file was modifiedsrc/jogl/classes/com/jogamp/graph/curve/Region.java (diff)
Commit 192631530503b8046abcfa9b2ca6760e3f39ae66 by Rami Santina
Fix: glyph outline orientation with the removal of inversion
The file was modifiedsrc/jogl/classes/jogamp/graph/curve/tess/Loop.java (diff)
The file was modifiedsrc/jogl/classes/jogamp/graph/curve/text/GlyphShape.java (diff)
The file was modifiedsrc/jogl/classes/com/jogamp/graph/curve/OutlineShape.java (diff)
Commit 9ceff75afcbf6c446e75c1be6b4be1e62d543f3a by Sven Gothel
Graph/Loop: More readable/verbose invert case; using Winding enum; ttf reader: Adding debug dump of font direction hint
The file was modifiedsrc/jogl/classes/jogamp/graph/font/typecast/TypecastFont.java (diff)
The file was modifiedsrc/jogl/classes/com/jogamp/graph/math/VectorUtil.java (diff)
The file was modifiedsrc/jogl/classes/com/jogamp/graph/curve/tess/CDTriangulator2D.java (diff)
The file was modifiedsrc/jogl/classes/jogamp/graph/curve/tess/Loop.java (diff)
Commit f5ec2dd42244282c2a005269ae4674ab78af269a by Sven Gothel
Graph: getWinding(ArrayList<Vertex> vertices) test; minor renaming
The file was modifiedsrc/jogl/classes/jogamp/graph/curve/tess/GraphOutline.java (diff)
The file was modifiedsrc/jogl/classes/jogamp/graph/curve/tess/Loop.java (diff)
The file was modifiedsrc/jogl/classes/com/jogamp/graph/curve/tess/CDTriangulator2D.java (diff)
The file was modifiedsrc/jogl/classes/com/jogamp/graph/math/VectorUtil.java (diff)
Commit b58d6d6ccf9c622f2377cf6c0c3487a8897aba6d by Sven Gothel
Graph: Add comments 'n questions (FIXME?)
The file was modifiedsrc/jogl/classes/com/jogamp/graph/curve/tess/CDTriangulator2D.java (diff)
Commit 2f89bf30607281bb8dc0a07b185fa403b9b0f093 by Sven Gothel
build: Query git branch/sha1 and use it if not set and tools are available; Add Java source zip file.

Query git branch/sha1 and use it if not set and tools are available.
This shall improve tracking of manual generated binaries/bundles.

Add Java source zip file. Contains all Java source code (incl. generated ones) enhancing
IDE usage, where API doc and source browsing of libs is supported (NB/Eclipse/etc).
The file was modifiedmake/build-common.xml (diff)
The file was modifiedmake/README-zip-bundles.txt (diff)
The file was modifiedmake/build.xml (diff)
The file was modifiedmake/scripts/make.jogl.all.linux-x86_64.sh (diff)
The file was modifiedmake/build-jogl.xml (diff)
Commit f3de07e479c7849d0172a03bb82ce9189da5679e by Sven Gothel
Fix ShaderState useProgram() case: on && program not linked (yet)
The file was modifiedsrc/jogl/classes/com/jogamp/opengl/util/glsl/ShaderState.java (diff)
Commit b82a409135f3b79889499d77c8ecffc80e310a20 by Sven Gothel
JUnit Tests: Extract utility of creating a NEWT Window w/ GLContext w/o auto drawable (NEWTGLContext)
The file was addedsrc/test/com/jogamp/opengl/test/junit/util/NEWTGLContext.java (diff)
The file was modifiedsrc/test/com/jogamp/opengl/test/junit/jogl/glsl/GLSLMiscHelper.java (diff)
The file was modifiedsrc/test/com/jogamp/opengl/test/junit/jogl/glsl/TestGLSLShaderState02NEWT.java (diff)
The file was modifiedsrc/test/com/jogamp/opengl/test/junit/jogl/glsl/TestGLSLShaderState01NEWT.java (diff)
Commit a0777144c46d12d148556ed64ad0a9b9d6d24c0c by Sven Gothel
JUnit Test: Add 'ruler' testcase using monitor mode's mm/pixel size.
The file was addedsrc/test/com/jogamp/opengl/test/junit/graph/TestRulerNEWT01.java (diff)
The file was addedsrc/test/com/jogamp/opengl/test/junit/jogl/demos/es2/shader/ruler.fp (diff)
The file was modifiedmake/scripts/tests.sh (diff)
The file was addedsrc/test/com/jogamp/opengl/test/junit/jogl/demos/es2/shader/default.vp (diff)
Commit d2d47b1ab22bdc54ff35c1466934138bcb6906b4 by Sven Gothel
GLSL UnitTest: Reloc Ruler and make local fields final
The file was addedsrc/test/com/jogamp/opengl/test/junit/jogl/glsl/TestRulerNEWT01.java (diff)
The file was removedsrc/test/com/jogamp/opengl/test/junit/graph/TestRulerNEWT01.java (diff)
Commit dbfae67a9248296e4ad3586ffe8c05d9fb179eaf by Sven Gothel
ShaderProgram: useProgram(..) -> public
The file was modifiedsrc/jogl/classes/com/jogamp/opengl/util/glsl/ShaderProgram.java (diff)
Commit 89c243c4b1210da083afe43b37a1180c98a54414 by Sven Gothel
Fix: GLSLArrayHandler (data has no location); Fix ShaderState (switch program: set prev. !inUse)
The file was modifiedsrc/jogl/classes/com/jogamp/opengl/util/glsl/ShaderState.java (diff)
The file was modifiedsrc/jogl/classes/com/jogamp/opengl/util/glsl/GLSLArrayHandler.java (diff)
Commit 88eabad2809d0132f919d655211ffdbfd2feea97 by Sven Gothel
JOGL/GLDebug/GLTrace: Gluegen/BuildComposablePipeline: print arguments in debug pipe; common param print
The file was modifiedsrc/jogl/classes/com/jogamp/gluegen/opengl/BuildComposablePipeline.java (diff)
Commit 526ea7a3fb579f88a0c0a1e597387aae29d5aa06 by Sven Gothel
Fix/Extend FBObject (API Change): plain init(GL), support multiple attachTexture2D(..) (MRT) w/ tex units

- plain initialization via init(GL)

- dedicated texture2D color buffer attachement attachTexture2D(..) w/ tex units (<GL_MAX_TEXTURE_UNITS),
  which may happen up to max GL_MAX_COLOR_ATTACHMENTS to support MRT (multiple render targets)

- more API doc

- FBO/MRT/GLSL unit test w/ using 2 shader (decompose / compose)
The file was addedsrc/test/com/jogamp/opengl/test/junit/jogl/demos/es2/shader/fbo-mrt-1.vp (diff)
The file was addedsrc/test/com/jogamp/opengl/test/junit/jogl/demos/es2/shader/fbo-mrt-2.fp (diff)
The file was addedsrc/test/com/jogamp/opengl/test/junit/jogl/demos/es2/shader/fbo-mrt-1.fp (diff)
The file was addedsrc/test/com/jogamp/opengl/test/junit/jogl/glsl/TestFBOMRTNEWT01.java (diff)
The file was addedsrc/test/com/jogamp/opengl/test/junit/jogl/demos/es2/shader/fbo-mrt-2.vp (diff)
The file was modifiedsrc/jogl/classes/com/jogamp/opengl/util/FBObject.java (diff)
Commit 6bd444a80f2b1ec6cfac1518bf31a487de3f17b5 by Sven Gothel
FIX graph FBObject usage - 526ea7a3fb579f88a0c0a1e597387aae29d5aa06
The file was modifiedsrc/jogl/classes/jogamp/graph/curve/opengl/VBORegion2PES2.java (diff)
Commit f08f31480433674db753f226f15609f9eab5b6fc by Sven Gothel
GLSL unit tests: cleanup shader state tests
The file was modifiedsrc/test/com/jogamp/opengl/test/junit/jogl/demos/es2/shader/RedSquareShader2.fp (diff)
The file was modifiedsrc/test/com/jogamp/opengl/test/junit/jogl/glsl/TestGLSLShaderState02NEWT.java (diff)
The file was modifiedmake/scripts/tests.sh (diff)
The file was modifiedmake/scripts/make.jogl.all.linux-x86_64.sh (diff)
The file was modifiedsrc/test/com/jogamp/opengl/test/junit/jogl/demos/es2/shader/default.vp (diff)
The file was modifiedsrc/test/com/jogamp/opengl/test/junit/jogl/glsl/TestGLSLShaderState01NEWT.java (diff)