Lines Matching refs:clipBounds
21 static bool clip_bounds_quick_reject(const SkIRect& clipBounds, const SkIRect& rect) { in clip_bounds_quick_reject() argument
22 return clipBounds.isEmpty() || rect.isEmpty() || !SkIRect::Intersects(clipBounds, rect); in clip_bounds_quick_reject()
55 const SkIRect& clipBounds, in sw_draw_with_mask_filter() argument
60 if (!SkDraw::DrawToMask(devPath, &clipBounds, filter, &viewMatrix, &srcM, in sw_draw_with_mask_filter()
72 if (clip_bounds_quick_reject(clipBounds, dstM.fBounds)) { in sw_draw_with_mask_filter()
161 SkIRect clipBounds; in draw_path_with_mask_filter() local
162 clip.getConservativeBounds(drawContext->width(), drawContext->height(), &clipBounds); in draw_path_with_mask_filter()
200 clipBounds, in draw_path_with_mask_filter()
205 if (clip_bounds_quick_reject(clipBounds, finalIRect)) { in draw_path_with_mask_filter()
248 maskFilter, clipBounds, paint, style); in draw_path_with_mask_filter()
285 const SkIRect& clipBounds, in drawPathWithMaskFilter() argument