Home
last modified time | relevance | path

Searched defs:PaintRecord (Results 1 – 1 of 1) sorted by relevance

/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_engine/rosen_text/skia_txt/txt/
H A Dpaint_record.h30 struct PaintRecord { struct
42 PaintRecord() {} in PaintRecord() argument
43 PaintRecord(RSBrush brush, RSPen pen) : brush(brush), pen(pen) {} in PaintRecord() function
44 PaintRecord(std::optional<RSBrush> brush, std::optional<RSPen> pen) : brush(brush), pen(pen) {} in PaintRecord() argument
56 bool operator==(const PaintRecord& rhs) const argument
66 static RSColor ToRSColor(SkColor c) in ToRSColor()