1// Copyright 2020 Google LLC. 2// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. 3#include "tools/fiddle/examples.h" 4REG_FIDDLE(skbug_237_drawImage_with_blur, 256, 256, false, 6) { 5void draw(SkCanvas* canvas) { 6 SkPaint paint; 7 paint.setMaskFilter(SkMaskFilter::MakeBlur(kNormal_SkBlurStyle, 5.0f, false)); 8 canvas->clear(0xFF88FF88); 9 canvas->scale(4, 4); 10 auto subset = image->makeSubset({16, 16, 48, 48}); 11 canvas->drawImage(subset, 16, 16, SkSamplingOptions(), &paint); 12} 13} // END FIDDLE 14