Made GraphicsMode public, as it is generally useful.

This commit is contained in:
the_fiddler 2009-01-23 15:24:09 +00:00
parent 1eee53da4f
commit dc38987559

View file

@ -347,9 +347,9 @@ namespace OpenTK.Graphics
*/ */
/// <summary> /// <summary>
/// Gets the DisplayMode of the context. /// Gets the GraphicsMode of the context.
/// </summary> /// </summary>
GraphicsMode IGraphicsContextInternal.GraphicsMode public GraphicsMode GraphicsMode
{ {
get { return (implementation as IGraphicsContextInternal).GraphicsMode; } get { return (implementation as IGraphicsContextInternal).GraphicsMode; }
} }