blob: 6bb19e3106972375f7944c8a1d8b9e26a8773462 [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 "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