blob: 9c21b0875554535e93efa22566e7c91e694fed65 [file] [log] [blame]
// Copyright 2019 Google LLC.
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
#include "tools/fiddle/examples.h"
// HASH=ab746d9be63975041ae8e50cba84dc3d
REG_FIDDLE(Matrix_getScaleX, 256, 256, true, 0) {
void draw(SkCanvas* canvas) {
SkMatrix matrix;
matrix.setScale(42, 24);
SkDebugf("matrix.getScaleX() %c= 42\n", matrix.getScaleX() == 42 ? '=' : '!');
}
} // END FIDDLE