diff options
author | Runitai Linden <davep@lindenlab.com> | 2021-11-22 18:42:56 -0600 |
---|---|---|
committer | Runitai Linden <davep@lindenlab.com> | 2021-11-22 18:42:56 -0600 |
commit | 9b0d8c7e629597fd8e6dfb91a6b8f625b34ab274 (patch) | |
tree | f6c6827da1acd3a442663a050d4a93d55925ee0f /indra/llwindow | |
parent | cc34e26ef7e74845e4af9e5c5d450c0b12a268e0 (diff) |
SL-16094 More profile hooks for threading code, remove redundant wglCreateContextAttribs call
Diffstat (limited to 'indra/llwindow')
-rw-r--r-- | indra/llwindow/llwindowwin32.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llwindow/llwindowwin32.cpp b/indra/llwindow/llwindowwin32.cpp index b845f75ce4..777117b7c8 100644 --- a/indra/llwindow/llwindowwin32.cpp +++ b/indra/llwindow/llwindowwin32.cpp @@ -1697,7 +1697,7 @@ void* LLWindowWin32::createSharedContext() 0 }; - HGLRC rc = wglCreateContextAttribsARB(mhDC, mhRC, attribs); + HGLRC rc = 0; bool done = false; while (!done) |