Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(45)

Issue 1037953004: add conics to path ops (Closed)

Created:
5 years, 9 months ago by caryclark
Modified:
5 years, 6 months ago
Reviewers:
reed1
CC:
reviews_skia.org
Base URL:
https://skia.googlesource.com/skia.git@master
Target Ref:
refs/heads/master
Project:
skia
Visibility:
Public.

Description

Now, path ops natively intersect conics, quads, and cubics in any combination. There are still a class of cubic tests that fail and a handful of undiagnosed failures from skps and fuzz tests, but things are much better overall. Extended tests (150M+) run to completion in release in about 6 minutes; the standard test suite exceeds 100K and finishes in a few seconds on desktops. TBR=reed BUG=skia:3588 Committed: https://skia.googlesource.com/skia/+/1049f1246e7be4ccb68001361efceb8933e6f81c

Patch Set 1 #

Patch Set 2 : add conic intersecting ray #

Patch Set 3 : conic line intersection, conic script debugging #

Patch Set 4 : conic work in progress #

Patch Set 5 : all old tests work with conic mods #

Patch Set 6 : add issue 3651 test #

Patch Set 7 : post rebase #

Patch Set 8 : working on conic tests #

Patch Set 9 : all tests work #

Patch Set 10 : add two type intersection template #

Patch Set 11 : add new 2 type template files #

Patch Set 12 : fix typo #

Patch Set 13 : add circles test #

Patch Set 14 : work in progress; fix conic line intersection #

Patch Set 15 : all tests including conic working #

Patch Set 16 : replace all single type intersect templates with 2 type #

Patch Set 17 : all tests work #

Patch Set 18 : resolve squash #

Patch Set 19 : fix linux build #

Total comments: 1

Patch Set 20 : work in progress; a lot more +x tests work #

Patch Set 21 : checkpoint; looking for release-only bugs #

Patch Set 22 : most tests working #

Patch Set 23 : fix gcc release error #

Patch Set 24 : fix more -x tests #

Patch Set 25 : fix looping forever bug #

Patch Set 26 : add missing include #

Patch Set 27 : turn off pathops specific debuggging #

