Home | History | Annotate | Download | only in ops

Lines Matching defs:localMatrix

31                                                 const SkMatrix* localMatrix) {
32 SkASSERT(viewMatrix.hasPerspective() || (localMatrix && localMatrix->hasPerspective()));
37 // the local rect on the cpu (in case the localMatrix also has perspective).
38 // Otherwise, if we have a local rect, then we apply the localMatrix directly to the localRect
43 localMatrix);
47 LocalCoords localCoords(LocalCoords::kHasExplicit_Type, localMatrix);
51 LocalCoords localCoords(LocalCoords::kUsePosition_Type, localMatrix);
97 const SkRect* localRect, const SkMatrix* localMatrix)
99 SkASSERT(viewMatrix.hasPerspective() || (localMatrix && localMatrix->hasPerspective()));
104 fHasLocalMatrix = SkToBool(localMatrix);
106 fLocalMatrix = *localMatrix;
228 const SkMatrix* localMatrix) {
230 new NonAAFillRectPerspectiveOp(color, viewMatrix, rect, localRect, localMatrix));
246 SkMatrix localMatrix;
248 localMatrix = GrTest::TestMatrixPerspective(random);
255 hasLocalMatrix ? &localMatrix : nullptr);