blob: 3b87d51fe3cc10ce968bd9c8d9275174eb79cdc0 [file] [log] [blame]
Hal Canary87515122019-03-15 14:22:51 -04001// 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.
Mike Kleinc0bd9f92019-04-23 12:05:21 -05003#include "tools/fiddle/examples.h"
Hal Canary87515122019-03-15 14:22:51 -04004// HASH=ac2fe555e2196e15863ea4ce74db3d54
Hal Canarya7181e7c2019-03-18 16:06:34 -04005REG_FIDDLE(Hard_Light, 256, 256, false, 3) {
Hal Canary87515122019-03-15 14:22:51 -04006void draw(SkCanvas* canvas) {
7 canvas->drawImage(image, 0, 0);
8 const SkColor colors[] = { 0xFFFFFFFF, 0x00000000 };
9 SkPaint paint;
10 paint.setBlendMode(SkBlendMode::kHardLight);
11 paint.setShader(SkGradientShader::MakeRadial({ 128, 128}, 100, colors,
Mike Reedfae8fce2019-04-03 10:27:45 -040012 nullptr, SK_ARRAY_COUNT(colors), SkTileMode::kClamp));
Hal Canary87515122019-03-15 14:22:51 -040013 canvas->clipRect({0, 128, 256, 256});
14 canvas->drawPaint(paint);
15}
16} // END FIDDLE