diff options
author | Alexander Gavriliuk <alexandrgproductengine@lindenlab.com> | 2023-09-05 16:54:03 +0200 |
---|---|---|
committer | Guru <alexandrgproductengine@lindenlab.com> | 2023-09-05 16:59:48 +0200 |
commit | 8d0af77d0b931781fd44e83e672f40fdb1ee458e (patch) | |
tree | 0ef4e3ef99fe665b892064b795ea7ba2957f44b0 /indra | |
parent | f7e6b2e2e1335a0086ccaa2cf435c388a9858236 (diff) |
SL-19709 Fix for fullbright shiny not factoring out exposure (update)
Diffstat (limited to 'indra')
-rw-r--r-- | indra/llrender/llvertexbuffer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llrender/llvertexbuffer.cpp b/indra/llrender/llvertexbuffer.cpp index b5dda23828..de27636c33 100644 --- a/indra/llrender/llvertexbuffer.cpp +++ b/indra/llrender/llvertexbuffer.cpp @@ -703,7 +703,7 @@ bool LLVertexBuffer::validateRange(U32 start, U32 end, U32 count, U32 indices_of for (U32 i = start; i <= end; ++i) { - if (!v->isFinite3()) + if (!v[i].isFinite3()) { LL_ERRS() << "Non-finite vertex position data detected." << LL_ENDL; } |