Home
last modified time | relevance | path

Searched refs:getStrokeJoin (Results 1 – 18 of 18) sorted by relevance

/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowPaint.java104 public Paint.Join getStrokeJoin() { in getStrokeJoin() method in ShadowPaint
/external/skia/src/core/
DSkStrokeRec.cpp68 fJoin = paint.getStrokeJoin(); in init()
DSkPaint.cpp1400 rec->fStrokeJoin = SkToU8(paint.getStrokeJoin()); in MakeRec()
1936 *ptr++ = pack_4(this->getStrokeCap(), this->getStrokeJoin(), in flatten()
2099 } else if (this->getStrokeJoin() == SkPaint::kMiter_Join) { in doComputeFastBounds()
2269 str->append(gJoinStrings[this->getStrokeJoin()]); in toString()
DSkStroke.cpp1493 fJoin = (uint8_t)p.getStrokeJoin(); in SkStroke()
1501 fJoin = (uint8_t)p.getStrokeJoin(); in SkStroke()
DSkDraw.cpp746 if (SkPaint::kMiter_Join != paint.getStrokeJoin() || in easy_rect_join()
/external/skia/src/c/
Dsk_paint.cpp120 if (find_c(AsPaint(*cpaint).getStrokeJoin(), &cjoin)) { in sk_paint_get_stroke_join()
/external/skia/src/gpu/
DGrTextBlobCache.h59 cacheBlob->fStrokeInfo.fJoin = paint.getStrokeJoin(); in createCachedBlob()
DSkGpuDevice.cpp437 (paint.getStrokeJoin() == SkPaint::kRound_Join || in drawRect()
438 (paint.getStrokeJoin() == SkPaint::kBevel_Join && rect.isEmpty())); in drawRect()
DGrAtlasTextContext.cpp278 blob.fStrokeInfo.fJoin != paint.getStrokeJoin())) { in MustRegenerateBlob()
/external/skia/tests/
DEmptyPathTest.cpp50 paint.getStrokeCap(), paint.getStrokeJoin(), in drawAndTest()
DPaintTest.cpp196 SkScalar inset = paint.getStrokeJoin() == SkPaint::kMiter_Join ? in DEF_TEST()
/external/skia/src/pdf/
DSkPDFGraphicState.cpp109 , fStrokeJoin(SkToU8(p.getStrokeJoin())) in SkPDFGraphicState()
/external/skia/src/pipe/
DSkGPipeWrite.cpp1200 if (base.getStrokeJoin() != paint.getStrokeJoin()) { in writePaint()
1201 *ptr++ = PaintOp_packOpData(kJoin_PaintOp, paint.getStrokeJoin()); in writePaint()
1202 base.setStrokeJoin(paint.getStrokeJoin()); in writePaint()
/external/skia/src/svg/
DSkSVGDevice.cpp375 if (const char* join = svg_join(paint.getStrokeJoin())) { in addPaint()
379 if (paint.getStrokeJoin() == SkPaint::kMiter_Join) { in addPaint()
/external/skia/src/effects/
DSkLayerDrawLooper.cpp89 dst->setStrokeJoin(src.getStrokeJoin()); in ApplyInfo()
/external/skia/include/core/
DSkPaint.h480 Join getStrokeJoin() const { return (Join)fBitfields.fJoinType; } in getStrokeJoin() function
/external/skia/src/device/xps/
DSkXPSDevice.cpp1098 SkPaint::kMiter_Join != paint.getStrokeJoin() || in rect_must_be_pathed()
1099 (SkPaint::kMiter_Join == paint.getStrokeJoin() && in rect_must_be_pathed()
/external/skia/src/utils/
DSkLua.cpp1007 SkLua(L).pushU32(get_obj<SkPaint>(L, 1)->getStrokeJoin()); in lpaint_getStrokeJoin()