Searched defs:DrawTextBlob (Results 1 – 1 of 1) sorted by relevance
453 struct DrawTextBlob final : Op { struct454 static const auto kType = Type::DrawTextBlob;455 DrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y, const SkPaint& paint) in DrawTextBlob() function457 sk_sp<const SkTextBlob> blob;458 SkScalar x, y;459 SkPaint paint;460 DrawTextBlobMode drawTextBlobMode;461 void draw(SkCanvas* c, const SkMatrix&) const { c->drawTextBlob(blob.get(), x, y, paint); } in draw()