diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2021-09-28 20:10:06 +0100 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2021-09-28 20:10:06 +0100 |
commit | a184a0fbeea8a9dea855dc6e4fd29d81803fa738 (patch) | |
tree | b44e1523c8d33eafc8a43c4a30830b580122c9b8 /indra/newview/lltexturefetch.cpp | |
parent | 502d37913d3df8abb4e8e103c446e24ded2996a6 (diff) |
SL-15999 - noninteractive mode: create minimal objects,load no textures
Diffstat (limited to 'indra/newview/lltexturefetch.cpp')
-rw-r--r-- | indra/newview/lltexturefetch.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/lltexturefetch.cpp b/indra/newview/lltexturefetch.cpp index f64db7beb5..9126360eed 100644 --- a/indra/newview/lltexturefetch.cpp +++ b/indra/newview/lltexturefetch.cpp @@ -1139,6 +1139,10 @@ void LLTextureFetchWorker::startWork(S32 param) // Threads: Ttf bool LLTextureFetchWorker::doWork(S32 param) { + if (gNonInteractive) + { + return true; + } static const LLCore::HttpStatus http_not_found(HTTP_NOT_FOUND); // 404 static const LLCore::HttpStatus http_service_unavail(HTTP_SERVICE_UNAVAILABLE); // 503 static const LLCore::HttpStatus http_not_sat(HTTP_REQUESTED_RANGE_NOT_SATISFIABLE); // 416; |