From 972cdcdae159dfa630a59d1ae7ce69ce82f7c1f3 Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Thu, 4 Jun 2009 10:37:40 +0000 Subject: [PATCH] Updated documentation for IGraphicsContext.ErrorChecking. --- Source/OpenTK/Graphics/IGraphicsContext.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Source/OpenTK/Graphics/IGraphicsContext.cs b/Source/OpenTK/Graphics/IGraphicsContext.cs index 8c68404d..5ca7753b 100644 --- a/Source/OpenTK/Graphics/IGraphicsContext.cs +++ b/Source/OpenTK/Graphics/IGraphicsContext.cs @@ -57,8 +57,11 @@ namespace OpenTK.Graphics /// /// Gets or sets a System.Boolean, indicating whether automatic error checking should be performed. - /// Influences the debug version of OpenTK.dll, only. /// + /// + /// It is an error to enable error checking inside a Begin()-End() region. + /// This method only affects the debug version of OpenTK.dll. + /// bool ErrorChecking { get; set; } }