Lines Matching refs:left

166     // and then capturing the 'dstBounds' portion in a new RTC where the top left of 'dstBounds' is
196 // 'left' and 'right' are the sub rects of 'srcBounds' where 'mode' must be enforced.
199 SkIRect mid, left, right;
204 // to the Direction::kX case and one should think of these as 'left' and 'right' for
208 top = {dstBounds.left(), dstBounds.top() , dstBounds.right(), srcBounds.top() };
209 bottom = {dstBounds.left(), srcBounds.bottom(), dstBounds.right(), dstBounds.bottom()};
215 mid = {srcBounds.left() + radius, midA, srcBounds.right() - radius, midB};
217 // There is no middle where the bounds can be ignored. Make the left span the whole
219 left = {dstBounds.left(), mid.top(), dstBounds.right(), mid.bottom()};
221 left = {dstBounds.left(), mid.top(), mid.left() , mid.bottom()};
226 // y and swap top/bottom with left/right.
227 top = {dstBounds.left(), dstBounds.top(), srcBounds.left() , dstBounds.bottom()};
230 int midA = std::max(srcBounds.left() , dstBounds.left() );
235 left = {mid.left(), dstBounds.top(), mid.right(), dstBounds.bottom()};
237 left = {mid.left(), dstBounds.top(), mid.right(), mid.top() };
238 right = {mid.left(), mid.bottom() , mid.right(), dstBounds.bottom()};
254 // Doing mid separately will cause two draws to occur (left and right batch together). At
261 left.join(mid);
262 left.join(right);
268 left.join(top);
269 left.join(bottom);
292 convolve(left);
294 convolve(left);
657 float sLCol = srcBounds.left();
662 int sx = srcBounds.left();
696 // left since we trimmed off everything above and to the left of the original src bounds during
725 scaledDstBounds.offset(-scaledDstBoundsI.left(), -scaledDstBoundsI.top());