Stop using DisplayLocks for every MakeCurrent context call.
This commit is contained in:
parent
bbfc98853e
commit
67563520ff
1 changed files with 12 additions and 16 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue