Home | History | Annotate | Download | only in renderscript

Lines Matching defs:mMat

33         mMat = new float[9];
45 mMat = new float[9];
46 System.arraycopy(dataArray, 0, mMat, 0, mMat.length);
56 return mMat;
68 return mMat[x*3 + y];
78 mMat[x*3 + y] = v;
85 mMat[0] = 1;
86 mMat[1] = 0;
87 mMat[2] = 0;
89 mMat[3] = 0;
90 mMat[4] = 1;
91 mMat[5] = 0;
93 mMat[6] = 0;
94 mMat[7] = 0;
95 mMat[8] = 1;
104 System.arraycopy(src.getArray(), 0, mMat, 0, mMat.length);
136 mMat[0] = x*x*nc + c;
137 mMat[3] = xy*nc - zs;
138 mMat[6] = zx*nc + ys;
139 mMat[1] = xy*nc + zs;
140 mMat[4] = y*y*nc + c;
141 mMat[7] = yz*nc - xs;
142 mMat[2] = zx*nc - ys;
143 mMat[5] = yz*nc + xs;
144 mMat[8] = z*z*nc + c;
158 mMat[0] = c;
159 mMat[1] = -s;
160 mMat[3] = s;
161 mMat[4] = c;
172 mMat[0] = x;
173 mMat[4] = y;
185 mMat[0] = x;
186 mMat[4] = y;
187 mMat[8] = z;
199 mMat[6] = x;
200 mMat[7] = y;
311 float temp = mMat[i*3 + j];
312 mMat[i*3 + j] = mMat[j*3 + i];
313 mMat[j*3 + i] = temp;
318 final float[] mMat;