Searched defs:DrawAnnotation (Results 1 – 1 of 1) sorted by relevance
296 struct DrawAnnotation final : Op { struct297 static const auto kType = Type::DrawAnnotation;298 DrawAnnotation(const SkRect& rect, SkData* value) : rect(rect), value(sk_ref_sp(value)) {} in DrawAnnotation() argument299 SkRect rect;300 sk_sp<SkData> value;301 void draw(SkCanvas* c, const SkMatrix&) const { in draw()