mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-23 11:05:40 +00:00
Merge remote-tracking branch 'opentk/develop' into develop
This commit is contained in:
commit
f310f4a119
|
@ -457,7 +457,7 @@ namespace OpenTK.Platform.Android
|
|||
|
||||
// if the render thread is paused, let it run so it exits
|
||||
pauseSignal.Set ();
|
||||
stopWatch.Stop ();
|
||||
if (stopWatch != null) stopWatch.Stop ();
|
||||
}
|
||||
|
||||
void PauseThread ()
|
||||
|
|
|
@ -57,7 +57,7 @@ namespace OpenTK.Platform.Android {
|
|||
|
||||
public bool HasSurface
|
||||
{
|
||||
get { return eglWindowInfo.Surface != IntPtr.Zero; }
|
||||
get { return eglWindowInfo != null && eglWindowInfo.Surface != IntPtr.Zero; }
|
||||
}
|
||||
|
||||
public ISurfaceHolder Holder {
|
||||
|
|
|
@ -269,7 +269,6 @@ namespace OpenTK.Platform
|
|||
|
||||
if (e.XDelta == 0 && e.YDelta == 0)
|
||||
{
|
||||
Debug.WriteLine("OnMouseMove called without moving the mouse");
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue