From a8c1206c0fb1cedc6df44b2ecda44c42415e2d82 Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Sat, 26 Jan 2008 15:47:00 +0000 Subject: [PATCH] Added debug information. --- Source/OpenTK/Platform/X11/X11GLNative.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/OpenTK/Platform/X11/X11GLNative.cs b/Source/OpenTK/Platform/X11/X11GLNative.cs index 5dad31b7..1a56eb98 100644 --- a/Source/OpenTK/Platform/X11/X11GLNative.cs +++ b/Source/OpenTK/Platform/X11/X11GLNative.cs @@ -235,6 +235,7 @@ namespace OpenTK.Platform.X11 { if (value && !fullscreen || !value && fullscreen) { + Debug.Print(value ? "Going fullscreen" : "Going windowed"); IntPtr state_atom = Functions.XInternAtom(API.DefaultDisplay, "_NET_WM_STATE", false); IntPtr fullscreen_atom = Functions.XInternAtom(API.DefaultDisplay, "_NET_WM_STATE_FULLSCREEN", false); XEvent xev = new XEvent();