Lines Matching defs:DrawPatch
460 struct DrawPatch final : Op { struct
461 static const auto kType = Type::DrawPatch;
462 DrawPatch(const SkPoint cubics[12], const SkColor colors[4], const SkPoint texs[4], in DrawPatch() argument
475 SkPoint cubics[12];
476 SkColor colors[4];
477 SkPoint texs[4];
478 SkBlendMode xfermode;
479 SkPaint paint;
480 bool has_colors = false;
481 bool has_texs = false;
482 void draw(SkCanvas* c, const SkMatrix&) const { in draw()