aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/pathops/SkPathOpsWinding.cpp
diff options
context:
space:
mode:
authorGravatar caryclark <caryclark@google.com>2015-10-20 13:42:25 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-10-20 13:42:25 -0700
commitef33b1e739b23a1201100ff17a572da85b03d9af (patch)
treeaed5e149a4e3b6594fb0c3f556ecd06eebdedd4f /src/pathops/SkPathOpsWinding.cpp
parent45a1c34f607a970933e5cd05e1df6cd8090db1be (diff)
The remaining 1m skp bugs are asserts that can be harmlessly
suppressed and bugs around conics. The conic calculation for a subdivided w was just wrong. Also added debugging to template intersection to initialize reused structures and dump additional data. TBR=reed@google.com Review URL: https://codereview.chromium.org/1413763002
Diffstat (limited to 'src/pathops/SkPathOpsWinding.cpp')
-rw-r--r--src/pathops/SkPathOpsWinding.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pathops/SkPathOpsWinding.cpp b/src/pathops/SkPathOpsWinding.cpp
index 3061ea365a..0abffb0586 100644
--- a/src/pathops/SkPathOpsWinding.cpp
+++ b/src/pathops/SkPathOpsWinding.cpp
@@ -287,7 +287,7 @@ bool SkOpSpan::sortableTop(SkOpContour* contourHead) {
return false;
}
bool ccw = ccw_dxdy(hit->fSlope, dir);
- SkASSERT(!approximately_zero(hit->fT) || !hit->fValid);
+// SkASSERT(!approximately_zero(hit->fT) || !hit->fValid);
SkOpSpan* span = hit->fSpan;
SkOpSegment* hitSegment = span->segment();
if (!span) {