1
0
Fork 0
mirror of https://github.com/Ryujinx/Opentk.git synced 2025-03-08 10:10:00 +00:00

* 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 abcad58092
commit ba53b6851d

View file

@ -325,6 +325,18 @@ namespace OpenTK
#endregion #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() #region public Bitmap GrabScreenshot()
/// <summary>Grabs a screenshot of the frontbuffer contents.</summary> /// <summary>Grabs a screenshot of the frontbuffer contents.</summary>