From 50e0da4392b558302d67c7e0c076b9ed832eb70c Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Mon, 15 Oct 2007 11:11:38 +0000 Subject: [PATCH] INativeGLWindow no longer inherits from IGLcontrol. Fixes build problems, too. --- Source/OpenTK/Platform/INativeGLWindow.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Source/OpenTK/Platform/INativeGLWindow.cs b/Source/OpenTK/Platform/INativeGLWindow.cs index 64b2dea7..8488b4db 100644 --- a/Source/OpenTK/Platform/INativeGLWindow.cs +++ b/Source/OpenTK/Platform/INativeGLWindow.cs @@ -15,7 +15,7 @@ namespace OpenTK.Platform /// /// This interface supports OpenTK, and is not intended for use by OpenTK programs. /// - interface INativeGLWindow : IGLControl, IResizable, IDisposable + interface INativeGLWindow : IResizable, IDisposable { void CreateWindow(DisplayMode mode); void DestroyWindow(); @@ -26,6 +26,8 @@ namespace OpenTK.Platform string Title { get; set; } bool Visible { get; set; } + bool IsIdle { get; } + IGLContext Context { get; } IInputDriver InputDriver { get; }