Lines Matching refs:transformMatrix
113 std::array<float, TRANSFORM_MATRIX_ELE_COUNT> *transformMatrix)
125 *transformMatrix = MatrixProduct(*transformMatrix, rotate90);
128 *transformMatrix = MatrixProduct(*transformMatrix, rotate180);
131 *transformMatrix = MatrixProduct(*transformMatrix, rotate270);
134 *transformMatrix = MatrixProduct(*transformMatrix, flipH);
137 *transformMatrix = MatrixProduct(*transformMatrix, flipV);
140 *transformMatrix = MatrixProduct(flipH, rotate90);
143 *transformMatrix = MatrixProduct(flipV, rotate90);
146 *transformMatrix = MatrixProduct(flipH, rotate180);
149 *transformMatrix = MatrixProduct(flipV, rotate180);
152 *transformMatrix = MatrixProduct(flipH, rotate270);
155 *transformMatrix = MatrixProduct(flipV, rotate270);
172 std::array<float, TRANSFORM_MATRIX_ELE_COUNT> transformMatrix = {1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1};
173 ComputeTransformByMatrix(transform, &transformMatrix);
190 transformMatrix = MatrixProduct(cropMatrix, transformMatrix);
194 transformMatrix.data(), sizeof(transformMatrix));
201 std::array<float, TRANSFORM_MATRIX_ELE_COUNT> *transformMatrix)
213 *transformMatrix = rotate90;
216 *transformMatrix = rotate180;
219 *transformMatrix = rotate270;
222 *transformMatrix = flipH;
225 *transformMatrix = flipV;
228 *transformMatrix = MatrixProduct(flipV, rotate90);
231 *transformMatrix = MatrixProduct(flipH, rotate90);
234 *transformMatrix = flipV;
237 *transformMatrix = flipH;
240 *transformMatrix = MatrixProduct(flipH, rotate90);
243 *transformMatrix = MatrixProduct(flipV, rotate90);
270 std::array<float, TRANSFORM_MATRIX_ELE_COUNT> transformMatrix = {1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1};
271 ComputeTransformByMatrixV2(transform, &transformMatrix);
288 transformMatrix = MatrixProduct(cropMatrix, transformMatrix);
292 transformMatrix = MatrixProduct(flipV, transformMatrix);
295 transformMatrix.data(), sizeof(transformMatrix));