From 5f0e989951b2095908bd5f6247368a9f9c5dda4c Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Thu, 10 Sep 2009 14:05:59 +0000 Subject: [PATCH] * GLControl.cs: Added a public getter for the IWindowInfo of the GLControl. --- Source/GLControl/GLControl.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Source/GLControl/GLControl.cs b/Source/GLControl/GLControl.cs index 4fe2188e..c62cf40e 100644 --- a/Source/GLControl/GLControl.cs +++ b/Source/GLControl/GLControl.cs @@ -325,6 +325,18 @@ namespace OpenTK #endregion + #region WindowInfo + + /// + /// Gets the for this instance. + /// + public IWindowInfo WindowInfo + { + get { return implementation.WindowInfo; } + } + + #endregion + #region public Bitmap GrabScreenshot() /// Grabs a screenshot of the frontbuffer contents.