summaryrefslogtreecommitdiff
path: root/indra/llrender
diff options
context:
space:
mode:
authorRunitai Linden <davep@lindenlab.com>2021-10-13 09:37:04 -0500
committerRunitai Linden <davep@lindenlab.com>2021-10-13 09:37:04 -0500
commit74a2354353813db529ae123858bafba86cd12110 (patch)
tree04a1a0c55f069ae982860f22edf735e645f211ea /indra/llrender
parent52e1a45659341df68eca01822f189e0883afe66d (diff)
SL-16166 Don't use setupVertexBuffer where setupVertexBufferFast is called for (thank you, Henri!)
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 7b9388123f..103d5388d3 100644
--- a/indra/llrender/llvertexbuffer.cpp
+++ b/indra/llrender/llvertexbuffer.cpp
@@ -2544,7 +2544,7 @@ void LLVertexBuffer::setBufferFast(U32 data_mask)
if (data_mask && setup)
{
- setupVertexBuffer(data_mask); // subclass specific setup (virtual function)
+ setupVertexBufferFast(data_mask);
sSetCount++;
}
}