Lines Matching refs:viewMatrix
25 const SkMatrix& viewMatrix, in create_stroke_rect_gp() argument
43 return CreateForDeviceSpace(color, coverage, localCoords, viewMatrix); in create_stroke_rect_gp()
59 static AAStrokeRectBatch* Create(const SkMatrix& viewMatrix, bool miterStroke) { in Create() argument
60 return new AAStrokeRectBatch(viewMatrix, miterStroke); in Create()
75 bool canAppend(const SkMatrix& viewMatrix, bool miterStroke) { in canAppend() argument
76 return fViewMatrix.cheapEqualTo(viewMatrix) && fMiterStroke == miterStroke; in canAppend()
112 AAStrokeRectBatch(const SkMatrix& viewMatrix,bool miterStroke) in AAStrokeRectBatch() argument
114 fViewMatrix = viewMatrix; in AAStrokeRectBatch()
135 const SkMatrix& viewMatrix() const { return fViewMatrix; } in viewMatrix() function in AAStrokeRectBatch
188 this->viewMatrix(), in onPrepareDraws()
345 if (this->usesLocalCoords() && !this->viewMatrix().cheapEqualTo(that->viewMatrix())) { in onCombineIfPossible()
533 bool* isDegenerate, const SkMatrix& viewMatrix, const SkRect& rect, in compute_rects() argument
536 viewMatrix.mapRect(&devRect, rect); in compute_rects()
541 viewMatrix.mapVectors(&devStrokeSize, 1); in compute_rects()
587 const SkMatrix& viewMatrix, in Create() argument
593 AAStrokeRectBatch* batch = AAStrokeRectBatch::Create(viewMatrix, miterStroke); in Create()
600 const SkMatrix& viewMatrix, in Create() argument
604 AAStrokeRectBatch* batch = AAStrokeRectBatch::Create(viewMatrix, isMiterStroke); in Create()
608 compute_rects(&devOutside, &devOutsideAssist, &devInside, &isDegenerate, viewMatrix, in Create()
618 const SkMatrix& viewMatrix, in Append() argument
625 if (!batch->canAppend(viewMatrix, isMiterStroke)) { in Append()
631 compute_rects(&devOutside, &devOutsideAssist, &devInside, &isDegenerate, viewMatrix, in Append()