Home | History | Annotate | Download | only in ui

Lines Matching defs:mMatrix

41     private float[] mMatrix = new float[4 * 16];
68 Matrix.setIdentityM(mMatrix, TOP_M);
69 Matrix.setIdentityM(mMatrix, LEFT_M);
70 Matrix.setIdentityM(mMatrix, BOTTOM_M);
71 Matrix.setIdentityM(mMatrix, RIGHT_M);
73 Matrix.rotateM(mMatrix, LEFT_M, 90, 0, 0, 1);
74 Matrix.scaleM(mMatrix, LEFT_M, 1, -1, 1);
76 Matrix.translateM(mMatrix, BOTTOM_M, 0, h, 0);
77 Matrix.scaleM(mMatrix, BOTTOM_M, 1, -1, 1);
79 Matrix.translateM(mMatrix, RIGHT_M, w, 0, 0);
80 Matrix.rotateM(mMatrix, RIGHT_M, 90, 0, 0, 1);
89 canvas.multiplyMatrix(mMatrix, i * 16);