Home
last modified time | relevance | path

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

/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/recording/
H A Ddraw_cmd.cpp1866 ScaleOpItem::Unmarshalling, sizeof(ScaleOpItem::ConstructorHandle));
1868 ScaleOpItem::ScaleOpItem(ScaleOpItem::ConstructorHandle* handle) in ScaleOpItem() function in OHOS::Rosen::Drawing::ScaleOpItem
1871 std::shared_ptr<DrawOpItem> ScaleOpItem::Unmarshalling(const DrawCmdList& cmdList, void* handle) in Unmarshalling()
1873 return std::make_shared<ScaleOpItem>(static_cast<ScaleOpItem::ConstructorHandle*>(handle)); in Unmarshalling()
1876 void ScaleOpItem::Marshalling(DrawCmdList& cmdList) in Marshalling()
1881 void ScaleOpItem::Playback(Canvas* canvas, const Rect* rect) in Playback()
H A Drecording_canvas.cpp568 cmdList_->AddDrawOp(std::make_shared<ScaleOpItem>(sx, sy)); in Scale()
571 cmdList_->AddDrawOp<ScaleOpItem::ConstructorHandle>(sx, sy); in Scale()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/include/recording/
H A Ddraw_cmd.h1114 class ScaleOpItem : public DrawOpItem {
1122 explicit ScaleOpItem(ConstructorHandle* handle);
1123 ScaleOpItem(scalar sx, scalar sy) : DrawOpItem(DrawOpItem::SCALE_OPITEM), sx_(sx), sy_(sy) {} in ScaleOpItem() function
1124 ~ScaleOpItem() override = default;