From dc38987559992a6bd9c38d72fa44a0cf59e6429b Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Fri, 23 Jan 2009 15:24:09 +0000 Subject: [PATCH] Made GraphicsMode public, as it is generally useful. --- Source/OpenTK/Graphics/GraphicsContext.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/OpenTK/Graphics/GraphicsContext.cs b/Source/OpenTK/Graphics/GraphicsContext.cs index 1d11890d..45cc2e5e 100644 --- a/Source/OpenTK/Graphics/GraphicsContext.cs +++ b/Source/OpenTK/Graphics/GraphicsContext.cs @@ -347,9 +347,9 @@ namespace OpenTK.Graphics */ /// - /// Gets the DisplayMode of the context. + /// Gets the GraphicsMode of the context. /// - GraphicsMode IGraphicsContextInternal.GraphicsMode + public GraphicsMode GraphicsMode { get { return (implementation as IGraphicsContextInternal).GraphicsMode; } }