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