Stop using DisplayLocks for every MakeCurrent context call.

This commit is contained in:
Shane Kelly 2017-12-09 09:39:44 +02:00
parent bbfc98853e
commit 67563520ff

View file

@ -319,14 +319,12 @@ namespace OpenTK.Platform.X11
Handle, System.Threading.Thread.CurrentThread.ManagedThreadId, Display));
bool result;
using (new XLock(Display))
{
result = Glx.MakeCurrent(Display, IntPtr.Zero, IntPtr.Zero);
if (result)
{
currentWindow = null;
}
}
Debug.Print("{0}", result ? "done!" : "failed.");
}
else
@ -342,14 +340,15 @@ namespace OpenTK.Platform.X11
throw new InvalidOperationException("Invalid display, window or context.");
}
using (new XLock(Display))
{
result = Glx.MakeCurrent(Display, w.Handle, Handle);
if (result)
{
currentWindow = w;
}
}
if (!result)
{
@ -487,12 +486,9 @@ namespace OpenTK.Platform.X11
IntPtr display = Display;
if (IsCurrent)
{
using (new XLock(display))
{
Glx.MakeCurrent(display, IntPtr.Zero, IntPtr.Zero);
}
}
using (new XLock(display))
{
Glx.DestroyContext(display, Handle);