* GLControl.cs: Added a public getter for the IWindowInfo of the GLControl.
This commit is contained in:
parent
76e338ce5e
commit
5f0e989951
1 changed files with 12 additions and 0 deletions
|
@ -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>
|
||||||
|
|
Loading…
Reference in a new issue