blob: c8a0479f7ac0a91d7ef48b2423f0c76e9e92b2ed [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=a9b56a26ca469bab9ab10e16f62fb2e2
Hal Canarya7181e7c2019-03-18 16:06:34 -04005REG_FIDDLE(Clear, 256, 256, false, 0) {
Hal Canary87515122019-03-15 14:22:51 -04006void draw(SkCanvas* canvas) {
7 canvas->saveLayer(nullptr, nullptr);
8 canvas->drawColor(SK_ColorYELLOW, SkBlendMode::kClear);
9 SkPaint paint;
10 for (auto color : { SK_ColorRED, SK_ColorBLUE, SK_ColorGREEN } ) {
11 SkColor colors[] = { color, SkColorSetA(color, 0) };
12 paint.setShader(SkGradientShader::MakeRadial({ 64, 64}, 100,
Herb Derby5623d9e2022-06-16 15:03:00 -040013 colors, nullptr, std::size(colors), SkTileMode::kClamp));
Hal Canary87515122019-03-15 14:22:51 -040014 canvas->drawCircle(64, 64, 100, paint);
15 canvas->translate(64, 64);
16 }
17 canvas->restore();
18}
19} // END FIDDLE