summaryrefslogtreecommitdiff
path: root/indra/llrender
diff options
context:
space:
mode:
authorAlexander Gavriliuk <alexandrgproductengine@lindenlab.com>2023-09-05 16:54:03 +0200
committerGuru <alexandrgproductengine@lindenlab.com>2023-09-05 16:59:48 +0200
commit8d0af77d0b931781fd44e83e672f40fdb1ee458e (patch)
tree0ef4e3ef99fe665b892064b795ea7ba2957f44b0 /indra/llrender
parentf7e6b2e2e1335a0086ccaa2cf435c388a9858236 (diff)
SL-19709 Fix for fullbright shiny not factoring out exposure (update)
Diffstat (limited to 'indra/llrender')
-rw-r--r--indra/llrender/llvertexbuffer.cpp2
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;
}