From: José Fonseca Date: Wed, 17 Jun 2009 14:22:32 +0000 (+0100) Subject: progs/wgl: Tweak the initialization wait in wglthreads. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6e24fdeae5038b63b6b0f94b05d4529a5f62d6ae;p=mesa.git progs/wgl: Tweak the initialization wait in wglthreads. There was still a non-zero probability for wglShareLists of failing. --- diff --git a/progs/wgl/wglthreads/wglthreads.c b/progs/wgl/wglthreads/wglthreads.c index 405b5db8842..27dca10f2a0 100644 --- a/progs/wgl/wglthreads/wglthreads.c +++ b/progs/wgl/wglthreads/wglthreads.c @@ -507,9 +507,9 @@ ThreadProc(void *p) struct winthread *wt = (struct winthread *) p; HGLRC share; - /* Wait for first thread context */ + /* Wait for the previous thread */ if(Texture && wt->Index > 0) { - WaitForSingleObject(WinThreads[0].hEventInitialised, INFINITE); + WaitForSingleObject(WinThreads[wt->Index - 1].hEventInitialised, INFINITE); share = WinThreads[0].Context; } else