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

Unified Diff: tests/PathTest.cpp

Issue 460813002: Fallback to moveTo when unable to find the first tangent in cubicTo (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Add comment Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/core/SkStroke.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/PathTest.cpp
diff --git a/tests/PathTest.cpp b/tests/PathTest.cpp
index 3941ad6e183946ff42f86a40434c87c8b5467f02..5c00b53ac5129dfff87ce438d008823c2ff6f96d 100644
--- a/tests/PathTest.cpp
+++ b/tests/PathTest.cpp
@@ -64,6 +64,37 @@ static void test_path_crbug364224() {
canvas->drawPath(path, paint);
}
+/**
+ * In debug mode, this path is causing an assertion to fail in
+ * SkPathStroker::preJoinTo() and, in Release, the use of an unitialized value.
+ */
+static void make_path_crbugskia2820(SkPath* path, skiatest::Reporter* reporter) {
+ SkPoint orig, p1, p2, p3;
+ orig = SkPoint::Make(SkIntToScalar(1), SkIntToScalar(1));
reed1 2014/08/20 19:07:18 :) I find this very hard to read. Looking right b
Rémi Piotaix 2014/08/20 19:21:08 Done.
+ p1 = SkPoint::Make(SkIntToScalar(1)-SK_ScalarNearlyZero, SkIntToScalar(1));
+ p2 = SkPoint::Make(SkIntToScalar(1), SkIntToScalar(1)+SK_ScalarNearlyZero);
+ p3 = SkPoint::Make(SkIntToScalar(2), SkIntToScalar(2));
+
+ REPORTER_ASSERT(reporter, SkPath::IsLineDegenerate(orig, p1));
reed1 2014/08/20 19:07:18 These lines are testing some aspect of IsLineDegen
Rémi Piotaix 2014/08/20 19:21:09 Done.
+ REPORTER_ASSERT(reporter, SkPath::IsLineDegenerate(orig, p2));
+ REPORTER_ASSERT(reporter, !SkPath::IsLineDegenerate(p1, p2));
+ REPORTER_ASSERT(reporter, !SkPath::IsLineDegenerate(p2, p3));
+
+ path->reset();
+ path->moveTo(SkIntToScalar(1), SkIntToScalar(1));
+ path->cubicTo(p1, p2, p3);
+ path->close();
+}
+
+static void test_path_crbugskia2820(skiatest::Reporter* reporter) {//GrContext* context) {
+ SkPath path;
+ make_path_crbugskia2820(&path, reporter);
+
+ SkStrokeRec stroke(SkStrokeRec::kFill_InitStyle);
+ stroke.setStrokeStyle(2 * SK_Scalar1);
+ stroke.applyToPath(&path, path);
+}
+
static void make_path0(SkPath* path) {
// from * https://code.google.com/p/skia/issues/detail?id=1706
@@ -3553,4 +3584,5 @@ DEF_TEST(Paths, reporter) {
PathTest_Private::TestPathTo(reporter);
PathRefTest_Private::TestPathRef(reporter);
test_dump(reporter);
+ test_path_crbugskia2820(reporter);
}
« no previous file with comments | « src/core/SkStroke.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698