Home
last modified time | relevance | path

Searched defs:DrawTextBlob (Results 1 – 1 of 1) sorted by relevance

/aosp14/frameworks/base/libs/hwui/
H A DRecordingCanvas.cpp449 struct DrawTextBlob final : Op { struct
450 static const auto kType = Type::DrawTextBlob;
451 DrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y, const SkPaint& paint) in DrawTextBlob() function
453 sk_sp<const SkTextBlob> blob;
454 SkScalar x, y;
455 SkPaint paint;
456 DrawTextBlobMode drawTextBlobMode;
457 void draw(SkCanvas* c, const SkMatrix&) const { c->drawTextBlob(blob.get(), x, y, paint); } in draw()