From aba454288f0d0e07be9b02e7a0b160660f9afe76 Mon Sep 17 00:00:00 2001 From: Jarl Gullberg Date: Tue, 20 Jun 2017 15:47:05 +0200 Subject: [PATCH] Removed obsolete INativeGLWindow class. --- src/OpenTK/OpenTK.csproj | 3 -- src/OpenTK/Platform/INativeGLWindow.cs | 48 -------------------------- 2 files changed, 51 deletions(-) delete mode 100644 src/OpenTK/Platform/INativeGLWindow.cs diff --git a/src/OpenTK/OpenTK.csproj b/src/OpenTK/OpenTK.csproj index e5379a18..eb92dc2b 100644 --- a/src/OpenTK/OpenTK.csproj +++ b/src/OpenTK/OpenTK.csproj @@ -224,9 +224,6 @@ Code - - Code - Code diff --git a/src/OpenTK/Platform/INativeGLWindow.cs b/src/OpenTK/Platform/INativeGLWindow.cs deleted file mode 100644 index 83f2ea0f..00000000 --- a/src/OpenTK/Platform/INativeGLWindow.cs +++ /dev/null @@ -1,48 +0,0 @@ -#region --- License --- -/* Licensed under the MIT/X11 license. - * Copyright (c) 2006-2008 the OpenTK Team. - * This notice may not be removed from any source distribution. - * See license.txt for licensing detailed licensing details. - */ -#endregion - -using System; -using System.Collections.Generic; -#if !MINIMAL -using System.Drawing; -#endif -using System.Text; - -using OpenTK.Input; -using OpenTK.Graphics; - -namespace OpenTK.Platform -{ - [Obsolete] - internal interface INativeGLWindow : IDisposable - { - void CreateWindow(int width, int height, GraphicsMode mode, int major, int minor, GraphicsContextFlags flags, out IGraphicsContext context); - void DestroyWindow(); - void ProcessEvents(); - Point PointToClient(Point point); - Point PointToScreen(Point point); - - bool Exists { get; } - IWindowInfo WindowInfo { get; } - - string Title { get; set; } - bool Visible { get; set; } - bool IsIdle { get; } - IInputDriver InputDriver { get; } - WindowState WindowState { get; set; } - WindowBorder WindowBorder { get; set; } - - event CreateEvent Create; - event DestroyEvent Destroy; - } - - [Obsolete] - internal delegate void CreateEvent(object sender, EventArgs e); - [Obsolete] - internal delegate void DestroyEvent(object sender, EventArgs e); -}