From f4a9d918bbd1ec6f4ebe8408a0bb9f2fbf4a4e8b Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Mon, 3 Mar 2008 12:46:17 +0000 Subject: [PATCH] Initial commit. --- Source/OpenTK/Graphics/IGraphicsMode.cs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Source/OpenTK/Graphics/IGraphicsMode.cs diff --git a/Source/OpenTK/Graphics/IGraphicsMode.cs b/Source/OpenTK/Graphics/IGraphicsMode.cs new file mode 100644 index 00000000..e1805fbb --- /dev/null +++ b/Source/OpenTK/Graphics/IGraphicsMode.cs @@ -0,0 +1,20 @@ +#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; + +namespace OpenTK.Graphics +{ + internal interface IGraphicsMode + { + GraphicsMode SelectGraphicsMode(ColorFormat color, int depth, int stencil, int samples, ColorFormat accum, int buffers, + bool stereo); + } +}