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; }