Lines Matching refs:devPathBounds
35 SkIRect* devPathBounds, in get_path_and_clip_bounds() argument
46 *devPathBounds = SkIRect::MakeWH(rt->width(), rt->height()); in get_path_and_clip_bounds()
55 *devPathBounds = *devClipBounds; in get_path_and_clip_bounds()
56 if (!devPathBounds->intersect(pathIBounds)) { in get_path_and_clip_bounds()
58 *devPathBounds = pathIBounds; in get_path_and_clip_bounds()
62 *devPathBounds = SkIRect::EmptyIRect(); in get_path_and_clip_bounds()
85 const SkIRect& devPathBounds) { in draw_around_inv_path() argument
92 if (devClipBounds.fTop < devPathBounds.fTop) { in draw_around_inv_path()
94 devClipBounds.fRight, devPathBounds.fTop); in draw_around_inv_path()
97 if (devClipBounds.fLeft < devPathBounds.fLeft) { in draw_around_inv_path()
98 rect.iset(devClipBounds.fLeft, devPathBounds.fTop, in draw_around_inv_path()
99 devPathBounds.fLeft, devPathBounds.fBottom); in draw_around_inv_path()
102 if (devClipBounds.fRight > devPathBounds.fRight) { in draw_around_inv_path()
103 rect.iset(devPathBounds.fRight, devPathBounds.fTop, in draw_around_inv_path()
104 devClipBounds.fRight, devPathBounds.fBottom); in draw_around_inv_path()
107 if (devClipBounds.fBottom > devPathBounds.fBottom) { in draw_around_inv_path()
108 rect.iset(devClipBounds.fLeft, devPathBounds.fBottom, in draw_around_inv_path()
124 SkIRect devPathBounds, devClipBounds; in onDrawPath() local
126 *args.fViewMatrix, &devPathBounds, &devClipBounds)) { in onDrawPath()
129 *args.fViewMatrix, devClipBounds, devPathBounds); in onDrawPath()
136 devPathBounds, in onDrawPath()
143 args.fColor, *args.fViewMatrix, devPathBounds); in onDrawPath()
147 devClipBounds, devPathBounds); in onDrawPath()