From 285887fc0daf2b84dc50fa682476a7ddd3b14d80 Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Sat, 26 Jan 2008 14:35:28 +0000 Subject: [PATCH] Debugging on linux. --- Source/OpenTK/Graphics/DisplayDevice.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/OpenTK/Graphics/DisplayDevice.cs b/Source/OpenTK/Graphics/DisplayDevice.cs index 6e67cd69..47439aff 100644 --- a/Source/OpenTK/Graphics/DisplayDevice.cs +++ b/Source/OpenTK/Graphics/DisplayDevice.cs @@ -194,7 +194,7 @@ namespace OpenTK.Graphics if (resolution == current_resolution) return; - effect.FadeOut(); + //effect.FadeOut(); if (implementation.TryChangeResolution(this, resolution)) { @@ -205,7 +205,7 @@ namespace OpenTK.Graphics else throw new GraphicsModeException(String.Format("Device {0}: Failed to change resolution to {1}.", this, resolution)); - effect.FadeIn(); + //effect.FadeIn(); } #endregion