diff options
author | Sven Gothel <[email protected]> | 2014-02-27 23:57:39 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-02-27 23:57:39 +0100 |
commit | bd43319992d02f8194dce94587de476ee421891b (patch) | |
tree | f60bf3762c7591decd3ff1647b6de22e98b2f8b8 /src/jogl/classes/com/jogamp/graph/curve/Region.java | |
parent | 67ec86e539a3db0d06e5cc3550db453589594384 (diff) |
Bug 801: Graph TextRenderer Cleanup Part-5: *Region API Cleanup (protected impl. part)
Diffstat (limited to 'src/jogl/classes/com/jogamp/graph/curve/Region.java')
-rw-r--r-- | src/jogl/classes/com/jogamp/graph/curve/Region.java | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/src/jogl/classes/com/jogamp/graph/curve/Region.java b/src/jogl/classes/com/jogamp/graph/curve/Region.java index 359c63c80..d23de2077 100644 --- a/src/jogl/classes/com/jogamp/graph/curve/Region.java +++ b/src/jogl/classes/com/jogamp/graph/curve/Region.java @@ -110,18 +110,10 @@ public abstract class Region { this.renderModes = regionRenderModes; } - /** - * Returns true, if the implementation uses indices to render the vertices, - * otherwise false. - * <p> - * Impacts {@link #validateIndices()} and {@link #addOutlineShape(OutlineShape, AffineTransform)} .., - * i.e. defines unique indices if this method returns true. - * </p> - */ - public abstract boolean usesIndices(); + // FIXME: Better handling of impl. buffer growth .. ! - public abstract void pushVertex(float[] coords, float[] texParams); - public abstract void pushIndex(int idx); + protected abstract void pushVertex(float[] coords, float[] texParams); + protected abstract void pushIndex(int idx); /** * Return bit-field of render modes, see {@link #create(int)}. |