diff options
author | Dave Parks <davep@lindenlab.com> | 2021-12-06 15:29:34 +0000 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2021-12-06 15:29:34 +0000 |
commit | 5e5be92d79b6ad49f971e7b2f2ddd359d762c163 (patch) | |
tree | 3ad8f7522a9087f7529b15d4cd0c9ab427ca49ae /indra/newview/llviewertexture.cpp | |
parent | e7830b39f01d9f9c82e9e2029634dffb8386b24e (diff) |
SL-16202 Put Multi-threaded GL behind a feature flag and update featuretable (decruftify settings, compatibility pass).
Diffstat (limited to 'indra/newview/llviewertexture.cpp')
-rw-r--r-- | indra/newview/llviewertexture.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/indra/newview/llviewertexture.cpp b/indra/newview/llviewertexture.cpp index 37ed2e9f20..1e0dd2df51 100644 --- a/indra/newview/llviewertexture.cpp +++ b/indra/newview/llviewertexture.cpp @@ -1633,8 +1633,7 @@ void LLViewerFetchedTexture::scheduleCreateTexture() if (preCreateTexture()) { mNeedsCreateTexture = TRUE; -#if LL_WINDOWS //flip to 0 to revert to single-threaded OpenGL texture uploads - auto mainq = mMainQueue.lock(); + auto mainq = LLImageGLThread::sEnabled ? mMainQueue.lock() : nullptr; if (mainq) { mainq->postTo( @@ -1660,7 +1659,6 @@ void LLViewerFetchedTexture::scheduleCreateTexture() }); } else -#endif { gTextureList.mCreateTextureList.insert(this); unref(); |