Lines Matching refs:xpsTransform
517 IXpsOMMatrixTransform** xpsTransform) { in createXpsTransform() argument
520 *xpsTransform = nullptr; in createXpsTransform()
531 HRM(this->fXpsFactory->CreateMatrixTransform(&rawXpsMatrix, xpsTransform), in createXpsTransform()
1234 SkTScopedComPtr<IXpsOMMatrixTransform> xpsTransform; in internalDrawRect() local
1235 HRV(this->createXpsTransform(this->ctm(), &xpsTransform)); in internalDrawRect()
1236 if (xpsTransform.get()) { in internalDrawRect()
1237 HRVM(shadedGeometry->SetTransformLocal(xpsTransform.get()), in internalDrawRect()
1672 SkTScopedComPtr<IXpsOMMatrixTransform> xpsTransform; in drawPath() local
1673 HRV(this->createXpsTransform(matrix, &xpsTransform)); in drawPath()
1675 if (xpsTransform.get()) { in drawPath()
1676 HRVM(shadedGeometry->SetTransformLocal(xpsTransform.get()), in drawPath()
2029 SkTScopedComPtr<IXpsOMMatrixTransform> xpsTransform; in drawDevice() local
2032 HRVM(this->fXpsFactory->CreateMatrixTransform(&rawTransform, &xpsTransform), in drawDevice()
2034 HRVM(that->fCurrentXpsCanvas->SetTransformLocal(xpsTransform.get()), in drawDevice()