Home
last modified time | relevance | path

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

/foundation/graphic/graphic_2d/rosen/test/render_service/render_service/unittest/pipeline/parallel_render/
Drs_sub_thread_test.cpp46 auto curThread = std::make_shared<RSSubThread>(renderContext, 0);
63 auto curThread1 = std::make_shared<RSSubThread>(nullptr, 0);
68 auto curThread2 = std::make_shared<RSSubThread>(renderContext, 0);
82 auto curThread1 = std::make_shared<RSSubThread>(nullptr, 0);
87 auto curThread2 = std::make_shared<RSSubThread>(renderContext, 0);
101 auto curThread = std::make_shared<RSSubThread>(nullptr, 0);
113 auto curThread = std::make_shared<RSSubThread>(nullptr, 0);
133 auto curThread = std::make_shared<RSSubThread>(nullptr, 0);
152 auto curThread = std::make_shared<RSSubThread>(nullptr, 0);
Drs_sub_thread_manager_test.cpp48 auto curThread = std::make_shared<RSSubThread>(renderContext, 0);
67 auto curThread = std::make_shared<RSSubThread>(renderContext, 0);
/foundation/graphic/graphic_2d/rosen/modules/render_service/core/pipeline/parallel_render/
Drs_sub_thread.cpp47 RSSubThread::~RSSubThread() in ~RSSubThread()
55 pid_t RSSubThread::Start() in Start()
84 void RSSubThread::PostTask(const std::function<void()>& task, const std::string& name) in PostTask()
91 void RSSubThread::PostSyncTask(const std::function<void()>& task) in PostSyncTask()
98 void RSSubThread::RemoveTask(const std::string& name) in RemoveTask()
105 void RSSubThread::DumpMem(DfxString& log) in DumpMem()
112 float RSSubThread::GetAppGpuMemoryInMB() in GetAppGpuMemoryInMB()
121 void RSSubThread::CreateShareEglContext() in CreateShareEglContext()
143 void RSSubThread::DestroyShareEglContext() in DestroyShareEglContext()
157 void RSSubThread::RenderCache(const std::shared_ptr<RSSuperRenderTask>& threadTask) in RenderCache()
[all …]
Drs_sub_thread.h32 class RSSubThread {
34RSSubThread(RenderContext* context, uint32_t threadIndex) : threadIndex_(threadIndex), renderConte… in RSSubThread() function
35 ~RSSubThread();
Drs_sub_thread_manager.h74 std::vector<std::shared_ptr<RSSubThread>> threadList_;
Drs_sub_thread_manager.cpp47 auto curThread = std::make_shared<RSSubThread>(context, i); in Start()