* GLControl.cs: Added a public getter for the IWindowInfo of the GLControl.

This commit is contained in:
the_fiddler 2009-09-10 14:05:59 +00:00
parent 76e338ce5e
commit 5f0e989951

View file

@ -325,6 +325,18 @@ namespace OpenTK
#endregion
#region WindowInfo
/// <summary>
/// Gets the <see cref="OpenTK.Platform.IWindowInfo"/> for this instance.
/// </summary>
public IWindowInfo WindowInfo
{
get { return implementation.WindowInfo; }
}
#endregion
#region public Bitmap GrabScreenshot()
/// <summary>Grabs a screenshot of the frontbuffer contents.</summary>