From 504ec0e0d27f0bc2dd934ed4d314d47405d51715 Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Fri, 4 Sep 2009 23:48:44 +0000 Subject: [PATCH] * GameWindowStates.cs: Increased texture size to ensure the text fits inside. --- Source/Examples/OpenTK/Test/GameWindowStates.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Examples/OpenTK/Test/GameWindowStates.cs b/Source/Examples/OpenTK/Test/GameWindowStates.cs index 5cad35db..14b8dc58 100644 --- a/Source/Examples/OpenTK/Test/GameWindowStates.cs +++ b/Source/Examples/OpenTK/Test/GameWindowStates.cs @@ -21,7 +21,7 @@ namespace Examples.Tests public class GameWindowStates : GameWindow { readonly Font TextFont = new Font(FontFamily.GenericSansSerif, 16); - readonly Bitmap TextBitmap = new Bitmap(512, 512); + readonly Bitmap TextBitmap = new Bitmap(1024, 256); int texture; public GameWindowStates()