Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Color_Dodge.cpp
Go to the documentation of this file.
1// 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.
4// HASH=280ad6267a7d2d77b6d2c4531c6fc0bf
5REG_FIDDLE(Color_Dodge, 256, 256, false, 3) {
6void draw(SkCanvas* canvas) {
7 canvas->drawImage(image, 0, 0);
8 canvas->clipRect({128, 0, 256, 256});
9 canvas->drawColor(SkColorSetARGB(0x80, 0x90, 0x90, 0x90), SkBlendMode::kColorDodge);
10}
11} // END FIDDLE
@ kColorDodge
brighten destination to reflect source
static constexpr SkColor SkColorSetARGB(U8CPU a, U8CPU r, U8CPU g, U8CPU b)
Definition SkColor.h:49
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition aaclip.cpp:27
void clipRect(const SkRect &rect, SkClipOp op, bool doAntiAlias)
void drawColor(SkColor color, SkBlendMode mode=SkBlendMode::kSrcOver)
Definition SkCanvas.h:1182
void drawImage(const SkImage *image, SkScalar left, SkScalar top)
Definition SkCanvas.h:1528
sk_sp< SkImage > image
Definition examples.cpp:29
#define REG_FIDDLE(NAME, W, H, TEXT, I)
Definition examples.h:60