Home | History | Annotate | Download | only in core

Lines Matching full:bounds

526     SkRect bounds;
529 bounds.set(pts, count);
530 bounds.inset(-inset, -inset);
531 matrix.mapRect(&bounds);
533 bounds.roundOut(&ibounds);
956 // set the mask's bounds to the transformed bitmap-bounds,
1128 SkIRect bounds;
1129 bounds.set(x, y, x + bitmap.width(), y + bitmap.height());
1131 if (fClip->quickReject(bounds)) {
1145 if (fBounder && !fBounder->doIRect(bounds)) {
1149 SkRegion::Cliperator iter(*fClip, bounds);
1166 r.set(bounds);
1295 SkIRect* bounds = &mask.fBounds;
1304 bounds = &storage;
1318 state.fBlitter->blitMask(mask, *bounds);
2124 SkRect bounds;
2125 bounds.set(devVerts, count);
2126 if (!fBounder->doRect(bounds, paint)) {
2320 const SkRect& bounds = path.getBounds();
2323 bounds.round(&r);
2325 bounds.roundOut(&r);
2347 SkIRect* bounds) {
2355 // init our bounds from the path
2359 pathBounds.roundOut(bounds);
2367 srcM.fBounds = *bounds;
2373 *bounds = dstM.fBounds;
2376 if (clipBounds && !SkIRect::Intersects(*clipBounds, *bounds)) {
2380 // (possibly) trim the srcM bounds to reflect the clip
2382 if (clipBounds && !clipBounds->contains(*bounds)) {
2383 SkIRect tmp = *bounds;
2394 (void)bounds->intersect(tmp);