Home | History | Annotate | Download | only in gfx

Lines Matching refs:DrawRect

203   DrawRect(Rect(rect.x(), rect.y(), rect.width(), 1), paint);
204 DrawRect(Rect(rect.x(), rect.y() + rect.height() - 1, rect.width(), 1),
206 DrawRect(Rect(rect.x(), rect.y(), 1, rect.height()), paint);
207 DrawRect(Rect(rect.x() + rect.width() - 1, rect.y(), 1, rect.height()),
271 DrawRect(rect, paint);
274 void Canvas::DrawRect(const Rect& rect, SkColor color) {
275 DrawRect(rect, color, SkXfermode::kSrcOver_Mode);
278 void Canvas::DrawRect(const Rect& rect,
290 DrawRect(rect, paint);
293 void Canvas::DrawRect(const Rect& rect, const SkPaint& paint) {
339 // Note: We cannot use DrawRect since it would create a path and fill it which
464 canvas_->drawRect(dest_rect, p);
600 canvas_->drawRect(dest_rect, paint);