Home
last modified time | relevance | path

Searched refs:isInverseFillType (Results 1 – 25 of 71) sorted by relevance

123

/external/skia/src/gpu/
DGrPathRenderer.cpp28 SkASSERT(!path.isInverseFillType()); in validate()
40 SkASSERT(!path.isInverseFillType()); in getStencilSupport()
93 if (path.isInverseFillType()) { in GetPathDevBounds()
DGrShape.cpp115 if (flip_inversion(original.fPathData.fPath.isInverseFillType(), inversion)) { in MakeFilled()
514 bool inverted = this->path().isInverseFillType(); in attemptToSimplifyPath()
585 bool inverse = !this->style().isDashed() && this->path().isInverseFillType(); in attemptToSimplifyPath()
594 if (this->path().isInverseFillType()) { in attemptToSimplifyPath()
DGrShape.h254 if (this->path().isInverseFillType()) { in asNestedRects()
359 ret = this->path().isInverseFillType(); in inverseFilled()
DGrReducedClip.cpp701 if (path.isInverseFillType()) { in stencil_element()
731 if (path.isInverseFillType()) { in draw_element()
848 fillInverted = clipPath.isInverseFillType(); in drawStencilClipMask()
/external/skqp/src/gpu/
DGrPathRenderer.cpp28 SkASSERT(!path.isInverseFillType()); in validate()
40 SkASSERT(!path.isInverseFillType()); in getStencilSupport()
93 if (path.isInverseFillType()) { in GetPathDevBounds()
DGrShape.cpp115 if (flip_inversion(original.fPathData.fPath.isInverseFillType(), inversion)) { in MakeFilled()
514 bool inverted = this->path().isInverseFillType(); in attemptToSimplifyPath()
585 bool inverse = !this->style().isDashed() && this->path().isInverseFillType(); in attemptToSimplifyPath()
594 if (this->path().isInverseFillType()) { in attemptToSimplifyPath()
DGrShape.h254 if (this->path().isInverseFillType()) { in asNestedRects()
359 ret = this->path().isInverseFillType(); in inverseFilled()
DGrReducedClip.cpp701 if (path.isInverseFillType()) { in stencil_element()
731 if (path.isInverseFillType()) { in draw_element()
848 fillInverted = clipPath.isInverseFillType(); in drawStencilClipMask()
/external/skqp/src/pathops/
DSkPathOpsOp.cpp251 op = gOpInverse[op][one.isInverseFillType()][two.isInverseFillType()]; in OpDebug()
252 bool inverseFill = gOutInverse[op][one.isInverseFillType()][two.isInverseFillType()]; in OpDebug()
286 if (inverseFill != work.isInverseFillType()) { in OpDebug()
DSkOpBuilder.cpp133 if (kUnion_SkPathOp != fOps[index] || test->isInverseFillType()) { in resolve()
DSkPathOpsSimplify.cpp143 SkPath::FillType fillType = path.isInverseFillType() ? SkPath::kInverseEvenOdd_FillType in SimplifyDebug()
/external/skia/src/pathops/
DSkPathOpsOp.cpp251 op = gOpInverse[op][one.isInverseFillType()][two.isInverseFillType()]; in OpDebug()
252 bool inverseFill = gOutInverse[op][one.isInverseFillType()][two.isInverseFillType()]; in OpDebug()
286 if (inverseFill != work.isInverseFillType()) { in OpDebug()
DSkOpBuilder.cpp133 if (kUnion_SkPathOp != fOps[index] || test->isInverseFillType()) { in resolve()
DSkPathOpsSimplify.cpp143 SkPath::FillType fillType = path.isInverseFillType() ? SkPath::kInverseEvenOdd_FillType in SimplifyDebug()
/external/skia/src/core/
DSkScan_Path.cpp411 if (path.isInverseFillType()) { in sk_fill_path()
464 if (path.isInverseFillType()) { in sk_fill_path()
647 if (path.isInverseFillType()) { in FillPath()
653 SkScanClipper clipper(blitter, clipPtr, ir, path.isInverseFillType(), irPreClipped); in FillPath()
659 if (path.isInverseFillType()) { in FillPath()
666 if (path.isInverseFillType()) { in FillPath()
DSkMiniRecorder.cpp40 return op.path.isInverseFillType() ? SkRectPriv::MakeLargest() in bounds()
DSkRegion_path.cpp315 if (path.isInverseFillType()) { in check_inverse_on_empty_return()
363 path.isInverseFillType())) { in setPath()
/external/skqp/src/core/
DSkScan_Path.cpp411 if (path.isInverseFillType()) { in sk_fill_path()
464 if (path.isInverseFillType()) { in sk_fill_path()
647 if (path.isInverseFillType()) { in FillPath()
653 SkScanClipper clipper(blitter, clipPtr, ir, path.isInverseFillType(), irPreClipped); in FillPath()
659 if (path.isInverseFillType()) { in FillPath()
666 if (path.isInverseFillType()) { in FillPath()
DSkMiniRecorder.cpp40 return op.path.isInverseFillType() ? SkRectPriv::MakeLargest() in bounds()
DSkRegion_path.cpp315 if (path.isInverseFillType()) { in check_inverse_on_empty_return()
363 path.isInverseFillType())) { in setPath()
/external/skia/tests/
DEmptyPathTest.cpp148 bool shouldDraw = path.isInverseFillType(); in test_emptydrawing()
DGrShapeTest.cpp140 if (pathA.isInverseFillType() != pathB.isInverseFillType()) { in check_equivalence()
141 const GrShape* s1 = pathA.isInverseFillType() ? &a : &b; in check_equivalence()
142 const GrShape* s2 = pathA.isInverseFillType() ? &b : &a; in check_equivalence()
163 REPORTER_ASSERT(r, a.inverseFilled() == pA.isInverseFillType()); in check_equivalence()
164 REPORTER_ASSERT(r, b.inverseFilled() == pB.isInverseFillType()); in check_equivalence()
170 pA.setFillType(pA.isInverseFillType() ? SkPath::kInverseEvenOdd_FillType in check_equivalence()
172 pB.setFillType(pB.isInverseFillType() ? SkPath::kInverseEvenOdd_FillType in check_equivalence()
426 SkASSERT(!path.isInverseFillType()); in PathGeo()
/external/skqp/tests/
DEmptyPathTest.cpp148 bool shouldDraw = path.isInverseFillType(); in test_emptydrawing()
DGrShapeTest.cpp140 if (pathA.isInverseFillType() != pathB.isInverseFillType()) { in check_equivalence()
141 const GrShape* s1 = pathA.isInverseFillType() ? &a : &b; in check_equivalence()
142 const GrShape* s2 = pathA.isInverseFillType() ? &b : &a; in check_equivalence()
163 REPORTER_ASSERT(r, a.inverseFilled() == pA.isInverseFillType()); in check_equivalence()
164 REPORTER_ASSERT(r, b.inverseFilled() == pB.isInverseFillType()); in check_equivalence()
170 pA.setFillType(pA.isInverseFillType() ? SkPath::kInverseEvenOdd_FillType in check_equivalence()
172 pB.setFillType(pB.isInverseFillType() ? SkPath::kInverseEvenOdd_FillType in check_equivalence()
426 SkASSERT(!path.isInverseFillType()); in PathGeo()
/external/skia/src/gpu/effects/
DGrConvexPolyEffect.cpp156 if (path.isInverseFillType()) { in Make()

123