Home
last modified time | relevance | path

Searched refs:bitmapMeshInfo (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/canvas/
H A Dcanvas_rendering_context_2d_model_impl.cpp442 void CanvasRenderingContext2DModelImpl::DrawBitmapMesh(const BitmapMeshInfo& bitmapMeshInfo) in DrawBitmapMesh() argument
444 CHECK_NULL_VOID(bitmapMeshInfo.pool); in DrawBitmapMesh()
445 auto pool = AceType::DynamicCast<CanvasTaskPool>(bitmapMeshInfo.pool); in DrawBitmapMesh()
447 CHECK_NULL_VOID(bitmapMeshInfo.offscreenPattern); in DrawBitmapMesh()
448 auto offscreenPattern = AceType::DynamicCast<OffscreenCanvas>(bitmapMeshInfo.offscreenPattern); in DrawBitmapMesh()
450 …pool->DrawBitmapMesh(offscreenPattern, bitmapMeshInfo.mesh, bitmapMeshInfo.column, bitmapMeshInfo.… in DrawBitmapMesh()
H A Doffscreen_canvas_rendering_context_2d_model_impl.cpp441 …id OffscreenCanvasRenderingContext2DModelImpl::DrawBitmapMesh(const BitmapMeshInfo& bitmapMeshInfo) in DrawBitmapMesh() argument
443 CHECK_NULL_VOID(bitmapMeshInfo.pool); in DrawBitmapMesh()
444 auto pool = AceType::DynamicCast<CanvasTaskPool>(bitmapMeshInfo.pool); in DrawBitmapMesh()
446 CHECK_NULL_VOID(bitmapMeshInfo.offscreenPattern); in DrawBitmapMesh()
447 auto offscreenPattern = AceType::DynamicCast<OffscreenCanvas>(bitmapMeshInfo.offscreenPattern); in DrawBitmapMesh()
449 …pool->DrawBitmapMesh(offscreenPattern, bitmapMeshInfo.mesh, bitmapMeshInfo.column, bitmapMeshInfo.… in DrawBitmapMesh()
H A Dcanvas_rendering_context_2d_model_impl.h99 void DrawBitmapMesh(const BitmapMeshInfo& bitmapMeshInfo) override;
H A Doffscreen_canvas_rendering_context_2d_model_impl.h99 void DrawBitmapMesh(const BitmapMeshInfo& bitmapMeshInfo) override;
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/canvas/
H A Djs_canvas_renderer.cpp887 BitmapMeshInfo bitmapMeshInfo; in JsDrawBitmapMesh() local
888 bitmapMeshInfo.offscreenPattern = OffscreenPattern; in JsDrawBitmapMesh()
889 bitmapMeshInfo.mesh = mesh; in JsDrawBitmapMesh()
890 bitmapMeshInfo.column = column; in JsDrawBitmapMesh()
891 bitmapMeshInfo.row = row; in JsDrawBitmapMesh()
892 renderingContext2DModel_->DrawBitmapMesh(bitmapMeshInfo); in JsDrawBitmapMesh()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/canvas/
H A Drendering_context_2d_model.h106 virtual void DrawBitmapMesh(const BitmapMeshInfo& bitmapMeshInfo) {} in DrawBitmapMesh() argument