2017-03-21 21:00:35 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2017 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/core/SkCanvas.h"
|
|
|
|
#include "include/core/SkMaskFilter.h"
|
|
|
|
#include "include/core/SkSurface.h"
|
|
|
|
#include "include/effects/SkImageSource.h"
|
|
|
|
#include "tests/Test.h"
|
|
|
|
#include "tools/Resources.h"
|
2017-03-21 21:00:35 +00:00
|
|
|
|
|
|
|
DEF_TEST(skbug_6389, r) {
|
|
|
|
auto s = SkSurface::MakeRasterN32Premul(100, 100);
|
|
|
|
SkPaint p;
|
2018-03-14 17:01:17 +00:00
|
|
|
p.setMaskFilter(SkMaskFilter::MakeBlur(SkBlurStyle::kNormal_SkBlurStyle, 5));
|
2017-12-08 15:21:31 +00:00
|
|
|
p.setImageFilter(SkImageSource::Make(GetResourceAsImage("images/mandrill_512.png"), {0, 0, 0, 0},
|
2017-03-21 21:00:35 +00:00
|
|
|
{0, 0, 0, 0}, (SkFilterQuality)0));
|
|
|
|
s->getCanvas()->drawPaint(p);
|
|
|
|
}
|