bool SkCanvas::clipRectBounds(const SkRect* bounds, SaveFlags flags,
SkIRect* intersection, const SkImageFilter* imageFilter) {
SkIRect clipBounds;
- SkRegion::Op op = SkRegion::kIntersect_Op;
if (!this->getClipDeviceBounds(&clipBounds)) {
return false;
}
if (imageFilter) {
imageFilter->filterBounds(clipBounds, ctm, &clipBounds);
- // Filters may grow the bounds beyond the device bounds.
- op = SkRegion::kReplace_Op;
}
SkIRect ir;
if (bounds) {
} else { // no user bounds, so just use the clip
ir = clipBounds;
}
+ SkASSERT(!ir.isEmpty());
if (bounds_affects_clip(flags)) {
+ // Simplify the current clips since they will be applied properly during restore()
fCachedLocalClipBoundsDirty = true;
- fClipStack->clipDevRect(ir, op);
- // early exit if the clip is now empty
- if (!fMCRec->fRasterClip.op(ir, op)) {
- return false;
- }
+ fClipStack->clipDevRect(ir, SkRegion::kReplace_Op);
+ fMCRec->fRasterClip.setRect(ir);
}
if (intersection) {