Searched refs:UnmarshalMode (Results 1 – 7 of 7) sorted by relevance
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/include/recording/ |
H A D | draw_cmd_list.h | 34 enum class UnmarshalMode { enum 50 DrawCmdList(UnmarshalMode mode = UnmarshalMode::IMMEDIATE); 51 DrawCmdList(int32_t width, int32_t height, UnmarshalMode mode = UnmarshalMode::IMMEDIATE); 76 if (mode_ != UnmarshalMode::IMMEDIATE) { in AddDrawOp() 210 const UnmarshalMode mode_;
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/recording/ |
H A D | draw_cmd_list.cpp | 32 auto cmdList = std::make_shared<DrawCmdList>(DrawCmdList::UnmarshalMode::DEFERRED); in CreateFromData() 53 DrawCmdList::DrawCmdList(int32_t width, int32_t height, DrawCmdList::UnmarshalMode mode) in DrawCmdList() 70 if (mode_ != DrawCmdList::UnmarshalMode::DEFERRED) { in AddDrawOp() 130 if (mode_ == DrawCmdList::UnmarshalMode::DEFERRED) { in IsEmpty() 176 if (mode_ == DrawCmdList::UnmarshalMode::IMMEDIATE) { in MarshallingDrawOps() 349 if (mode_ == DrawCmdList::UnmarshalMode::IMMEDIATE) { in Playback() 351 } else if (mode_ == DrawCmdList::UnmarshalMode::DEFERRED) { in Playback() 370 if (mode_ == DrawCmdList::UnmarshalMode::IMMEDIATE) { in GenerateCache() 372 } else if (mode_ == DrawCmdList::UnmarshalMode::DEFERRED) { in GenerateCache() 505 if (mode_ == DrawCmdList::UnmarshalMode::DEFERRED) { in PlaybackToDrawCmdList() [all …]
|
H A D | recording_canvas.cpp | 38 DrawCmdList::UnmarshalMode mode = in RecordingCanvas() 39 … addDrawOpImmediate ? DrawCmdList::UnmarshalMode::IMMEDIATE : DrawCmdList::UnmarshalMode::DEFERRED; in RecordingCanvas() 58 DrawCmdList::UnmarshalMode mode = in Reset() 59 … addDrawOpImmediate ? DrawCmdList::UnmarshalMode::IMMEDIATE : DrawCmdList::UnmarshalMode::DEFERRED; in Reset()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/2d_graphics/unittest/recording/ |
H A D | draw_cmd_test.cpp | 692 auto drawCmdList = new DrawCmdList(DrawCmdList::UnmarshalMode::DEFERRED); 707 10, 10, DrawCmdList::UnmarshalMode::IMMEDIATE); // 10: width, height 723 auto drawCmdList = new DrawCmdList(DrawCmdList::UnmarshalMode::DEFERRED); 743 auto drawCmdList1 = new DrawCmdList(DrawCmdList::UnmarshalMode::IMMEDIATE); 749 auto drawCmdList2 = new DrawCmdList(DrawCmdList::UnmarshalMode::DEFERRED); 766 auto drawCmdList = new DrawCmdList(DrawCmdList::UnmarshalMode::IMMEDIATE); 784 auto drawCmdList2 = new DrawCmdList(10, 10, DrawCmdList::UnmarshalMode::DEFERRED); 801 auto drawCmdList = new DrawCmdList(DrawCmdList::UnmarshalMode::IMMEDIATE); 828 auto drawCmdList2 = new DrawCmdList(DrawCmdList::UnmarshalMode::DEFERRED);
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/modifier/ |
H A D | rs_extended_modifier.cpp | 159 …::make_shared<Drawing::DrawCmdList>(width, height, Drawing::DrawCmdList::UnmarshalMode::IMMEDIATE); in MakePiexlMapDrawCmdList()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service/unittest/drawable/ |
H A D | rs_canvas_drawing_render_node_drawable_test.cpp | 207 std::make_shared<Drawing::DrawCmdList>(Drawing::DrawCmdList::UnmarshalMode::DEFERRED); 242 std::make_shared<Drawing::DrawCmdList>(Drawing::DrawCmdList::UnmarshalMode::DEFERRED);
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_client/unittest/ui/ |
H A D | rs_canvas_node_test.cpp | 3685 std::make_shared<Drawing::DrawCmdList>(Drawing::DrawCmdList::UnmarshalMode::DEFERRED); 3691 std::make_shared<Drawing::DrawCmdList>(Drawing::DrawCmdList::UnmarshalMode::IMMEDIATE);
|