Debugging on linux.

This commit is contained in:
the_fiddler 2008-01-26 14:35:28 +00:00
parent 20667c4788
commit 285887fc0d

View file

@ -194,7 +194,7 @@ namespace OpenTK.Graphics
if (resolution == current_resolution) if (resolution == current_resolution)
return; return;
effect.FadeOut(); //effect.FadeOut();
if (implementation.TryChangeResolution(this, resolution)) 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}.", else throw new GraphicsModeException(String.Format("Device {0}: Failed to change resolution to {1}.",
this, resolution)); this, resolution));
effect.FadeIn(); //effect.FadeIn();
} }
#endregion #endregion