d88c2e8e09
Change-Id: I9a6b2780cfdd91cdd16d5a08eb9ba1214492cb7e Reviewed-on: https://skia-review.googlesource.com/c/skia/+/201982 Commit-Queue: Hal Canary <halcanary@google.com> Reviewed-by: Hal Canary <halcanary@google.com>
19 lines
650 B
C++
19 lines
650 B
C++
// Copyright 2019 Google LLC.
|
|
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
|
|
#include "fiddle/examples.h"
|
|
// HASH=0fc85dd916cc1a5896d36c80b9847391
|
|
REG_FIDDLE(Src, 256, 256, false, 3) {
|
|
void draw(SkCanvas* canvas) {
|
|
canvas->drawImage(image, 0, 0);
|
|
canvas->clipRect({50, 50, 200, 200});
|
|
SkPaint srcBlend;
|
|
srcBlend.setBlendMode(SkBlendMode::kSrc);
|
|
canvas->saveLayer(nullptr, &srcBlend);
|
|
canvas->drawColor(0);
|
|
SkPaint transRed;
|
|
transRed.setColor(SkColorSetA(SK_ColorRED, 127));
|
|
canvas->drawCircle(125, 125, 75, transRed);
|
|
canvas->restore();
|
|
}
|
|
} // END FIDDLE
|