Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
matrix.h
Go to the documentation of this file.
1// Copyright 2013 The Flutter Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef FLUTTER_LIB_UI_PAINTING_MATRIX_H_
6#define FLUTTER_LIB_UI_PAINTING_MATRIX_H_
7
11
12namespace flutter {
13
14SkM44 ToSkM44(const tonic::Float64List& matrix4);
15SkMatrix ToSkMatrix(const tonic::Float64List& matrix4);
16tonic::Float64List ToMatrix4(const SkMatrix& sk_matrix);
17
18} // namespace flutter
19
20#endif // FLUTTER_LIB_UI_PAINTING_MATRIX_H_
Definition SkM44.h:150
SkMatrix sk_matrix
tonic::Float64List ToMatrix4(const SkMatrix &sk_matrix)
Definition matrix.cc:46
SkM44 ToSkM44(const tonic::Float64List &matrix4)
Definition matrix.cc:21
SkMatrix ToSkMatrix(const tonic::Float64List &matrix4)
Definition matrix.cc:32