Home | History | Annotate | Download | only in text

Lines Matching defs:Paint

74     class Paint {
76 explicit Paint(const SkPaint* paint, const GrColorSpaceInfo* dstColorSpaceInfo)
77 : fPaint(paint), fDstColorSpaceInfo(dstColorSpaceInfo) {
81 // These expose the paint's color run through its color filter (if any). This is only valid
94 Paint() = default;
97 // This is the paint's color run through its color filter, if present. This color should
104 * An extension of Paint that incorporated per-run modifications to the paint text settings and
108 class RunPaint : public Paint {
110 RunPaint(const Paint* paint, SkDrawFilter* filter, const SkSurfaceProps& props)
111 : fOriginalPaint(paint), fFilter(filter), fProps(props) {
112 // Initially we represent the original paint.
122 const Paint* fOriginalPaint;
127 static uint32_t FilterTextFlags(const SkSurfaceProps& surfaceProps, const SkPaint& paint);
129 static bool ShouldDisableLCD(const SkPaint& paint);
133 const SkPaint& paint, const SkMatrix& viewMatrix, const char text[],
139 const SkPaint& paint, const SkMatrix& viewMatrix,