00001 #region --- License --- 00002 /* Licensed under the MIT/X11 license. 00003 * Copyright (c) 2006-2008 the OpenTK Team. 00004 * This notice may not be removed from any source distribution. 00005 * See license.txt for licensing detailed licensing details. 00006 */ 00007 #endregion 00008 00009 using System; 00010 using System.Collections.Generic; 00011 using System.Text; 00012 00013 namespace OpenTK.Graphics 00014 { 00015 internal interface IGraphicsMode 00016 { 00017 // Creates a temporary OpenGL context (if necessary) and finds the mode which closest matches 00018 // the specified parameters. 00019 GraphicsMode SelectGraphicsMode(ColorFormat color, int depth, int stencil, int samples, ColorFormat accum, int buffers, 00020 bool stereo); 00021 } 00022 }
1.6.1