Home | History | Annotate | Download | only in graphics

Lines Matching refs:topRight

1393     fillBetweenRoundedRects(outer.rect(), outer.radii().topLeft(), outer.radii().topRight(), outer.radii().bottomLeft(), outer.radii().bottomRight(),
1394 inner.rect(), inner.radii().topLeft(), inner.radii().topRight(), inner.radii().bottomLeft(), inner.radii().bottomRight(), color);
1397 void GraphicsContext::fillRoundedRect(const IntRect& rect, const IntSize& topLeft, const IntSize& topRight,
1404 if (topLeft.width() + topRight.width() > rect.width()
1407 || topRight.height() + bottomRight.height() > rect.height()) {
1416 setRadii(radii, topLeft, topRight, bottomRight, bottomLeft);
1501 setRadii(radii, wkRadii.topLeft(), wkRadii.topRight(), wkRadii.bottomRight(), wkRadii.bottomLeft());
1728 fillRoundedRect(rect.rect(), rect.radii().topLeft(), rect.radii().topRight(), rect.radii().bottomLeft(), rect.radii().bottomRight(), color);
1840 void GraphicsContext::setRadii(SkVector* radii, IntSize topLeft, IntSize topRight, IntSize bottomRight, IntSize bottomLeft)
1844 radii[SkRRect::kUpperRight_Corner].set(SkIntToScalar(topRight.width()),
1845 SkIntToScalar(topRight.height()));