Unified diffs Side-by-side diffs Delta from patch set Stats (+5390 lines, -5124 lines) Patch
M gyp/core.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 4 chunks +4 lines, -2 lines 0 comments Download
M gyp/pathops_unittest.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 2 chunks +4 lines, -0 lines 0 comments Download
M src/core/SkPath.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +4 lines, -2 lines 0 comments Download
M src/pathops/SkAddIntersections.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 10 chunks +179 lines, -39 lines 0 comments Download
A src/pathops/SkConicLineIntersection.cpp View 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +37 lines, -0 lines 0 comments Download
A src/pathops/SkDConicLineIntersection.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +337 lines, -0 lines 0 comments Download
M src/pathops/SkIntersectionHelper.h View 1 2 3 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 2 chunks +5 lines, -0 lines 0 comments Download
M src/pathops/SkIntersections.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 6 chunks +44 lines, -5 lines 0 comments Download
M src/pathops/SkIntersections.cpp View 1 2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 2 chunks +21 lines, -12 lines 0 comments Download
M src/pathops/SkOpAngle.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 6 chunks +6 lines, -5 lines 0 comments Download
M src/pathops/SkOpAngle.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 17 chunks +44 lines, -29 lines 0 comments Download
M src/pathops/SkOpBuilder.cpp View 1 2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 3 chunks +8 lines, -1 line 0 comments Download
M src/pathops/SkOpCoincidence.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +1 line, -0 lines 0 comments Download
M src/pathops/SkOpCoincidence.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 11 chunks +25 lines, -23 lines 0 comments Download
M src/pathops/SkOpContour.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 7 chunks +17 lines, -12 lines 0 comments Download
M src/pathops/SkOpContour.cpp View 1 2 3 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +3 lines, -0 lines 0 comments Download
M src/pathops/SkOpCubicHull.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 2 chunks +25 lines, -2 lines 0 comments Download
M src/pathops/SkOpEdgeBuilder.h View 1 2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +1 line, -0 lines 0 comments Download
M src/pathops/SkOpEdgeBuilder.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 6 chunks +19 lines, -13 lines 0 comments Download
M src/pathops/SkOpSegment.h View 1 2 3 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 12 chunks +25 lines, -14 lines 0 comments Download
M src/pathops/SkOpSegment.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 25 chunks +98 lines, -61 lines 0 comments Download
M src/pathops/SkOpSpan.h View 1 2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 4 chunks +7 lines, -7 lines 0 comments Download
M src/pathops/SkOpSpan.cpp View 1 2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 5 chunks +10 lines, -7 lines 0 comments Download
M src/pathops/SkPathOpsBounds.h View 1 2 3 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 2 chunks +5 lines, -4 lines 0 comments Download
M src/pathops/SkPathOpsBounds.cpp View 1 2 3 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 3 chunks +15 lines, -4 lines 0 comments Download
M src/pathops/SkPathOpsCommon.cpp View 1 2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 2 chunks +5 lines, -2 lines 0 comments Download
A src/pathops/SkPathOpsConic.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +121 lines, -0 lines 0 comments Download
A src/pathops/SkPathOpsConic.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +132 lines, -0 lines 0 comments Download
M src/pathops/SkPathOpsCubic.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 3 chunks +10 lines, -1 line 0 comments Download
M src/pathops/SkPathOpsCubic.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 5 chunks +18 lines, -4 lines 0 comments Download
M src/pathops/SkPathOpsCurve.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 2 chunks +129 lines, -32 lines 0 comments Download
M src/pathops/SkPathOpsDebug.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 3 chunks +11 lines, -37 lines 0 comments Download
M src/pathops/SkPathOpsDebug.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 8 chunks +148 lines, -11 lines 0 comments Download
M src/pathops/SkPathOpsLine.h View 1 2 3 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +2 lines, -0 lines 0 comments Download
M src/pathops/SkPathOpsOp.cpp View 1 2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 3 chunks +7 lines, -3 lines 0 comments Download
M src/pathops/SkPathOpsPoint.h View 1 2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +14 lines, -0 lines 0 comments Download
M src/pathops/SkPathOpsQuad.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 4 chunks +9 lines, -1 line 0 comments Download
M src/pathops/SkPathOpsQuad.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 5 chunks +29 lines, -13 lines 0 comments Download
M src/pathops/SkPathOpsRect.h View 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +1 line, -0 lines 0 comments Download
M src/pathops/SkPathOpsRect.cpp View 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 2 chunks +17 lines, -0 lines 0 comments Download
M src/pathops/SkPathOpsSimplify.cpp View 1 2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 3 chunks +7 lines, -3 lines 0 comments Download
D src/pathops/SkPathOpsTCubicSect.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +0 lines, -15 lines 0 comments Download
D src/pathops/SkPathOpsTQuadSect.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +0 lines, -15 lines 0 comments Download
M src/pathops/SkPathOpsTSect.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 91 chunks +546 lines, -399 lines 0 comments Download
A src/pathops/SkPathOpsTSect.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +50 lines, -0 lines 0 comments Download
M src/pathops/SkPathOpsTightBounds.cpp View 1 2 3 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +1 line, -1 line 0 comments Download
M src/pathops/SkPathOpsTypes.h View 1 2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 3 chunks +10 lines, -8 lines 0 comments Download
M src/pathops/SkPathWriter.h View 1 2 3 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +1 line, -0 lines 0 comments Download
M src/pathops/SkPathWriter.cpp View 1 2 3 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +18 lines, -0 lines 0 comments Download
M src/pathops/SkReduceOrder.h View 1 2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +1 line, -0 lines 0 comments Download
M src/pathops/SkReduceOrder.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +8 lines, -0 lines 0 comments Download
M tests/PathOpsAngleIdeas.cpp View 1 2 3 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +1 line, -1 line 0 comments Download
M tests/PathOpsAngleTest.cpp View 1 2 3 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 2 chunks +2 lines, -2 lines 0 comments Download
M tests/PathOpsBoundsTest.cpp View 1 2 3 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +6 lines, -6 lines 0 comments Download
A tests/PathOpsConicIntersectionTest.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +74 lines, -0 lines 0 comments Download
A tests/PathOpsConicLineIntersectionTest.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +143 lines, -0 lines 0 comments Download
M tests/PathOpsCubicIntersectionTest.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +15 lines, -0 lines 0 comments Download
M tests/PathOpsCubicQuadIntersectionTest.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 2 chunks +7 lines, -2 lines 0 comments Download
M tests/PathOpsDCubicTest.cpp View 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +14 lines, -0 lines 0 comments Download
M tests/PathOpsDebug.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 8 chunks +368 lines, -201 lines 0 comments Download
M tests/PathOpsExtendedTest.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 2 chunks +3 lines, -1 line 0 comments Download
M tests/PathOpsExtendedTest.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 2 chunks +17 lines, -9 lines 0 comments Download
M tests/PathOpsFuzz763Test.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 2 chunks +2 lines, -2 lines 0 comments Download
A tests/PathOpsIssue3651.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +1131 lines, -0 lines 0 comments Download
A + tests/PathOpsOpCircleThreadedTest.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 5 chunks +21 lines, -31 lines 0 comments Download
M tests/PathOpsOpCubicThreadedTest.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 2 chunks +2 lines, -2 lines 0 comments Download
M tests/PathOpsOpLoopThreadedTest.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 3 chunks +3 lines, -25 lines 0 comments Download
M tests/PathOpsOpRectThreadedTest.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 2 chunks +8 lines, -0 lines 0 comments Download
M tests/PathOpsOpTest.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 6 chunks +243 lines, -5 lines 0 comments Download
M tests/PathOpsQuadIntersectionTest.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 3 chunks +12 lines, -6 lines 0 comments Download
M tests/PathOpsSimplifyFailTest.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 2 chunks +5 lines, -3 lines 0 comments Download
M tests/PathOpsSimplifyQuadThreadedTest.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 3 chunks +7 lines, -2 lines 0 comments Download
M tests/PathOpsSimplifyTest.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +54 lines, -1 line 0 comments Download
M tests/PathOpsSkpTest.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 3 chunks +3 lines, -3 lines 0 comments Download
M tests/PathOpsTSectDebug.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 6 chunks +73 lines, -50 lines 0 comments Download
M tests/PathOpsTestCommon.h View 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 2 chunks +3 lines, -2 lines 0 comments Download
M tests/PathOpsTestCommon.cpp View 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 2 chunks +13 lines, -0 lines 0 comments Download
M tools/pathops_sorter.htm View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 28 chunks +235 lines, -264 lines 0 comments Download
M tools/pathops_visualizer.htm View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 55 chunks +686 lines, -3719 lines 0 comments Download

