summaryrefslogtreecommitdiff
path: root/indra/llui
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2024-09-19 11:48:33 -0400
committerNat Goodspeed <nat@lindenlab.com>2024-09-19 11:48:33 -0400
commit8342d68ea9d668162bffb6e821c9d8f8d5683c10 (patch)
tree6450afad234b66c08e6e314a847edee1fb77bff2 /indra/llui
parent8c40e6f0a9e211ec22331385dc66b5ff5233859c (diff)
parent6d842ac0af814a088c56f437dc885e4ce58b61a8 (diff)
Merge branch 'develop' into frame-profile-json
Diffstat (limited to 'indra/llui')
-rw-r--r--indra/llui/llbadge.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/indra/llui/llbadge.cpp b/indra/llui/llbadge.cpp
index 6875e7c0ad..42b6f1f07b 100644
--- a/indra/llui/llbadge.cpp
+++ b/indra/llui/llbadge.cpp
@@ -204,11 +204,11 @@ void renderBadgeBackground(F32 centerX, F32 centerY, F32 width, F32 height, cons
(F32)ll_round(x) + width,
(F32)ll_round(y) + height);
- LLVector3 vertices[4];
- vertices[0] = LLVector3(screen_rect.mLeft, screen_rect.mTop, 1.0f);
- vertices[1] = LLVector3(screen_rect.mRight, screen_rect.mTop, 1.0f);
- vertices[2] = LLVector3(screen_rect.mLeft, screen_rect.mBottom, 1.0f);
- vertices[3] = LLVector3(screen_rect.mRight, screen_rect.mBottom, 1.0f);
+ LLVector4a vertices[4];
+ vertices[0].set(screen_rect.mLeft, screen_rect.mTop, 1.0f);
+ vertices[1].set(screen_rect.mRight, screen_rect.mTop, 1.0f);
+ vertices[2].set(screen_rect.mLeft, screen_rect.mBottom, 1.0f);
+ vertices[3].set(screen_rect.mRight, screen_rect.mBottom, 1.0f);
gGL.begin(LLRender::TRIANGLE_STRIP);
{