summaryrefslogtreecommitdiff
path: root/indra/llprimitive
diff options
context:
space:
mode:
authorDave Parks <davep@lindenlab.com>2023-02-24 14:54:37 -0600
committerDave Parks <davep@lindenlab.com>2023-02-24 14:54:37 -0600
commit2bbbb8fe872fc1ec5c19bc46e502aa3151894a23 (patch)
treec62b7e1e948a76e0246ecb26abc899c294ca213b /indra/llprimitive
parent86427ec145c7b956ec9ff5d9aa7ddde630cf45e1 (diff)
parent5aa568f3a206d027894ad1edf1d1025136207bc2 (diff)
Merge branch 'DRTVWR-559' of github.com:secondlife/viewer into DRTVWR-559
Diffstat (limited to 'indra/llprimitive')
-rw-r--r--indra/llprimitive/llgltfmaterial.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llprimitive/llgltfmaterial.cpp b/indra/llprimitive/llgltfmaterial.cpp
index 4d7b10982a..d0ecf611ff 100644
--- a/indra/llprimitive/llgltfmaterial.cpp
+++ b/indra/llprimitive/llgltfmaterial.cpp
@@ -54,8 +54,8 @@ LLMatrix3 LLGLTFMaterial::TextureTransform::asMatrix()
const F32 cos_r = cos(mRotation);
const F32 sin_r = sin(mRotation);
rotation.mMatrix[0][0] = cos_r;
- rotation.mMatrix[0][1] = sin_r;
- rotation.mMatrix[1][0] = -sin_r;
+ rotation.mMatrix[0][1] = -sin_r;
+ rotation.mMatrix[1][0] = sin_r;
rotation.mMatrix[1][1] = cos_r;
LLMatrix3 offset;