X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Forg%2Fxwt%2FFont.java;h=5124a7a7428ce4971bb9ffca65f9833c813fe0c6;hb=ef61babe77a94eba181c95a52c0069a612276dff;hp=608125339871e3f35e19e674802c9547e385e8a4;hpb=2ccad2219888c9942f62ae8b4d4207f655690948;p=org.ibex.core.git diff --git a/src/org/xwt/Font.java b/src/org/xwt/Font.java index 6081253..5124a7a 100644 --- a/src/org/xwt/Font.java +++ b/src/org/xwt/Font.java @@ -120,8 +120,8 @@ public class Font { Glyph g = (Glyph)glyphsToBeRendered.remove(false); if (g == null) { glyphRenderingTaskIsScheduled = false; return; } if (g.isLoaded) { perform(); /* tailcall to the next glyph */ return; } - Log.log(Glyph.class, "rendering glyph " + g.c); - try { freetype.renderGlyph(g); } catch (IOException e) { Log.log(Freetype.class, e); } + Log.info(Glyph.class, "rendering glyph " + g.c); + try { freetype.renderGlyph(g); } catch (IOException e) { Log.info(Freetype.class, e); } g.isLoaded = true; Scheduler.add(this); // keep ourselves in the queue until there are no glyphs to render glyphRenderingTaskIsScheduled = true;