mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 03:45:39 +00:00
Added PointToClient and PointToScreen placeholders.
This commit is contained in:
parent
3f705cba4b
commit
6ef09165b2
|
@ -478,6 +478,29 @@ namespace OpenTK.Platform.X11
|
|||
|
||||
#endregion
|
||||
|
||||
#region PointToClient
|
||||
|
||||
public void PointToClient(ref System.Drawing.Point p)
|
||||
{
|
||||
/*
|
||||
if (!Functions.ScreenToClient(this.Handle, p))
|
||||
throw new InvalidOperationException(String.Format(
|
||||
"Could not convert point {0} from client to screen coordinates. Windows error: {1}",
|
||||
p.ToString(), Marshal.GetLastWin32Error()));
|
||||
*/
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region PointToScreen
|
||||
|
||||
public void PointToScreen(ref System.Drawing.Point p)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#endregion
|
||||
|
||||
#region --- IResizable Members ---
|
||||
|
|
Loading…
Reference in a new issue