From 9f7d85813650add5fe10c3ace3976214bda45078 Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Mon, 3 Mar 2008 12:48:00 +0000 Subject: [PATCH] Initial commit. --- Source/OpenTK/Platform/IGLControl.cs | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Source/OpenTK/Platform/IGLControl.cs diff --git a/Source/OpenTK/Platform/IGLControl.cs b/Source/OpenTK/Platform/IGLControl.cs new file mode 100644 index 00000000..55de588b --- /dev/null +++ b/Source/OpenTK/Platform/IGLControl.cs @@ -0,0 +1,23 @@ +#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; +using System.Text; + +using OpenTK.Graphics; + +namespace OpenTK.Platform +{ + internal interface IGLControl + { + GraphicsContext CreateContext(); + bool IsIdle { get; } + IWindowInfo WindowInfo { get; } + } +}