Searched refs:getStrokeJoin (Results 1 – 25 of 29) sorted by relevance
12
/third_party/skia/docs/examples/ |
D | PaintDump.cpp | 54 if (d.getStrokeJoin() != p.getStrokeJoin()) { in PaintStringDump() 55 s.appendf("p.setStrokeJoin(%s);\n", str(p.getStrokeJoin())); in PaintStringDump()
|
D | Paint_getStrokeJoin.cpp | 9 SkPaint::kMiter_Join == paint.getStrokeJoin() ? '=' : '!'); in draw()
|
D | Paint_setStrokeJoin.cpp | 11 SkPaint::kMiter_Join == paint.getStrokeJoin() ? '=' : '!'); in draw()
|
/third_party/skia/src/core/ |
D | SkStrokeRec.cpp | 64 fJoin = paint.getStrokeJoin(); in init() 144 return GetInflationRadius(paint.getStrokeJoin(), paint.getStrokeMiter(), paint.getStrokeCap(), in GetInflationRadius()
|
D | SkPaint.cpp | 260 packed |= shift_bits(paint.getStrokeJoin(), 18, 2); in pack_v68()
|
D | SkStroke.cpp | 1358 fJoin = (uint8_t)p.getStrokeJoin(); in SkStroke() 1367 fJoin = (uint8_t)p.getStrokeJoin(); in SkStroke()
|
D | SkDraw.cpp | 553 if (rect.isEmpty() || SkPaint::kMiter_Join != paint.getStrokeJoin() || in easy_rect_join()
|
D | SkScalerContext.cpp | 1056 rec->fStrokeJoin = SkToU8(paint.getStrokeJoin()); in MakeRecAndEffects()
|
/third_party/skia/bench/ |
D | StrokeBench.cpp | 20 pathType, paint.getStrokeWidth(), paint.getStrokeJoin(), paint.getStrokeCap()); in StrokeBench()
|
/third_party/skia/src/pdf/ |
D | SkPDFGraphicState.cpp | 80 SkToU8(p.getStrokeJoin()), in GetGraphicStateForPaint()
|
/third_party/skia/tests/ |
D | EmptyPathTest.cpp | 51 paint.getStrokeCap(), paint.getStrokeJoin(), in drawAndTest()
|
D | PaintTest.cpp | 73 SkScalar inset = paint.getStrokeJoin() == SkPaint::kMiter_Join ? in DEF_TEST()
|
D | GrStyledShapeTest.cpp | 364 return (paint.getStrokeJoin() == SkPaint::kMiter_Join && in strokeAndFillIsConvertedToFill() 366 paint.getStrokeJoin() == SkPaint::kRound_Join; in strokeAndFillIsConvertedToFill()
|
/third_party/skia/src/c/ |
D | sk_paint.cpp | 119 if (find_c(AsPaint(*cpaint).getStrokeJoin(), &cjoin)) { in sk_paint_get_stroke_join()
|
/third_party/skia/include/core/ |
D | SkPaint.h | 375 Join getStrokeJoin() const { return (Join)fBitfields.fJoinType; } in getStrokeJoin() function
|
/third_party/skia/src/effects/ |
D | SkLayerDrawLooper.cpp | 104 dst->setStrokeJoin(src.getStrokeJoin()); in ApplyInfo()
|
/third_party/skia/modules/canvaskit/htmlcanvas/ |
D | canvas2dcontext.js | 354 switch (this._paint.getStrokeJoin()) { 768 'cap': this._paint.getStrokeCap(), 'join': this._paint.getStrokeJoin(),
|
/third_party/skia/samplecode/ |
D | SampleSimpleStroker.cpp | 129 fJoin = paint.getStrokeJoin(); in initForPath()
|
D | SampleVariableWidthStroker.cpp | 515 fJoin = paint.getStrokeJoin(); in initForPath()
|
/third_party/skia/src/svg/ |
D | SkSVGDevice.cpp | 365 if (const char* join = svg_join(paint.getStrokeJoin())) { in addPaint() 369 if (paint.getStrokeJoin() == SkPaint::kMiter_Join) { in addPaint()
|
/third_party/skia/modules/canvaskit/ |
D | externs.js | 475 getStrokeJoin: function() {}, method
|
/third_party/skia/src/xps/ |
D | SkXPSDevice.cpp | 1083 SkPaint::kMiter_Join != paint.getStrokeJoin() || in rect_must_be_pathed() 1084 (SkPaint::kMiter_Join == paint.getStrokeJoin() && in rect_must_be_pathed()
|
/third_party/skia/modules/canvaskit/npm_build/types/ |
D | canvaskit-wasm-tests.ts | 394 const sj = paint.getStrokeJoin();
|
D | index.d.ts | 1930 getStrokeJoin(): StrokeJoin; method
|
/third_party/skia/tools/viewer/ |
D | Viewer.cpp | 1446 paint.setStrokeJoin(fPaint->getStrokeJoin()); in onFilter() 2205 joinIdx = SkTo<int>(fPaint.getStrokeJoin()) + 1; in drawImGui()
|
12