mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-23 19:35:29 +00:00
[Mac] Fixed NRE and initial position on 64bit
This commit is contained in:
parent
c65e2a4d9e
commit
5b529647c9
|
@ -206,7 +206,6 @@ namespace OpenTK.Platform.MacOS
|
||||||
|
|
||||||
// Set up behavior
|
// Set up behavior
|
||||||
Cocoa.SendIntPtr(windowPtr, Selector.Get("setDelegate:"), windowPtr); // The window class acts as its own delegate
|
Cocoa.SendIntPtr(windowPtr, Selector.Get("setDelegate:"), windowPtr); // The window class acts as its own delegate
|
||||||
Cocoa.SendVoid(windowPtr, Selector.Get("cascadeTopLeftFromPoint:"), System.Drawing.PointF.Empty);
|
|
||||||
Cocoa.SendVoid(windowPtr, Selector.Get("makeKeyWindow"));
|
Cocoa.SendVoid(windowPtr, Selector.Get("makeKeyWindow"));
|
||||||
SetTitle(title, false);
|
SetTitle(title, false);
|
||||||
|
|
||||||
|
@ -247,7 +246,12 @@ namespace OpenTK.Platform.MacOS
|
||||||
{
|
{
|
||||||
ResetTrackingArea();
|
ResetTrackingArea();
|
||||||
}
|
}
|
||||||
GraphicsContext.CurrentContext.Update(windowInfo);
|
|
||||||
|
var context = GraphicsContext.CurrentContext;
|
||||||
|
if (context != null)
|
||||||
|
{
|
||||||
|
context.Update(windowInfo);
|
||||||
|
}
|
||||||
|
|
||||||
if (suppressResize == 0)
|
if (suppressResize == 0)
|
||||||
OnResize(EventArgs.Empty);
|
OnResize(EventArgs.Empty);
|
||||||
|
|
Loading…
Reference in a new issue