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

Go to the source code of this file.

Functions

 REG_FIDDLE (Canvas_drawPicture_4, 256, 256, false, 0)
 

Function Documentation

◆ REG_FIDDLE()

REG_FIDDLE ( Canvas_drawPicture_4  ,
256  ,
256  ,
false  ,
 
)

Definition at line 5 of file Canvas_drawPicture_4.cpp.

5 {
6void draw(SkCanvas* canvas) {
8 SkPictureRecorder recorder;
9 SkCanvas* recordingCanvas = recorder.beginRecording(50, 50);
10 for (auto color : { SK_ColorRED, SK_ColorBLUE, 0xff007f00 } ) {
11 paint.setColor(color);
12 recordingCanvas->drawRect({10, 10, 30, 40}, paint);
13 recordingCanvas->translate(10, 10);
14 recordingCanvas->scale(1.2f, 1.4f);
15 }
18 matrix.reset();
19 for (auto alpha : { 70, 140, 210 } ) {
20 paint.setAlpha(alpha);
21 canvas->drawPicture(playback, &matrix, &paint);
22 matrix.preTranslate(70, 70);
23 }
24}
25} // END FIDDLE
SkColor4f color
constexpr SkColor SK_ColorBLUE
Definition SkColor.h:135
constexpr SkColor SK_ColorRED
Definition SkColor.h:126
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition aaclip.cpp:27
void drawRect(const SkRect &rect, const SkPaint &paint)
void translate(SkScalar dx, SkScalar dy)
void scale(SkScalar sx, SkScalar sy)
void drawPicture(const SkPicture *picture)
Definition SkCanvas.h:1961
SkCanvas * beginRecording(const SkRect &bounds, sk_sp< SkBBoxHierarchy > bbh)
sk_sp< SkPicture > finishRecordingAsPicture()
const Paint & paint
unsigned useCenter Optional< SkMatrix > matrix
Definition SkRecords.h:258