Home
last modified time | relevance | path

Searched refs:SetPolyToPoly (Results 1 – 12 of 12) sorted by relevance

/ohos5.0/foundation/graphic/graphic_2d/rosen/test/2d_graphics/unittest/utils/
H A Dmatrix_test.cpp420 EXPECT_TRUE(matrix->SetPolyToPoly(src, dst, 0));
439 EXPECT_TRUE(matrix->SetPolyToPoly(src, dst, 1));
458 EXPECT_TRUE(matrix->SetPolyToPoly(src, dst, 4));
477 EXPECT_FALSE(matrix->SetPolyToPoly(src, dst, 5));
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/utils/
H A Dmatrix.cpp185 bool Matrix::SetPolyToPoly(const Point src[], const Point dst[], uint32_t count) in SetPolyToPoly() function in OHOS::Rosen::Drawing::Matrix
187 return matrixImplPtr->SetPolyToPoly(src, dst, count); in SetPolyToPoly()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/render/adapter/
H A Dmatrix2d.cpp112 matrix3d.SetPolyToPoly(src, dst, arrayLength); in SetMatrixPolyToPoly()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/engine_adapter/impl_interface/
H A Dmatrix_impl.h74 virtual bool SetPolyToPoly(const Point src[], const Point dst[], uint32_t count);
/ohos5.0/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/drawing/matrix_napi/
H A Djs_matrix.h46 static napi_value SetPolyToPoly(napi_env env, napi_callback_info info);
H A Djs_matrix.cpp46 DECLARE_NAPI_FUNCTION("setPolyToPoly", JsMatrix::SetPolyToPoly),
641 napi_value JsMatrix::SetPolyToPoly(napi_env env, napi_callback_info info) in SetPolyToPoly() function in OHOS::Rosen::Drawing::JsMatrix
676 bool result = m_matrix->SetPolyToPoly(srcPoints, dstPoints, count); in OnSetPolyToPoly()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/engine_adapter/skia_adapter/
H A Dskia_matrix.h75 bool SetPolyToPoly(const Point src[], const Point dst[], uint32_t count) override;
H A Dskia_matrix.cpp223 bool SkiaMatrix::SetPolyToPoly(const Point src[], const Point dst[], uint32_t count) in SetPolyToPoly() function in OHOS::Rosen::Drawing::SkiaMatrix
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/include/utils/
H A Dmatrix.h235 bool SetPolyToPoly(const Point src[], const Point dst[], uint32_t count);
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/modules/
H A Djsi_matrix4_module.cpp261 shared_ptr<JsValue> SetPolyToPoly(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& … in SetPolyToPoly() function
327 static auto jsSetPolyToPoly = runtime->NewFunction(SetPolyToPoly); in AddCommonMatrixProperties()
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/2d_graphics/fuzztest/utils/matrix_fuzzer/
H A Dmatrix_fuzzer.cpp149 matrix.SetPolyToPoly(src1, dst1, array_size); in MatrixFuzzTest002()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/drawing_ndk/src/
H A Ddrawing_matrix.cpp282 return matrix->SetPolyToPoly(CastToPoint(src), CastToPoint(dst), count); in OH_Drawing_MatrixSetPolyToPoly()