Home
last modified time | relevance | path

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

/frameworks/base/libs/hwui/
DRecordingCanvas.cpp383 struct DrawTextBlob final : Op { struct
384 static const auto kType = Type::DrawTextBlob;
385 DrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y, const SkPaint& paint) in DrawTextBlob() function
387 sk_sp<const SkTextBlob> blob;
388 SkScalar x, y;
389 SkPaint paint;
390 void draw(SkCanvas* c, const SkMatrix&) const { c->drawTextBlob(blob.get(), x, y, paint); } in draw()