diff options
author | Sven Gothel <[email protected]> | 2023-12-19 17:33:35 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2023-12-19 17:33:35 +0100 |
commit | 0944e120702c8bbaa562b817d387651addb11b86 (patch) | |
tree | 1b25f0b09f9407be80abffa48ffc204fb60db146 | |
parent | b76f3c048fb93e7b2c66d7aca4f88f3cbf4b6046 (diff) |
GraphUI Group: Allow override of clearImpl0() and destroyImpl0()
-rw-r--r-- | src/graphui/classes/com/jogamp/graph/ui/Group.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/graphui/classes/com/jogamp/graph/ui/Group.java b/src/graphui/classes/com/jogamp/graph/ui/Group.java index 5548408e0..db2fe8f98 100644 --- a/src/graphui/classes/com/jogamp/graph/ui/Group.java +++ b/src/graphui/classes/com/jogamp/graph/ui/Group.java @@ -226,18 +226,18 @@ public class Group extends Shape implements Container { } @Override - protected final void clearImpl0(final GL2ES2 gl, final RegionRenderer renderer) { + protected void clearImpl0(final GL2ES2 gl, final RegionRenderer renderer) { for(final Shape s : shapes) { - // s.clearImpl0(gl, renderer);; - s.clear(gl, renderer);; + // s.clearImpl0(gl, renderer); + s.clear(gl, renderer); } } @Override - protected final void destroyImpl0(final GL2ES2 gl, final RegionRenderer renderer) { + protected void destroyImpl0(final GL2ES2 gl, final RegionRenderer renderer) { for(final Shape s : shapes) { // s.destroyImpl0(gl, renderer); - s.destroy(gl, renderer);; + s.destroy(gl, renderer); } if( null != border ) { border.destroy(gl, renderer); |