Lines Matching refs:devPathBounds
164 const SkIRect& devPathBounds) { in DrawAroundInvPath() argument
171 if (devClipBounds.fTop < devPathBounds.fTop) { in DrawAroundInvPath()
173 SkIntToScalar(devClipBounds.fRight), SkIntToScalar(devPathBounds.fTop)); in DrawAroundInvPath()
177 if (devClipBounds.fLeft < devPathBounds.fLeft) { in DrawAroundInvPath()
178 rect.setLTRB(SkIntToScalar(devClipBounds.fLeft), SkIntToScalar(devPathBounds.fTop), in DrawAroundInvPath()
179 SkIntToScalar(devPathBounds.fLeft), SkIntToScalar(devPathBounds.fBottom)); in DrawAroundInvPath()
183 if (devClipBounds.fRight > devPathBounds.fRight) { in DrawAroundInvPath()
184 rect.setLTRB(SkIntToScalar(devPathBounds.fRight), SkIntToScalar(devPathBounds.fTop), in DrawAroundInvPath()
185 SkIntToScalar(devClipBounds.fRight), SkIntToScalar(devPathBounds.fBottom)); in DrawAroundInvPath()
189 if (devClipBounds.fBottom > devPathBounds.fBottom) { in DrawAroundInvPath()
190 rect.setLTRB(SkIntToScalar(devClipBounds.fLeft), SkIntToScalar(devPathBounds.fBottom), in DrawAroundInvPath()