blob: cb93f4a1bee15ca2b4811478f01e127de5d877ac [file]
// 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"
REG_FIDDLE(Matrix_Concat, 256, 64, false, 4) {
void draw(SkCanvas* canvas) {
SkMatrix matrix, matrix2;
SkPoint perspect[4] = {{50, 10}, {180, 40}, {236, 176}, {10, 206}};
const std::array<SkPoint, 4> bitmapBounds = SkRect::Make(image->bounds()).toQuad();
matrix.setPolyToPoly(bitmapBounds, perspect);
matrix2.setPolyToPoly(perspect, bitmapBounds);
canvas->concat(matrix * matrix2);
canvas->drawImage(image, 0, 0);
}
} // END FIDDLE