diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2024-04-18 02:46:18 +0300 |
---|---|---|
committer | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2024-04-18 23:00:43 +0300 |
commit | f660f1f0fda4d2363d351fa550b4f8818b46c2c3 (patch) | |
tree | 91032cd9607b1de7ed10b1ba00bc0cfcfa8a88c6 /indra/newview/llviewertexture.h | |
parent | 3758618949684641fc94b5c9478d9002706213cc (diff) |
viewer#1260 Fix thumbnail preview not loading
Standard and scaled textures couldn't share workers and if one finished
a request, second one failed to start a new one.
Diffstat (limited to 'indra/newview/llviewertexture.h')
-rw-r--r-- | indra/newview/llviewertexture.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llviewertexture.h b/indra/newview/llviewertexture.h index 35fb0a2237..3d8c3e57af 100644 --- a/indra/newview/llviewertexture.h +++ b/indra/newview/llviewertexture.h @@ -452,7 +452,8 @@ protected: S32 mKnownDrawHeight; BOOL mKnownDrawSizeChanged ; std::string mUrl; - + + S32 mLastWorkerDiscardLevel; S32 mRequestedDiscardLevel; F32 mRequestedDownloadPriority; S32 mFetchState; |