Home | History | Annotate | Download | only in skia

Lines Matching refs:thickness

286 void GraphicsContext::addInnerRoundedRectClip(const IntRect& rect, int thickness)
298 if (2 * thickness < rect.width() && 2 * thickness < rect.height()) {
299 // Adding one to the thickness doesn't make the border too thick as
302 r.inset(SkIntToScalar(thickness + 1), SkIntToScalar(thickness + 1));
678 int thickness = SkMax32(static_cast<int>(strokeThickness()), 1);
683 r.fBottom = r.fTop + SkIntToScalar(thickness);
1045 void GraphicsContext::setPlatformStrokeThickness(float thickness)
1050 platformContext()->setStrokeThickness(thickness);