Messages

Total messages: 65 (35 generated)
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1037953004/130001
5 years, 8 months ago (2015-04-09 12:02:51 UTC) #2
commit-bot: I haz the power
This issue passed the CQ dry run.
5 years, 8 months ago (2015-04-09 12:10:16 UTC) #4
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1037953004/150001
5 years, 8 months ago (2015-04-09 17:34:19 UTC) #6
commit-bot: I haz the power
Try jobs failed on following builders: Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-Trybot on client.skia (JOB_FAILED, http://build.chromium.org/p/client.skia/builders/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-Trybot/builds/231) Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Shared-Trybot on client.skia (JOB_FAILED, ...
5 years, 8 months ago (2015-04-09 17:36:12 UTC) #8
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1037953004/160001
5 years, 8 months ago (2015-04-09 17:40:42 UTC) #10
commit-bot: I haz the power
Try jobs failed on following builders: Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Shared-Trybot on client.skia (JOB_FAILED, http://build.chromium.org/p/client.skia/builders/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Shared-Trybot/builds/235)
5 years, 8 months ago (2015-04-09 17:42:57 UTC) #12
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1037953004/170001
5 years, 8 months ago (2015-04-10 21:08:42 UTC) #14
commit-bot: I haz the power
Try jobs failed on following builders: Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Shared-Trybot on client.skia (JOB_FAILED, http://build.chromium.org/p/client.skia/builders/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Shared-Trybot/builds/254)
5 years, 8 months ago (2015-04-10 21:24:43 UTC) #16
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1037953004/190001
5 years, 8 months ago (2015-04-13 21:22:18 UTC) #18
commit-bot: I haz the power
Failed to apply patch for src/pathops/SkPathOpsTSect2.h: While running git apply --index -3 -p1; error: patch ...
5 years, 8 months ago (2015-04-13 21:22:38 UTC) #20
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1037953004/200001
5 years, 8 months ago (2015-04-14 13:55:50 UTC) #22
commit-bot: I haz the power
Failed to apply patch for src/pathops/SkPathOpsTSect.h: While running git apply --index -3 -p1; error: patch ...
5 years, 8 months ago (2015-04-14 13:56:08 UTC) #24
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1037953004/210001
5 years, 8 months ago (2015-04-15 14:13:44 UTC) #26
commit-bot: I haz the power
Failed to apply patch for src/pathops/SkPathOpsTSect.h: While running git apply --index -3 -p1; error: patch ...
5 years, 8 months ago (2015-04-15 14:14:05 UTC) #28
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1037953004/220001
5 years, 8 months ago (2015-04-15 14:25:31 UTC) #30
commit-bot: I haz the power
Try jobs failed on following builders: Build-Ubuntu-Clang-x86_64-Debug-Trybot on client.skia.compile (JOB_FAILED, http://build.chromium.org/p/client.skia.compile/builders/Build-Ubuntu-Clang-x86_64-Debug-Trybot/builds/479) Build-Ubuntu-GCC-Arm7-Debug-Android-Trybot on client.skia.compile (JOB_FAILED, ...
5 years, 8 months ago (2015-04-15 14:32:13 UTC) #32
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1037953004/230001
5 years, 8 months ago (2015-04-15 14:45:57 UTC) #34
commit-bot: I haz the power
This issue passed the CQ dry run.
5 years, 8 months ago (2015-04-15 14:52:20 UTC) #36
reed1
lgtm w/ questino about if (true) https://codereview.chromium.org/1037953004/diff/230001/src/pathops/SkOpEdgeBuilder.cpp File src/pathops/SkOpEdgeBuilder.cpp (right): https://codereview.chromium.org/1037953004/diff/230001/src/pathops/SkOpEdgeBuilder.cpp#newcode118 src/pathops/SkOpEdgeBuilder.cpp:118: if (true) { ...
5 years, 8 months ago (2015-04-15 20:06:24 UTC) #38
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1037953004/260001
5 years, 8 months ago (2015-04-17 16:35:04 UTC) #41
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: Build-Ubuntu-GCC-x86_64-Release-Trybot on client.skia.compile (JOB_FAILED, http://build.chromium.org/p/client.skia.compile/builders/Build-Ubuntu-GCC-x86_64-Release-Trybot/builds/534)
5 years, 8 months ago (2015-04-17 16:46:58 UTC) #44
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1037953004/270001
5 years, 8 months ago (2015-04-17 17:25:12 UTC) #47
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
5 years, 8 months ago (2015-04-17 17:37:05 UTC) #49
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1037953004/290001
5 years, 8 months ago (2015-04-20 14:55:45 UTC) #52
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Shared-Trybot on client.skia (JOB_FAILED, http://build.chromium.org/p/client.skia/builders/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Shared-Trybot/builds/398) Build-Ubuntu-GCC-Arm7-Debug-Android-Trybot on ...
5 years, 8 months ago (2015-04-20 15:01:33 UTC) #54
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1037953004/300001
5 years, 8 months ago (2015-04-20 15:09:58 UTC) #57
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1037953004/310001
5 years, 8 months ago (2015-04-20 15:17:07 UTC) #60
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
5 years, 8 months ago (2015-04-20 15:24:01 UTC) #62
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1037953004/310001
5 years, 8 months ago (2015-04-20 15:30:34 UTC) #64
commit-bot: I haz the power
5 years, 8 months ago (2015-04-20 15:32:06 UTC) #65
Message was sent while issue was closed.
Committed patchset #27 (id:310001) as
https://skia.googlesource.com/skia/+/1049f1246e7be4ccb68001361efceb8933e6f81c

Powered by Google App Engine
This is Rietveld 408576698