diff options
author | Sven Gothel <[email protected]> | 2011-05-06 15:57:16 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-05-06 15:57:16 +0200 |
commit | f5aaaf5cd65dedba658392cc30edb24b0dc3c026 (patch) | |
tree | 6b634c6ce5ffc5645a1e38abd65f610a67913290 /src/jogl/classes/jogamp/graph/font/FontInt.java | |
parent | eeb7c5fae3caf508fe5a6021ce700630632c6a02 (diff) |
Graph / Text: Use CharSequence as char/string interface to text rendering
Implements more of John Pritchard <[email protected]> proposal
https://github.com/syntelos/jogl/commit/eadee0758babcddaa5eeaffbe046e1b09f9f550e
Diffstat (limited to 'src/jogl/classes/jogamp/graph/font/FontInt.java')
-rw-r--r-- | src/jogl/classes/jogamp/graph/font/FontInt.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jogl/classes/jogamp/graph/font/FontInt.java b/src/jogl/classes/jogamp/graph/font/FontInt.java index f915d57f0..6c25f9a80 100644 --- a/src/jogl/classes/jogamp/graph/font/FontInt.java +++ b/src/jogl/classes/jogamp/graph/font/FontInt.java @@ -46,7 +46,7 @@ public interface FontInt extends Font { public Path2D getPath(float pixelSize); } - public void getPaths(String string, float pixelSize, + public void getPaths(CharSequence string, float pixelSize, AffineTransform transform, Path2D[] result); //TODO: Rami - ADD getOutlines without path2D } |