Lines Matching refs:Matrix

780     Matrix,  enumerator
801 MATRIX_DEF(matrix, MatrixState::Matrix),
813 static Matrix* _parseTransformationMatrix(const char* value) in _parseTransformationMatrix()
817 auto matrix = (Matrix*)malloc(sizeof(Matrix)); in _parseTransformationMatrix()
849 if (state == MatrixState::Matrix) { in _parseTransformationMatrix()
851Matrix tmp = {points[0], points[2], points[4], points[1], points[3], points[5], 0, 0, 1}; in _parseTransformationMatrix()
855 Matrix tmp = {1, 0, points[0], 0, 1, 0, 0, 0, 1}; in _parseTransformationMatrix()
858 Matrix tmp = {1, 0, points[0], 0, 1, points[1], 0, 0, 1}; in _parseTransformationMatrix()
868 Matrix tmp = { c, -s, 0, s, c, 0, 0, 0, 1 }; in _parseTransformationMatrix()
871 Matrix tmp = { 1, 0, points[1], 0, 1, points[2], 0, 0, 1 }; in _parseTransformationMatrix()
885 Matrix tmp = { sx, 0, 0, 0, sy, 0, 0, 0, 1 }; in _parseTransformationMatrix()
890 Matrix tmp = { 1, deg, 0, 0, 1, 0, 0, 0, 1 }; in _parseTransformationMatrix()
895 Matrix tmp = { 1, 0, 0, deg, 1, 0, 0, 0, 1 }; in _parseTransformationMatrix()
2875 to->transform = (Matrix*)malloc(sizeof(Matrix)); in _inheritGradient()
2876 if (to->transform) memcpy(to->transform, from->transform, sizeof(Matrix)); in _inheritGradient()
2940 grad->transform = (Matrix*)calloc(1, sizeof(Matrix)); in _cloneGradient()
2941 if (grad->transform) memcpy(grad->transform, from->transform, sizeof(Matrix)); in _cloneGradient()
3113 to->transform = (Matrix*)malloc(sizeof(Matrix)); in _copyAttr()
3981 Matrix m = {sx, 0, 0, 0, sy, 0, 0, 0, 1}; in resize()