Home | History | Annotate | Download | only in core

Lines Matching refs:devRect

74             SkRect devRect;
75 ctm.mapRect(&devRect, localRect);
76 ir = doAA ? devRect.roundOut() : devRect.round();
110 void SkConservativeClip::opIRect(const SkIRect& devRect, SkRegion::Op op) {
112 if (!fBounds.intersect(devRect)) {
121 result.op(SkRegion(fBounds), SkRegion(devRect), op);
366 SkRect devRect;
376 matrix.mapRect(&devRect, localRect);
381 if (nearly_integral(devRect.fLeft) && nearly_integral(devRect.fTop) &&
382 nearly_integral(devRect.fRight) && nearly_integral(devRect.fBottom)) {
389 devRect.round(&ir);
396 this->applyClipRestriction(op, &devRect);
397 (void)fAA.op(devRect, op, doAA);