blob: 343a23a3b46f238692602463fc8318bd31b7fb9a [file] [log] [blame]
Hal Canary83c2f702019-03-07 14:53:03 -05001// Copyright 2019 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 "fiddle/examples.h"
4// HASH=ac93f30dff13f8a8bb31398de370863b
5REG_FIDDLE(BlendMode_021, 256, 256, false, 3) {
6void draw(SkCanvas* canvas) {
7 const SkColor colors[] = { 0xFFFFFFFF, 0x3FFFFFFF };
8 SkPaint paint;
9 paint.setBlendMode(SkBlendMode::kSoftLight);
10 paint.setShader(SkGradientShader::MakeRadial({ 128, 128}, 100, colors,
11 nullptr, SK_ARRAY_COUNT(colors), SkShader::kClamp_TileMode));
12 canvas->drawImage(image, 0, 0);
13 canvas->drawCircle(128, 128, 100, paint);
14}
15} // END FIDDLE