From 39d1bea45f028c20d17ad1dc136c151b5487cdd4 Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Fri, 14 Nov 2008 00:09:47 +0000 Subject: [PATCH] Removed debug print statements. --- Source/Utilities/Fonts/TextPrinter.cs | 2 -- Source/Utilities/Fonts/TextureFont.cs | 2 -- 2 files changed, 4 deletions(-) diff --git a/Source/Utilities/Fonts/TextPrinter.cs b/Source/Utilities/Fonts/TextPrinter.cs index 7dc2c8e2..b59a5b0b 100644 --- a/Source/Utilities/Fonts/TextPrinter.cs +++ b/Source/Utilities/Fonts/TextPrinter.cs @@ -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; diff --git a/Source/Utilities/Fonts/TextureFont.cs b/Source/Utilities/Fonts/TextureFont.cs index c152164d..ae1e1ec0 100644 --- a/Source/Utilities/Fonts/TextureFont.cs +++ b/Source/Utilities/Fonts/TextureFont.cs @@ -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);