Hal Canary | 27ecd86 | 2017-03-21 14:00:35 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2017 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
| 8 | #include "Resources.h" |
Hal Canary | 27ecd86 | 2017-03-21 14:00:35 -0700 | [diff] [blame] | 9 | #include "SkCanvas.h" |
| 10 | #include "SkImageSource.h" |
Mike Reed | 1be1f8d | 2018-03-14 13:01:17 -0400 | [diff] [blame] | 11 | #include "SkMaskFilter.h" |
Hal Canary | 27ecd86 | 2017-03-21 14:00:35 -0700 | [diff] [blame] | 12 | #include "SkSurface.h" |
| 13 | #include "Test.h" |
| 14 | |
| 15 | DEF_TEST(skbug_6389, r) { |
| 16 | auto s = SkSurface::MakeRasterN32Premul(100, 100); |
| 17 | SkPaint p; |
Mike Reed | 1be1f8d | 2018-03-14 13:01:17 -0400 | [diff] [blame] | 18 | p.setMaskFilter(SkMaskFilter::MakeBlur(SkBlurStyle::kNormal_SkBlurStyle, 5)); |
Hal Canary | c465d13 | 2017-12-08 10:21:31 -0500 | [diff] [blame] | 19 | p.setImageFilter(SkImageSource::Make(GetResourceAsImage("images/mandrill_512.png"), {0, 0, 0, 0}, |
Hal Canary | 27ecd86 | 2017-03-21 14:00:35 -0700 | [diff] [blame] | 20 | {0, 0, 0, 0}, (SkFilterQuality)0)); |
| 21 | s->getCanvas()->drawPaint(p); |
| 22 | } |