diff options
author | Howard Stearns <howard.stearns@gmail.com> | 2022-06-13 14:03:04 -0700 |
---|---|---|
committer | Howard Stearns <howard.stearns@gmail.com> | 2022-06-13 14:03:04 -0700 |
commit | 9d9c2037e10966bdf4b07ef3fed081c04a4ed30a (patch) | |
tree | 2650993a565233f5995e6abe44f14d48d48619ac /indra/llrender/llimagegl.cpp | |
parent | 91a9665e35a3bfeb5a2bc81586a23e70bb2c7596 (diff) | |
parent | c9a48a1cdd23a592eb25454d5e2d6c316ec93445 (diff) |
Merge branch 'DRTVWR-564' of bitbucket.org:lindenlab/viewer into SL-17485
Diffstat (limited to 'indra/llrender/llimagegl.cpp')
-rw-r--r-- | indra/llrender/llimagegl.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/indra/llrender/llimagegl.cpp b/indra/llrender/llimagegl.cpp index 46f0e1d69e..ae10142e7a 100644 --- a/indra/llrender/llimagegl.cpp +++ b/indra/llrender/llimagegl.cpp @@ -2444,10 +2444,8 @@ void LLImageGL::checkActiveThread() */ LLImageGLThread::LLImageGLThread(LLWindow* window) - // We want exactly one thread, but a very large capacity: we never want - // anyone, especially inner-loop render code, to have to block on post() - // because we're full. - : ThreadPool("LLImageGL", 1, 1024*1024) + // We want exactly one thread. + : ThreadPool("LLImageGL", 1) , mWindow(window) { LL_PROFILE_ZONE_SCOPED_CATEGORY_TEXTURE; |