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

Commit 49959d46 authored by Stephen Hines's avatar Stephen Hines Committed by Android Git Automerger
Browse files

am 89254a11: am e01675cd: am 2d5cbc92: Merge "2X2 matrix needs 4 float...

am 89254a11: am e01675cd: am 2d5cbc92: Merge "2X2 matrix needs 4 float elements." into honeycomb-mr1

* commit '89254a11':
  2X2 matrix needs 4 float elements.
parents a142f4b2 89254a11
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -42,7 +42,7 @@ public class Matrix2f {
    *                  floats long
    */
    public Matrix2f(float[] dataArray) {
        mMat = new float[2];
        mMat = new float[4];
        System.arraycopy(dataArray, 0, mMat, 0, mMat.length);
    }