Home
last modified time | relevance | path

Searched refs:StrokeParams (Results 1 – 9 of 9) sorted by relevance

/third_party/skia/experimental/graphite/src/
DDrawList.h60 class StrokeParams {
62 StrokeParams() : fHalfWidth(0.f), fJoinLimit(0.f), fCap(SkPaint::kButt_Cap) {} in StrokeParams() function
63 StrokeParams(float width, in StrokeParams() function
72 StrokeParams(const StrokeParams&) = default;
74 StrokeParams& operator=(const StrokeParams&) = default;
179 const StrokeParams& stroke,
205 skstd::optional<StrokeParams> fStrokeParams; // Not present implies fill
209 const StrokeParams* stroke) in Draw()
216 , fStrokeParams(stroke ? skstd::optional<StrokeParams>(*stroke) : skstd::nullopt) {} in Draw()
DDrawContext.h68 const StrokeParams& stroke,
DDrawList.cpp78 const StrokeParams& stroke, in strokePath()
DDrawContext.cpp72 const StrokeParams& stroke, in strokePath()
DDevice.cpp300 StrokeParams stroke(style.getWidth(), style.getMiter(), style.getJoin(), style.getCap()); in drawShape()
/third_party/skia/src/gpu/tessellate/
DTessellation.h102 struct StrokeParams { struct
DStrokeFixedCountTessellator.cpp219 StrokeParams fDynamicStroke;
DStrokeHardwareTessellator.cpp660 StrokeParams fDynamicStroke;
/third_party/skia/src/gpu/ops/
DStrokeTessellateOp.cpp116 !StrokeParams::StrokesHaveEqualParams(this->headStroke(), op->headStroke())) { in onCombineIfPossible()