Home
last modified time | relevance | path

Searched refs:boundsPaint (Results 1 – 3 of 3) sorted by relevance

/third_party/skia/tools/viewer/
DMSKPSlide.cpp106 SkPaint boundsPaint; in draw() local
107 boundsPaint.setStyle(SkPaint::kStroke_Style); in draw()
108 boundsPaint.setColor(SK_ColorRED); in draw()
109 boundsPaint.setStrokeWidth(0.f); in draw()
110 boundsPaint.setAntiAlias(true); in draw()
113 canvas->drawRect(SkRect::Make(bounds).makeOutset(0.5f, 0.5f), boundsPaint); in draw()
/third_party/skia/gm/
Dbeziereffects.cpp266 SkPaint boundsPaint; in onDraw() local
267 boundsPaint.setColor(0xff808080); in onDraw()
268 boundsPaint.setStrokeWidth(0); in onDraw()
269 boundsPaint.setStyle(SkPaint::kStroke_Style); in onDraw()
301 canvas->drawRect(bounds, boundsPaint); in onDraw()
465 SkPaint boundsPaint; in onDraw() local
466 boundsPaint.setColor(0xff808080); in onDraw()
467 boundsPaint.setStrokeWidth(0); in onDraw()
468 boundsPaint.setStyle(SkPaint::kStroke_Style); in onDraw()
498 canvas->drawRect(bounds, boundsPaint); in onDraw()
Dfontmgr.cpp253 SkPaint boundsPaint; in show_bounds() local
254 boundsPaint.setAntiAlias(true); in show_bounds()
255 boundsPaint.setColor(boundsColor); in show_bounds()
256 boundsPaint.setStyle(SkPaint::kStroke_Style); in show_bounds()
257 canvas->drawRect(fontBounds, boundsPaint); in show_bounds()
260 boundsPaint.setPathEffect(SkDashPathEffect::Make(intervals, 2, 0.f)); in show_bounds()
261 canvas->drawRect(min, boundsPaint); in show_bounds()
265 SkPaint metricsPaint(boundsPaint); in show_bounds()