Searched defs:DrawTextBlob (Results 1 – 1 of 1) sorted by relevance
385 struct DrawTextBlob final : Op { struct386 static const auto kType = Type::DrawTextBlob;387 DrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y, const SkPaint& paint) in DrawTextBlob() function389 sk_sp<const SkTextBlob> blob;390 SkScalar x, y;391 SkPaint paint;392 DrawTextBlobMode drawTextBlobMode;393 void draw(SkCanvas* c, const SkMatrix&) const { c->drawTextBlob(blob.get(), x, y, paint); } in draw()