Removed debug print statements.
This commit is contained in:
parent
991dc7dfab
commit
39d1bea45f
2 changed files with 0 additions and 4 deletions
|
@ -224,8 +224,6 @@ namespace OpenTK.Graphics
|
||||||
|
|
||||||
RectangleF range = ranges[current++];
|
RectangleF range = ranges[current++];
|
||||||
|
|
||||||
Console.WriteLine(String.Format("{0}: {1}", c, range.ToString()));
|
|
||||||
|
|
||||||
x_pos = range.X;
|
x_pos = range.X;
|
||||||
y_pos = range.Y;
|
y_pos = range.Y;
|
||||||
|
|
||||||
|
|
|
@ -418,8 +418,6 @@ using System.Text.RegularExpressions;
|
||||||
if (pack == null)
|
if (pack == null)
|
||||||
PrepareTexturePacker();
|
PrepareTexturePacker();
|
||||||
|
|
||||||
Debug.Write(String.Format("Loading glyph: {0} ", c));
|
|
||||||
|
|
||||||
RectangleF glyph_rect = MeasureText(c.ToString(), SizeF.Empty, load_glyph_string_format);
|
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)
|
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);
|
Glyph g = new Glyph(c, font, glyph_size);
|
||||||
|
|
Loading…
Reference in a new issue