Home | History | Annotate | Download | only in renderscript

Lines Matching defs:mMat

33         mMat = new float[4];
45 mMat = new float[4];
46 System.arraycopy(dataArray, 0, mMat, 0, mMat.length);
56 return mMat;
68 return mMat[x*2 + y];
78 mMat[x*2 + y] = v;
85 mMat[0] = 1;
86 mMat[1] = 0;
88 mMat[2] = 0;
89 mMat[3] = 1;
98 System.arraycopy(src.getArray(), 0, mMat, 0, mMat.length);
111 mMat[0] = c;
112 mMat[1] = -s;
113 mMat[2] = s;
114 mMat[3] = c;
125 mMat[0] = x;
126 mMat[3] = y;
187 float temp = mMat[1];
188 mMat[1] = mMat[2];
189 mMat[2] = temp;
192 final float[] mMat;