From d43f00c757dc560cb6c324b5fe189f4fe83e6b45 Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Tue, 22 May 2012 23:42:47 +0000 Subject: [PATCH] Minor documentation updates. --- Source/GLControl/GLControl.cs | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/Source/GLControl/GLControl.cs b/Source/GLControl/GLControl.cs index adc6dcf1..f3a8541f 100644 --- a/Source/GLControl/GLControl.cs +++ b/Source/GLControl/GLControl.cs @@ -41,7 +41,10 @@ using OpenTK.Graphics.OpenGL; namespace OpenTK { /// - /// Defines a UserControl with OpenGL rendering capabilities. + /// OpenGL-aware WinForms control. + /// The WinForms designer will always call the default constructor. + /// Inherit from this class and call one of its specialized constructors + /// to enable antialiasing or custom s. /// public partial class GLControl : UserControl { @@ -64,14 +67,14 @@ namespace OpenTK #region --- Constructors --- /// - /// Constructs a new GLControl. + /// Constructs a new instance. /// public GLControl() : this(GraphicsMode.Default) { } /// - /// Constructs a new GLControl with the specified GraphicsMode. + /// Constructs a new instance with the specified GraphicsMode. /// /// The OpenTK.Graphics.GraphicsMode of the control. public GLControl(GraphicsMode mode) @@ -79,7 +82,7 @@ namespace OpenTK { } /// - /// Constructs a new GLControl with the specified GraphicsMode. + /// Constructs a new instance with the specified GraphicsMode. /// /// The OpenTK.Graphics.GraphicsMode of the control. /// The major version for the OpenGL GraphicsContext.