Removed debug print statements.

This commit is contained in:
the_fiddler 2008-11-14 00:09:47 +00:00
parent 991dc7dfab
commit 39d1bea45f
2 changed files with 0 additions and 4 deletions

View file

@ -224,8 +224,6 @@ namespace OpenTK.Graphics
RectangleF range = ranges[current++];
Console.WriteLine(String.Format("{0}: {1}", c, range.ToString()));
x_pos = range.X;
y_pos = range.Y;

View file

@ -418,8 +418,6 @@ using System.Text.RegularExpressions;
if (pack == null)
PrepareTexturePacker();
Debug.Write(String.Format("Loading glyph: {0} ", c));
RectangleF glyph_rect = MeasureText(c.ToString(), SizeF.Empty, load_glyph_string_format);
SizeF glyph_size = new SizeF(glyph_rect.Right, glyph_rect.Bottom); // We need to do this, since the origin might not be (0, 0)
Glyph g = new Glyph(c, font, glyph_size);