Flutter Engine
The Flutter Engine
Canvas_empty_constructor.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.
4REG_FIDDLE(Canvas_empty_constructor, 256, 256, true, 0) {
5static void check_for_rotated_ctm(const SkCanvas* canvas) {
6 const SkM44 matrix = canvas->getLocalToDevice();
7 SkDebugf("ctm is identity = %s\n", matrix == SkM44() ? "true" : "false");
8}
9
10void draw(SkCanvas* canvas) {
11 check_for_rotated_ctm(canvas);
12 canvas->rotate(30);
13 check_for_rotated_ctm(canvas);
14 SkCanvas defaultCanvas;
15 check_for_rotated_ctm(&defaultCanvas);
16}
17} // END FIDDLE
REG_FIDDLE(Canvas_empty_constructor, 256, 256, true, 0)
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
SkM44 getLocalToDevice() const
Definition: SkCanvas.cpp:1633
void rotate(SkScalar degrees)
Definition: SkCanvas.cpp:1300
Definition: SkM44.h:150
unsigned useCenter Optional< SkMatrix > matrix
Definition: SkRecords.h:258