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

Go to the source code of this file.

Functions

 REG_FIDDLE (Canvas_drawPatch_2_b, 256, 256, false, 6)
 

Function Documentation

◆ REG_FIDDLE()

REG_FIDDLE ( Canvas_drawPatch_2_b  ,
256  ,
256  ,
false  ,
 
)

Definition at line 5 of file Canvas_drawPatch_2_b.cpp.

5 {
6void draw(SkCanvas* canvas) {
7 // SkBitmap source = checkerboard;
9 paint.setAntiAlias(true);
10 SkPoint cubics[] = { { 3, 1 }, { 4, 2 }, { 5, 1 }, { 7, 3 },
11 /* { 7, 3 }, */ { 6, 4 }, { 7, 5 }, { 5, 7 },
12 /* { 5, 7 }, */ { 4, 6 }, { 3, 7 }, { 1, 5 },
13 /* { 1, 5 }, */ { 2, 4 }, { 1, 3 }, /* { 3, 1 } */ };
14 SkPoint texCoords[] = { { 0, 0 }, { 0, 62}, { 62, 62}, { 62, 0 } };
16 canvas->scale(30, 30);
17 canvas->drawPatch(cubics, nullptr, texCoords, SkBlendMode::kModulate, paint);
18}
19} // END FIDDLE
@ kModulate
r = s*d
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition aaclip.cpp:27
sk_sp< SkShader > makeShader(SkTileMode tmx, SkTileMode tmy, const SkSamplingOptions &, const SkMatrix *localMatrix=nullptr) const
Definition SkBitmap.cpp:669
void drawPatch(const SkPoint cubics[12], const SkColor colors[4], const SkPoint texCoords[4], SkBlendMode mode, const SkPaint &paint)
void scale(SkScalar sx, SkScalar sy)
const Paint & paint
SkBitmap source
Definition examples.cpp:28