Lines Matching defs:jpaint
25 FillStrokeAdapter(const skjson::ObjectValue& jpaint,
35 this->bind(abuilder, jpaint["o"], fOpacity);
40 this->bind(abuilder, jpaint["w"], fStrokeWidth);
43 this->node()->setStrokeMiter(ParseDefault<SkScalar>(jpaint["ml"], 4.0f));
51 gJoins[std::min<size_t>(ParseDefault<size_t>(jpaint["lj"], 1) - 1,
60 gCaps[std::min<size_t>(ParseDefault<size_t>(jpaint["lc"], 1) - 1,
65 this->bind(abuilder, jpaint["c"], fColor);
128 sk_sp<sksg::PaintNode> ShapeBuilder::AttachFill(const skjson::ObjectValue& jpaint,
133 (jpaint,
140 sk_sp<sksg::PaintNode> ShapeBuilder::AttachStroke(const skjson::ObjectValue& jpaint,
145 (jpaint,
152 sk_sp<sksg::PaintNode> ShapeBuilder::AttachColorFill(const skjson::ObjectValue& jpaint,
157 return AttachFill(jpaint, abuilder, std::move(color_node));
160 sk_sp<sksg::PaintNode> ShapeBuilder::AttachColorStroke(const skjson::ObjectValue& jpaint,
165 return AttachStroke(jpaint, abuilder, std::move(color_node));