From 1d58578ebc794f339a0a1a5e7fbc0fcbb704762c Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Tue, 15 May 2012 16:55:21 +0200 Subject: Graph/Glyph: Clarify public Font.Glyph and private FontInt.GlyphInt --- src/jogl/classes/com/jogamp/graph/font/Font.java | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/jogl/classes/com') 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); -- cgit v1.2.3