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.
3#include "tools/fiddle/examples.h"
4// HASH=83918a23fcffd47f59a1ef662c85a24c
5REG_FIDDLE(Canvas_drawPicture_2, 256, 256, false, 0) {
6void draw(SkCanvas* canvas) {
7    SkPictureRecorder recorder;
8    SkCanvas* recordingCanvas = recorder.beginRecording(50, 50);
9    for (auto color : { SK_ColorRED, SK_ColorBLUE, 0xff007f00 } ) {
10        SkPaint paint;
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    }
16    sk_sp<SkPicture> playback = recorder.finishRecordingAsPicture();
17    canvas->drawPicture(playback);
18    canvas->scale(2, 2);
19    canvas->translate(50, 0);
20    canvas->drawPicture(playback);
21}
22}  // END FIDDLE
23