aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/GradientTest.cpp
diff options
context:
space:
mode:
authorGravatar fmalita <fmalita@chromium.org>2016-03-03 06:41:54 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2016-03-03 06:41:54 -0800
commit5edf82e651630308f99b65506eaff0bb17c88e79 (patch)
treee0cd5bdb2fe5a9e1f61eef17574e288dd2786794 /tests/GradientTest.cpp
parent62c0f75159674087079140e09ef1396316577754 (diff)
[Reland] Fix SkTwoPointConicalGradient zero-radius handling
r == 0 is within valid gradient range, we shouldn't skip it. BUG=skia:5023 R=caryclark@google.com,reed@google.com GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1756573002 Committed: https://skia.googlesource.com/skia/+/9c0b02a557e9be663a0eb07519e1b6a61a6c3df2 Review URL: https://codereview.chromium.org/1756573002
Diffstat (limited to 'tests/GradientTest.cpp')
-rw-r--r--tests/GradientTest.cpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/GradientTest.cpp b/tests/GradientTest.cpp
index 6a277d520e..cc94cbaf75 100644
--- a/tests/GradientTest.cpp
+++ b/tests/GradientTest.cpp
@@ -6,6 +6,7 @@
*/
#include "SkCanvas.h"
+#include "SkColorPriv.h"
#include "SkColorShader.h"
#include "SkGradientShader.h"
#include "SkShader.h"
@@ -233,10 +234,33 @@ static void test_linear_fuzz(skiatest::Reporter* reporter) {
surface->getCanvas()->drawRect(r, paint);
}
+// https://bugs.chromium.org/p/skia/issues/detail?id=5023
+// We should still shade pixels for which the radius is exactly 0.
+static void test_two_point_conical_zero_radius(skiatest::Reporter* reporter) {
+ SkAutoTUnref<SkSurface> surface(SkSurface::NewRasterN32Premul(5, 5));
+ surface->getCanvas()->clear(SK_ColorRED);
+
+ const SkColor colors[] = { SK_ColorGREEN, SK_ColorBLUE };
+ SkAutoTUnref<SkShader> shader(SkGradientShader::CreateTwoPointConical(
+ SkPoint::Make(2.5f, 2.5f), 0,
+ SkPoint::Make(3.0f, 3.0f), 10,
+ colors, nullptr, SK_ARRAY_COUNT(colors), SkShader::kClamp_TileMode));
+ SkPaint p;
+ p.setShader(shader);
+ surface->getCanvas()->drawPaint(p);
+
+ // r == 0 for the center pixel.
+ // verify that we draw it (no red bleed)
+ SkPMColor centerPMColor;
+ surface->readPixels(SkImageInfo::MakeN32Premul(1, 1), &centerPMColor, sizeof(SkPMColor), 2, 2);
+ REPORTER_ASSERT(reporter, SkGetPackedR32(centerPMColor) == 0);
+}
+
DEF_TEST(Gradient, reporter) {
TestGradientShaders(reporter);
TestConstantGradient(reporter);
test_big_grad(reporter);
test_nearly_vertical(reporter);
test_linear_fuzz(reporter);
+ test_two_point_conical_zero_radius(reporter);
}