Home
last modified time | relevance | path

Searched refs:fStrokeRec (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/skia/src/gpu/ganesh/
H A DGrStyle.h91 explicit GrStyle(SkStrokeRec::InitStyle initStyle) : fStrokeRec(initStyle) {} in GrStyle()
93 GrStyle(const SkStrokeRec& strokeRec, sk_sp<SkPathEffect> pe) : fStrokeRec(strokeRec) { in GrStyle()
99 explicit GrStyle(const SkPaint& paint) : fStrokeRec(paint) { in GrStyle()
104 : fStrokeRec(paint, overrideStyle) { in GrStyle()
111 fStrokeRec = that.fStrokeRec;
119 fStrokeRec.setFillStyle(); in resetToInitStyle()
121 fStrokeRec.setHairlineStyle(); in resetToInitStyle()
126 bool isSimpleFill() const { return fStrokeRec.isFillStyle() && !fPathEffect; } in isSimpleFill()
129 bool isSimpleHairline() const { return fStrokeRec.isHairlineStyle() && !fPathEffect; } in isSimpleHairline()
152 const SkStrokeRec& strokeRec() const { return fStrokeRec; } in strokeRec()
[all …]
H A DGrStyle.cpp117 SkStrokeRec::Style recStyle = fStrokeRec.getStyle(); in initPathEffect()
168 SkStrokeRec strokeRec = fStrokeRec; in applyPathEffectToPath()
181 SkStrokeRec strokeRec = fStrokeRec; in applyToPath()