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