From 78fe032ebd9e7bbb91d515a7064fe0cc9fd766a8 Mon Sep 17 00:00:00 2001 From: Mike Date: Tue, 12 Feb 2019 20:50:41 -0800 Subject: [PATCH] cleanup --- src/ImGui.NET.SampleProgram.XNA/SampleGame.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/ImGui.NET.SampleProgram.XNA/SampleGame.cs b/src/ImGui.NET.SampleProgram.XNA/SampleGame.cs index 0fe0016..0164d08 100644 --- a/src/ImGui.NET.SampleProgram.XNA/SampleGame.cs +++ b/src/ImGui.NET.SampleProgram.XNA/SampleGame.cs @@ -37,12 +37,11 @@ namespace ImGuiNET.SampleProgram.XNA protected override void LoadContent() { - // Texture loading example + // Texture loading example // First, load the texture as a Texture2D (can also be done using the XNA/FNA content pipeline) _xnaTexture = CreateTexture(GraphicsDevice, 300, 150, pixel => { - //Console.WriteLine( pixel ); var red = (pixel % 300) / 2; return new Color(red, 1, 1); });