Lines Matching refs:mx
212 SkMatrix mx, inv; in clip() local
214 mx.setAll(v.fX, -v.fY, p0.fX, in clip()
217 SkAssertResult(mx.invert(&inv)); in clip()
267 return rec.fResult.detach().makeTransform(mx); in clip()
342 static void compute_half_planes(const SkMatrix& mx, SkScalar W, SkScalar H, in compute_half_planes() argument
344 SkScalar a = mx[0], b = mx[1], c = mx[2], in compute_half_planes()
345 d = mx[3], e = mx[4], f = mx[5], in compute_half_planes()
346 g = mx[6], h = mx[7], i = mx[8]; in compute_half_planes()
367 SkMatrix mx; in onDrawContent() local
372 mx.setPolyToPoly(src, fPts, 4); in onDrawContent()
379 canvas->concat(mx); in onDrawContent()
391 compute_half_planes(mx, 400, 400, planes); in onDrawContent()
513 SkM44 mx = this->get44({0, 0, 400, 400}); in onDrawContent() local
523 canvas->concat(mx); in onDrawContent()
533 if (SkPathPriv::PerspectiveClip(fPath, mx.asM33(), &clippedPath)) { in onDrawContent()
538 canvas->concat(mx); in onDrawContent()
542 SkHalfPlane hpw = half_plane_w0(mx.asM33()); in onDrawContent()