Home | History | Annotate | Download | only in filters

Lines Matching refs:mMatrix

22     private final float[] mMatrix = new float[16];
37 System.arraycopy(matrix.mMatrix, 0, mMatrix, 0, matrix.mMatrix.length);
46 return mMatrix;
53 Arrays.fill(mMatrix, 0);
54 mMatrix[0] = mMatrix[5] = mMatrix[10] = mMatrix[15] = 1;
58 mMatrix[0] = mMatrix[1] = mMatrix[2] = 0.3086f;
59 mMatrix[4] = mMatrix[5] = mMatrix[6] = 0.6094f;
60 mMatrix[8] = mMatrix[9] = mMatrix[10] = 0.0820f;
71 temp[y4 + x] = mMatrix[y4 + 0] * a[x]
72 + mMatrix[y4 + 1] * a[4 + x]
73 + mMatrix[y4 + 2] * a[8 + x]
74 + mMatrix[y4 + 3] * a[12 + x];
78 mMatrix[i] = temp[i];
84 float[] tmp = c.mMatrix;
97 float[] tmp = c.mMatrix;
110 float[] tmp = c.mMatrix;
122 float[] tmp = c.mMatrix;
166 mMatrix[0] = (1 - s) * RLUM + s;
167 mMatrix[1] = (1 - s) * RLUM;
168 mMatrix[2] = (1 - s) * RLUM;
169 mMatrix[4] = (1 - s) * GLUM;
170 mMatrix[5] = (1 - s) * GLUM + s;
171 mMatrix[6] = (1 - s) * GLUM;
172 mMatrix[8] = (1 - s) * BLUM;
173 mMatrix[9] = (1 - s) * BLUM;
174 mMatrix[10] = (1 - s) * BLUM + s;
186 return r * mMatrix[0] + g * mMatrix[4] + b * mMatrix[8] + mMatrix[12];
198 return r * mMatrix[1] + g * mMatrix[5] + b * mMatrix[9] + mMatrix[13];
210 return r * mMatrix[2] + g * mMatrix[6] + b * mMatrix[10] + mMatrix[14];
214 return r * mMatrix[0] + g * mMatrix[4] + b * mMatrix[8] + mMatrix[12];
218 return r * mMatrix[1] + g * mMatrix[5] + b * mMatrix[9] + mMatrix[13];
222 return r * mMatrix[2] + g * mMatrix[6] + b * mMatrix[10] + mMatrix[14];