Home | History | Annotate | Download | only in renderscript

Lines Matching defs:mMat

30         mMat = new float[4];
42 mMat = new float[4];
43 System.arraycopy(dataArray, 0, mMat, 0, mMat.length);
53 return mMat;
65 return mMat[x*2 + y];
75 mMat[x*2 + y] = v;
82 mMat[0] = 1;
83 mMat[1] = 0;
85 mMat[2] = 0;
86 mMat[3] = 1;
95 System.arraycopy(src.getArray(), 0, mMat, 0, mMat.length);
108 mMat[0] = c;
109 mMat[1] = -s;
110 mMat[2] = s;
111 mMat[3] = c;
122 mMat[0] = x;
123 mMat[3] = y;
184 float temp = mMat[1];
185 mMat[1] = mMat[2];
186 mMat[2] = temp;
189 final float[] mMat;