diff options
author | Rye Cogtail <rye@lindenlab.com> | 2024-10-30 17:19:01 -0400 |
---|---|---|
committer | Rye <rye@lindenlab.com> | 2024-10-30 22:08:07 -0700 |
commit | 20fc24d66564674c74b5d4ac30887af10cf9a8cd (patch) | |
tree | 6b52dbb4a3a3d8385c45d23a4917e3d217539eac | |
parent | 914a955ea2c32e574af64d01d8c8be8ce9d23504 (diff) |
Fix uninitialized glm::mat4 in LLGL
-rw-r--r-- | indra/llrender/llgl.cpp | 2 |
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); |