Searched refs:ScaleOpItem (Results 1 – 3 of 3) sorted by relevance
1866 ScaleOpItem::Unmarshalling, sizeof(ScaleOpItem::ConstructorHandle));1868 ScaleOpItem::ScaleOpItem(ScaleOpItem::ConstructorHandle* handle) in ScaleOpItem() function in OHOS::Rosen::Drawing::ScaleOpItem1871 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()
568 cmdList_->AddDrawOp(std::make_shared<ScaleOpItem>(sx, sy)); in Scale()571 cmdList_->AddDrawOp<ScaleOpItem::ConstructorHandle>(sx, sy); in Scale()
1114 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() function1124 ~ScaleOpItem() override = default;