summaryrefslogtreecommitdiff
path: root/indra/llrender
diff options
context:
space:
mode:
authorRye <rye@lindenlab.com>2024-10-31 21:37:47 -0400
committerGitHub <noreply@github.com>2024-10-31 21:37:47 -0400
commit6aa18dc532f6b56dd9b6872553fa9ecb3bf0ca55 (patch)
treefaad43b153a40ef0a4429883b235ce189604e773 /indra/llrender
parentaf671c5ce8b8d9c02f8acb9137ff99e8867ec66e (diff)
parent20fc24d66564674c74b5d4ac30887af10cf9a8cd (diff)
Merge pull request #2983 from secondlife/rye/minor-fixes
Various minor crash and correctness fixes
Diffstat (limited to 'indra/llrender')
-rw-r--r--indra/llrender/llgl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llrender/llgl.cpp b/indra/llrender/llgl.cpp
index 9209cdcb51..7bc9124ac1 100644
--- a/indra/llrender/llgl.cpp
+++ b/indra/llrender/llgl.cpp
@@ -2750,7 +2750,7 @@ void LLGLUserClipPlane::setPlane(F32 a, F32 b, F32 c, F32 d)
if(cplane[2] < 0)
cplane *= -1;
- glm::mat4 suffix;
+ glm::mat4 suffix = glm::identity<glm::mat4>();
suffix = glm::row(suffix, 2, cplane);
glm::mat4 newP = suffix * P;
gGL.matrixMode(LLRender::MM_PROJECTION);