Home
last modified time | relevance | path

Searched refs:isDashed (Results 1 – 16 of 16) sorted by relevance

/external/skia/src/gpu/
DGrStrokeInfo.h36 if (includeDash && src.isDashed()) { in INHERITED()
59 if (other.isDashed()) {
72 if (this->isDashed() != other.isDashed()) { in hasEqualEffect()
75 if (this->isDashed()) { in hasEqualEffect()
122 bool isDashed() const { in isDashed() function
127 SkASSERT(this->isDashed()); in getDashCount()
132 SkASSERT(this->isDashed()); in getDashPhase()
137 SkASSERT(this->isDashed()); in getDashIntervals()
161 if (this->isDashed()) { in computeUniqueKeyFragmentData32Cnt()
DGrStrokeInfo.cpp23 if (this->isDashed()) { in applyDashToPath()
78 if (this->isDashed()) { in asUniqueKeyFragment()
DGrBlurUtils.cpp168 SkASSERT(strokeInfo.isDashed() || !pathEffect); in draw_path_with_mask_filter()
172 if (strokeInfo.isDashed()) { in draw_path_with_mask_filter()
266 if (!strokeInfo.isDashed() && pathEffect && pathEffect->filterPath(tmpPath.init(), *pathPtr, in drawPathWithMaskFilter()
329 if (!strokeInfo.isDashed() && pathEffect && in drawPathWithMaskFilter()
DGrPath.cpp40 if (stroke.isDashed() || !path.isOval(&rect)) { in compute_key_for_oval_path()
206 if (!fStroke.isDashed() && fSkPath.isOval(&ovalBounds)) { in isEqualTo()
DGrDrawContext.cpp262 SkASSERT(!strokeInfo || !strokeInfo->isDashed()); in drawRect()
490 SkASSERT(!strokeInfo.isDashed()); // this should've been devolved to a path in SkGpuDevice in drawRRect()
534 SkASSERT(!strokeInfo.isDashed()); // this should've been devolved to a path in SkGpuDevice in drawOval()
686 if (should_apply_coverage_aa(paint, fRenderTarget) && !strokeInfo.isDashed()) { in drawPath()
758 if (nullptr == pr && strokeInfo.isDashed()) { in internalDrawPath()
DGrSoftwarePathRenderer.cpp20 if (args.fStroke->isDashed()) { in onCanDrawPath()
DGrPathRenderer.h214 if (stroke.isDashed()) { in IsStrokeHairlineOrEquivalent()
DSkGpuDevice.cpp558 SkASSERT(!strokeInfo.isDashed()); in drawRRect()
688 SkASSERT(!strokeInfo.isDashed()); in drawOval()
/external/skia/src/gpu/gl/
DGrGLPathRange.cpp40 bool forceFill = fStroke.isDashed() || in init()
81 if (fStroke.isDashed()) { in onInitPath()
DGrGLPath.cpp246 SkASSERT(!stroke.isDashed()); in InitPathObjectStroke()
277 if (stroke->isDashed()) { in GrGLPath()
/external/skia/src/gpu/batches/
DGrDashLinePathRenderer.cpp15 if (args.fStroke->isDashed() && args.fPath->isLine(pts)) { in onCanDrawPath()
DGrTessellatingPathRenderer.cpp112 if (stroke.isDashed()) { in tessellate()
DGrAALinearizingConvexPathRenderer.cpp55 return strokeWidth >= 1.0f && strokeWidth <= kMaxStrokeWidth && !args.fStroke->isDashed() && in onCanDrawPath()
DGrAADistanceFieldPathRenderer.cpp91 args.fStroke->isDashed()) { in onCanDrawPath()
/external/skia/src/gpu/text/
DGrStencilAndCoverTextContext.cpp375 if (!fFont.getPathEffect() && !fStroke.isDashed()) { in TextRun()
/external/skia/src/gpu/effects/
DGrDashingEffect.cpp47 if (!strokeInfo.isDashed() || 2 != strokeInfo.getDashCount()) { in CanDrawDashLine()