Searched defs:DrawAnnotation (Results 1 – 1 of 1) sorted by relevance
259 struct DrawAnnotation final : Op { struct260 static const auto kType = Type::DrawAnnotation;261 DrawAnnotation(const SkRect& rect, SkData* value) : rect(rect), value(sk_ref_sp(value)) {} in DrawAnnotation() function262 SkRect rect;263 sk_sp<SkData> value;264 void draw(SkCanvas* c, const SkMatrix&) const { in draw()