Lines Matching refs:m

109         Matrix m = {vBox.w, 0, vBox.x, 0, vBox.h, vBox.y, 0, 0, 1};  in _applyLinearGradientProperty()  local
110 if (isTransform) _transformMultiply(&m, &finalTransform); in _applyLinearGradientProperty()
112 finalTransform = m; in _applyLinearGradientProperty()
168 Matrix m = {vBox.w, 0, vBox.x, 0, vBox.h, vBox.y, 0, 0, 1}; in _applyRadialGradientProperty() local
169 if (isTransform) _transformMultiply(&m, &finalTransform); in _applyRadialGradientProperty()
171 finalTransform = m; in _applyRadialGradientProperty()
216 Matrix m = {1, 0, node->node.use.x, 0, 1, node->node.use.y, 0, 0, 1}; in _appendClipUseNode() local
217 finalTransform *= m; in _appendClipUseNode()
236 Matrix m = {1, 0, 0, 0, 1, 0, 0, 0, 1}; in _compositionTransform() local
239 m = *node->transform; in _compositionTransform()
242 m *= *compNode->transform; in _compositionTransform()
248 m *= mBBox; in _compositionTransform()
250 return m; in _compositionTransform()
474 auto m = transform ? transform : (node->transform ? node->transform : nullptr); in _appendClipShape() local
477 if (m) { in _appendClipShape()
484 if (m) { in _appendClipShape()
490 *p *= *m; in _appendClipShape()
628 Matrix m = {1, 0, 0, 0, 1, 0, 0, 0, 1}; in _imageBuildHelper() local
632 m = {sx, 0, node->node.image.x, 0, sy, node->node.image.y, 0, 0, 1}; in _imageBuildHelper()
634 if (node->transform) m = *node->transform * m; in _imageBuildHelper()
635 picture->transform(m); in _imageBuildHelper()
921 Matrix m = _calculateAspectRatioMatrix(align, meetOrSlice, w, h, vBox); in svgSceneBuild() local
922 docNode->transform(m); in svgSceneBuild()