Flutter Engine
The Flutter Engine
Matrix_mapHomogeneousPoints.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(Matrix_mapHomogeneousPoints, 256, 256, false, 0) {
5void draw(SkCanvas* canvas) {
6 SkPoint3 src[] = {{3, 3, 1}, {8, 2, 2}, {5, 0, 4}, {0, 1, 3},
7 {3, 7, 1}, {8, 6, 2}, {5, 4, 4}, {0, 5, 3}};
8 int lines[] = { 0, 1, 1, 2, 2, 3, 3, 0, 4, 5, 5, 6, 6, 7, 7, 4, 0, 4, 1, 5, 2, 6, 3, 7 };
9 constexpr int count = std::size(src);
10 auto debugster = [=](SkPoint3 src[]) -> void {
11 for (size_t i = 0; i < std::size(lines); i += 2) {
12 const SkPoint3& s = src[lines[i]];
13 const SkPoint3& e = src[lines[i + 1]];
15 paint.setARGB(77, 23, 99, 154);
16 canvas->drawLine(s.fX / s.fZ, s.fY / s.fZ, e.fX / e.fZ, e.fY / e.fZ, paint);
17 }
18 };
19 canvas->save();
20 canvas->translate(5, 5);
21 canvas->scale(15, 15);
22 debugster(src);
23 canvas->restore();
24 canvas->translate(128, 128);
26 matrix.setAll(15, 0, 0, 0, 15, 0, -0.08f, 0.04f, 1);
27 matrix.mapHomogeneousPoints(src, src, count);
28 debugster(src);
29}
30} // END FIDDLE
int count
Definition: FontMgrTest.cpp:50
REG_FIDDLE(Matrix_mapHomogeneousPoints, 256, 256, false, 0)
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition: aaclip.cpp:27
void restore()
Definition: SkCanvas.cpp:461
void translate(SkScalar dx, SkScalar dy)
Definition: SkCanvas.cpp:1278
void drawLine(SkScalar x0, SkScalar y0, SkScalar x1, SkScalar y1, const SkPaint &paint)
Definition: SkCanvas.cpp:2700
int save()
Definition: SkCanvas.cpp:447
void scale(SkScalar sx, SkScalar sy)
Definition: SkCanvas.cpp:1289
const Paint & paint
Definition: color_source.cc:38
struct MyStruct s
unsigned useCenter Optional< SkMatrix > matrix
Definition: SkRecords.h:258
it will be possible to load the file into Perfetto s trace viewer disable asset Prevents usage of any non test fonts unless they were explicitly Loaded via prefetched default font Indicates whether the embedding started a prefetch of the default font manager before creating the engine run In non interactive keep the shell running after the Dart script has completed enable serial On low power devices with low core running concurrent GC tasks on threads can cause them to contend with the UI thread which could potentially lead to jank This option turns off all concurrent GC activities domain network JSON encoded network policy per domain This overrides the DisallowInsecureConnections switch Embedder can specify whether to allow or disallow insecure connections at a domain level old gen heap size
Definition: switches.h:259