diff --git a/Source/OpenTK/Graphics/IGraphicsMode.cs b/Source/OpenTK/Graphics/IGraphicsMode.cs index 1bb068e2..5c3ea68c 100644 --- a/Source/OpenTK/Graphics/IGraphicsMode.cs +++ b/Source/OpenTK/Graphics/IGraphicsMode.cs @@ -14,7 +14,9 @@ namespace OpenTK.Graphics { internal interface IGraphicsMode { + // Creates a temporary OpenGL context (if necessary) and finds the mode which closest matches + // the specified parameters. GraphicsMode SelectGraphicsMode(ColorFormat color, int depth, int stencil, int samples, ColorFormat accum, int buffers, - bool stereo); + bool stereo); } }