Lines Matching defs:blob
1836 /** Draws SkTextBlob blob at (x, y), using clip, SkMatrix, and SkPaint paint.
1838 blob contains glyphs, their positions, and paint attributes specific to text:
1848 SkPaint::Style; apply to blob. If SkPaint contains SkPaint::kStroke_Style:
1850 apply to SkPath created from blob.
1852 @param blob glyphs, positions, and their paints' text size, typeface, and so on
1853 @param x horizontal offset applied to blob
1854 @param y vertical offset applied to blob
1859 void drawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y, const SkPaint& paint);
1861 /** Draws SkTextBlob blob at (x, y), using clip, SkMatrix, and SkPaint paint.
1863 blob contains glyphs, their positions, and paint attributes specific to text:
1872 and SkImageFilter; apply to blob.
1874 @param blob glyphs, positions, and their paints' text size, typeface, and so on
1875 @param x horizontal offset applied to blob
1876 @param y vertical offset applied to blob
1879 void drawTextBlob(const sk_sp<SkTextBlob>& blob, SkScalar x, SkScalar y, const SkPaint& paint) {
1880 this->drawTextBlob(blob.get(), x, y, paint);
2286 virtual void onDrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y,