diff options
author | Sven Gothel <[email protected]> | 2011-04-08 18:08:56 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-04-08 18:08:56 +0200 |
commit | 547724c6790db5888bf803ec7e79b5eaa8cc1d87 (patch) | |
tree | 6d41675a8aafe6f7d2dec28ade0813f749388cc2 /src/jogl/classes/com/jogamp/graph/curve/opengl/TextRenderer.java | |
parent | ba47ef11171a8da45c718c89d1e962287b504e36 (diff) | |
parent | f628fc29468b7a6b821b5a47dd93224730222dc4 (diff) |
Merge remote-tracking branch 'rsantina/graph' into graph
Diffstat (limited to 'src/jogl/classes/com/jogamp/graph/curve/opengl/TextRenderer.java')
-rw-r--r-- | src/jogl/classes/com/jogamp/graph/curve/opengl/TextRenderer.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/jogl/classes/com/jogamp/graph/curve/opengl/TextRenderer.java b/src/jogl/classes/com/jogamp/graph/curve/opengl/TextRenderer.java index 4b7299a33..ee8dfb372 100644 --- a/src/jogl/classes/com/jogamp/graph/curve/opengl/TextRenderer.java +++ b/src/jogl/classes/com/jogamp/graph/curve/opengl/TextRenderer.java @@ -48,11 +48,10 @@ public abstract class TextRenderer extends Renderer { * @param sharpness parameter for Region generation of the resulting GlyphString * @return the resulting GlyphString inclusive the generated region */ - protected GlyphString createString(GL2ES2 gl, Font font, int size, String str, float sharpness) { + public GlyphString createString(GL2ES2 gl, Font font, int size, String str, float sharpness) { if(DEBUG) { System.err.println("createString: "+getCacheSize()+"/"+getCacheLimit()+" - "+Font.NAME_UNIQUNAME + " - " + str + " - " + size); } - AffineTransform affineTransform = new AffineTransform(pointFactory); Path2D[] paths = new Path2D[str.length()]; |