Lines Matching refs:scale
116 static void scaleMatrix(const SkPath& one, const SkPath& two, SkMatrix& scale) {
129 scale.reset();
130 scale.preScale(hScale, vScale);
139 scale.postTranslate(dx, dy);
182 SkMatrix scale;
183 scaleMatrix(one, two, scale);
184 one.transform(scale, &scaledOne);
185 two.transform(scale, &scaledTwo);
252 const SkPathOp shapeOp, const SkMatrix& scale) {
270 const SkPath& a, const SkPath& b, const SkPathOp shapeOp, const SkMatrix& scale,
287 showPathOpPath(testName, one, two, a, b, scaledOne, scaledTwo, shapeOp, scale);
581 SkMatrix scale;
582 scaleMatrix(a, b, scale);
585 scaledA.addPath(a, scale);
587 scaledB.addPath(b, scale);
595 scaledOut.addPath(out, scale);
598 a, b, shapeOp, scale, expectMatch);