added Font.getGlyph(char)
authoradam <adam@megacz.com>
Sun, 9 Jan 2005 09:08:51 +0000 (09:08 +0000)
committeradam <adam@megacz.com>
Sun, 9 Jan 2005 09:08:51 +0000 (09:08 +0000)
darcs-hash:20050109090851-5007d-1e50c8c1f111b80be448169773dcf501243d5c16.gz

src/org/ibex/graphics/Font.java

index 6f1e69a..1f8f35c 100644 (file)
@@ -103,6 +103,13 @@ public class Font {
         return ret;
     }
 
+    public Glyph getGlyph(char c) {
+        rasterizeGlyphs(c+"", null, 0, 0, 0, 0, 0, 0, 0);
+        Glyph g = glyphs[c];
+        g.render();
+        return g;
+    }
+
     static final Callable glyphRenderingTask = new Callable() { public Object run(Object o) {
         // FIXME: this should be a low-priority task
         glyphRenderingTaskIsScheduled = false;