Lines Matching defs:blob
40 const auto& blob = blobs[i];
41 const SkRect& bounds = blob->bounds();
44 canvas->drawTextBlob(blob, 0, SkIntToScalar(yOffset), paint);
204 static SkBitmap draw_blob(SkTextBlob* blob, SkSurface* surface, SkPoint offset) {
212 canvas->drawTextBlob(blob, 0, 0, paint);
296 auto blob = make_large_blob();
298 SkBitmap base = draw_blob(blob.get(), surface.get(), {40, y + 0.0f});
319 auto blob = make_blob();
322 SkBitmap base = draw_blob(blob.get(), surface.get(), {40, y + 0.0f});
323 SkBitmap half = draw_blob(blob.get(), surface.get(), {40, y + 0.5f});
324 SkBitmap unit = draw_blob(blob.get(), surface.get(), {40, y + 1.0f});
345 blob = make_blob();
347 SkBitmap base = draw_blob(blob.get(), surface.get(), {x + 0.0f, 40});
348 SkBitmap half = draw_blob(blob.get(), surface.get(), {x + 0.5f, 40});
349 SkBitmap unit = draw_blob(blob.get(), surface.get(), {x + 1.0f, 40});