2019-03-15 18:22:51 +00:00
|
|
|
// Copyright 2019 Google LLC.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "tools/fiddle/examples.h"
|
2019-03-15 18:22:51 +00:00
|
|
|
// HASH=a1d6a6721b39350f81021f71a1b93208
|
2019-03-18 20:06:34 +00:00
|
|
|
REG_FIDDLE(Matrix_MakeRectToRect, 256, 256, true, 0) {
|
2019-03-15 18:22:51 +00:00
|
|
|
void draw(SkCanvas* canvas) {
|
|
|
|
const SkRect srcs[] = { {0, 0, 0, 0}, {1, 2, 3, 4} };
|
|
|
|
const SkRect dsts[] = { {0, 0, 0, 0}, {5, 6, 8, 9} };
|
|
|
|
for (auto src : srcs) {
|
|
|
|
for (auto dst : dsts) {
|
|
|
|
SkMatrix matrix = SkMatrix::MakeRectToRect(src, dst, SkMatrix::kFill_ScaleToFit);
|
|
|
|
SkDebugf("src: %g, %g, %g, %g dst: %g, %g, %g, %g\n",
|
|
|
|
src.fLeft, src.fTop, src.fRight, src.fBottom,
|
|
|
|
dst.fLeft, dst.fTop, dst.fRight, dst.fBottom);
|
|
|
|
matrix.dump();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // END FIDDLE
|