Home
last modified time | relevance | path

Searched refs:RSExtendImageBaseObj (Results 1 – 8 of 8) sorted by relevance

/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/pipeline/
H A Drs_draw_cmd_test.cpp171 RSExtendImageBaseObj extendImageBaseObj(pixelMap, src, dst);
177 RSExtendImageBaseObj obj;
184 RSExtendImageBaseObj extendImageBaseObjT(pixelMapT, src, dst);
201 RSExtendImageBaseObj extendImageBaseObj(pixelMap, src, dst);
204 RSExtendImageBaseObj obj;
220 RSExtendImageBaseObj extendImageBaseObj(pixelMap, src, dst);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/pipeline/
H A Drs_draw_cmd.h108 class RSB_EXPORT RSExtendImageBaseObj : public Drawing::ExtendImageBaseObj {
110 RSExtendImageBaseObj() = default;
111 RSExtendImageBaseObj(const std::shared_ptr<Media::PixelMap>& pixelMap, const Drawing::Rect& src,
113 ~RSExtendImageBaseObj() override = default;
117 static RSExtendImageBaseObj *Unmarshalling(Parcel &parcel);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/pipeline/
H A Drs_draw_cmd.cpp434 RSExtendImageBaseObj::RSExtendImageBaseObj(const std::shared_ptr<Media::PixelMap>& pixelMap, const … in RSExtendImageBaseObj() function in OHOS::Rosen::RSExtendImageBaseObj
445 void RSExtendImageBaseObj::Playback(Drawing::Canvas& canvas, const Drawing::Rect& rect, in Playback()
453 void RSExtendImageBaseObj::SetNodeId(NodeId id) in SetNodeId()
460 void RSExtendImageBaseObj::Purge() in Purge()
467 bool RSExtendImageBaseObj::Marshalling(Parcel &parcel) const in Marshalling()
473 RSExtendImageBaseObj *RSExtendImageBaseObj::Unmarshalling(Parcel &parcel) in Unmarshalling()
475 auto object = new RSExtendImageBaseObj(); in Unmarshalling()
621 objectHandle_ = std::make_shared<RSExtendImageBaseObj>(pixelMap, src, dst); in DrawPixelMapRectOpItem()
H A Drs_recording_canvas.cpp94 auto object = std::make_shared<RSExtendImageBaseObj>(pixelMap, src, dst); in DrawPixelMapRect()
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/platform/ohos/
H A Drs_marshalling_helper_test.cpp1058 std::shared_ptr<RSExtendImageBaseObj> val;
1060 val = std::make_shared<RSExtendImageBaseObj>();
1073 std::shared_ptr<RSExtendImageBaseObj> val = std::make_shared<RSExtendImageBaseObj>();
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/transaction/
H A Drs_marshalling_helper.h38 class RSExtendImageBaseObj; variable
263 DECLARE_FUNCTION_OVERLOAD(std::shared_ptr<RSExtendImageBaseObj>)
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/ohos/
H A Drs_marshalling_helper.cpp1650 auto rsBaseObject = std::static_pointer_cast<RSExtendImageBaseObj>(objectBase); in Marshalling()
1812 std::shared_ptr<RSExtendImageBaseObj> objectBase; in Unmarshalling()
1935 bool RSMarshallingHelper::Marshalling(Parcel& parcel, const std::shared_ptr<RSExtendImageBaseObj>& … in Marshalling()
1948 bool RSMarshallingHelper::Unmarshalling(Parcel& parcel, std::shared_ptr<RSExtendImageBaseObj>& val) in Unmarshalling()
1954 val.reset(RSExtendImageBaseObj::Unmarshalling(parcel)); in Unmarshalling()
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/fuzztest/rsmarshallinghelper_fuzzer/
H A Drsmarshallinghelper_fuzzer.cpp542 auto extendImageBaseObj = std::make_shared<RSExtendImageBaseObj>(nullptr, src, dst); in DoMarshallingHelper013()