mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-25 07:35:32 +00:00
Added NotImplementedException to Visible property.
This commit is contained in:
parent
d4376a75e0
commit
dca3f30460
|
@ -196,6 +196,10 @@ namespace OpenTK
|
||||||
|
|
||||||
#region public bool Fullscreen
|
#region public bool Fullscreen
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// TODO: This property is not implemented.
|
||||||
|
/// Gets or sets a value indicating whether the GameWindow is in fullscrren mode.
|
||||||
|
/// </summary>
|
||||||
public bool Fullscreen
|
public bool Fullscreen
|
||||||
{
|
{
|
||||||
get { return glWindow.Fullscreen; }
|
get { return glWindow.Fullscreen; }
|
||||||
|
@ -260,16 +264,19 @@ namespace OpenTK
|
||||||
#region public bool Visible
|
#region public bool Visible
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// TODO: This property is not implemented
|
||||||
/// Gets or sets a value indicating whether the GameWindow is visible.
|
/// Gets or sets a value indicating whether the GameWindow is visible.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public bool Visible
|
public bool Visible
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
|
throw new NotImplementedException();
|
||||||
return glWindow.Visible;
|
return glWindow.Visible;
|
||||||
}
|
}
|
||||||
set
|
set
|
||||||
{
|
{
|
||||||
|
throw new NotImplementedException();
|
||||||
glWindow.Visible = value;
|
glWindow.Visible = value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue