diff options
author | Sven Gothel <[email protected]> | 2012-05-15 16:55:21 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-05-15 16:55:21 +0200 |
commit | 1d58578ebc794f339a0a1a5e7fbc0fcbb704762c (patch) | |
tree | b78eb898649fa803cb98c333f0d239c4ffaf2501 /src/jogl/classes/com | |
parent | 3ae6f3fdc232529ce28679b6ec4624b7d3377e9b (diff) |
Graph/Glyph: Clarify public Font.Glyph and private FontInt.GlyphInt
Diffstat (limited to 'src/jogl/classes/com')
-rw-r--r-- | src/jogl/classes/com/jogamp/graph/font/Font.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/jogl/classes/com/jogamp/graph/font/Font.java b/src/jogl/classes/com/jogamp/graph/font/Font.java index 6503f2779..c60d0cc2a 100644 --- a/src/jogl/classes/com/jogamp/graph/font/Font.java +++ b/src/jogl/classes/com/jogamp/graph/font/Font.java @@ -74,6 +74,12 @@ public interface Font { * Glyph for font */ public interface Glyph { + // reserved special glyph IDs + // http://scripts.sil.org/cms/scripts/page.php?item_id=IWS-Chapter08#ba57949e + public static final int ID_UNKNOWN = 0; + public static final int ID_CR = 2; + public static final int ID_SPACE = 3; + public Font getFont(); public char getSymbol(); public AABBox getBBox(float pixelSize); |