Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0e95685f authored by Christopher Tate's avatar Christopher Tate Committed by Android Git Automerger
Browse files

am b5a72043: Merge "Fix array index oob in Matrix3f.loadRotate()."

* commit 'b5a72043':
  Fix array index oob in Matrix3f.loadRotate().
parents 6bcecb20 b5a72043
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -138,7 +138,7 @@ public class Matrix3f {
        mMat[6] =  zx*nc + ys;
        mMat[1] =  xy*nc + zs;
        mMat[4] = y*y*nc +  c;
        mMat[9] =  yz*nc - xs;
        mMat[7] =  yz*nc - xs;
        mMat[2] =  zx*nc - ys;
        mMat[6] =  yz*nc + xs;
        mMat[8] = z*z*nc +  c;