Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Functions
Paint_nothingToDraw.cpp File Reference
#include "tools/fiddle/examples.h"

Go to the source code of this file.

Functions

 REG_FIDDLE (Paint_nothingToDraw, 256, 256, true, 0)
 

Function Documentation

◆ REG_FIDDLE()

REG_FIDDLE ( Paint_nothingToDraw  ,
256  ,
256  ,
true  ,
 
)

Definition at line 5 of file Paint_nothingToDraw.cpp.

5 {
6void draw(SkCanvas* canvas) {
7 auto debugster = [](const char* prefix, const SkPaint& p) -> void {
8 SkDebugf("%s nothing to draw: %s\n", prefix,
9 p.nothingToDraw() ? "true" : "false");
10 };
12 debugster("initial", paint);
13 paint.setBlendMode(SkBlendMode::kDst);
14 debugster("blend dst", paint);
15 paint.setBlendMode(SkBlendMode::kSrcOver);
16 debugster("blend src over", paint);
17 paint.setAlpha(0);
18 debugster("alpha 0", paint);
19}
20} // END FIDDLE
@ kSrcOver
r = s + (1-sa)*d
void SK_SPI SkDebugf(const char format[],...) SK_PRINTF_LIKE(1
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition aaclip.cpp:27
const Paint & paint