Commit 5dc92e19 authored by Robert Phillips's avatar Robert Phillips Committed by Commit Bot

Remove testing of Skia's defunct mask-filter occlusion rect feature

Skia's mask-filter occlusion rect feature has been defunct since the Skia CL:

https://skia-review.googlesource.com/c/skia/+/147561 (Remove occluder feature from blur mask filter)

Cq-Include-Trybots: luci.chromium.try:android_optional_gpu_tests_rel;master.tryserver.blink:linux_trusty_blink_rel
Change-Id: Iaa5656f0ff9e4b99500389651789f549f4352846
Reviewed-on: https://chromium-review.googlesource.com/1183623Reviewed-by: default avatarenne <enne@chromium.org>
Commit-Queue: Robert Phillips <robertphillips@google.com>
Cr-Commit-Position: refs/heads/master@{#585005}
parent 2048d869
...@@ -1072,7 +1072,7 @@ std::vector<PaintFlags> test_flags = { ...@@ -1072,7 +1072,7 @@ std::vector<PaintFlags> test_flags = {
SkScalar intervals[] = {1.f, 1.f}; SkScalar intervals[] = {1.f, 1.f};
flags.setPathEffect(SkDashPathEffect::Make(intervals, 2, 0)); flags.setPathEffect(SkDashPathEffect::Make(intervals, 2, 0));
flags.setMaskFilter(SkMaskFilter::MakeBlur( flags.setMaskFilter(SkMaskFilter::MakeBlur(
SkBlurStyle::kOuter_SkBlurStyle, 4.3f, test_rects[0])); SkBlurStyle::kOuter_SkBlurStyle, 4.3f));
flags.setColorFilter(SkColorMatrixFilter::MakeLightingFilter( flags.setColorFilter(SkColorMatrixFilter::MakeLightingFilter(
SK_ColorYELLOW, SK_ColorGREEN)); SK_ColorYELLOW, SK_ColorGREEN));
......
...@@ -129,7 +129,7 @@ TEST_F(PaintOpPerfTest, ManyFlagsOps) { ...@@ -129,7 +129,7 @@ TEST_F(PaintOpPerfTest, ManyFlagsOps) {
SkScalar intervals[] = {1.f, 1.f}; SkScalar intervals[] = {1.f, 1.f};
flags.setPathEffect(SkDashPathEffect::Make(intervals, 2, 0)); flags.setPathEffect(SkDashPathEffect::Make(intervals, 2, 0));
flags.setMaskFilter(SkMaskFilter::MakeBlur( flags.setMaskFilter(SkMaskFilter::MakeBlur(
SkBlurStyle::kOuter_SkBlurStyle, 4.3f, SkRect::MakeXYWH(1, 1, 1, 1))); SkBlurStyle::kOuter_SkBlurStyle, 4.3));
flags.setColorFilter( flags.setColorFilter(
SkColorMatrixFilter::MakeLightingFilter(SK_ColorYELLOW, SK_ColorGREEN)); SkColorMatrixFilter::MakeLightingFilter(SK_ColorYELLOW, SK_ColorGREEN));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment