Home
last modified time | relevance | path

Searched refs:CreateMatrixImpl (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/engine_adapter/
H A Dimpl_factory.h84 static std::unique_ptr<MatrixImpl> CreateMatrixImpl();
85 static std::unique_ptr<MatrixImpl> CreateMatrixImpl(const Matrix& other);
H A Dimpl_factory.cpp283 std::unique_ptr<MatrixImpl> ImplFactory::CreateMatrixImpl() in CreateMatrixImpl() function in OHOS::Rosen::Drawing::ImplFactory
293 std::unique_ptr<MatrixImpl> ImplFactory::CreateMatrixImpl(const Matrix& other) in CreateMatrixImpl() function in OHOS::Rosen::Drawing::ImplFactory
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/utils/
H A Dmatrix.cpp23 Matrix::Matrix() : matrixImplPtr(ImplFactory::CreateMatrixImpl()) {} in Matrix()
25 Matrix::Matrix(const Matrix& other) : matrixImplPtr(ImplFactory::CreateMatrixImpl(other)) {} in Matrix()