summaryrefslogtreecommitdiff
path: root/src/video_core/gpu.cpp
diff options
context:
space:
mode:
authorGravatar Feng Chen2021-12-02 12:19:43 +0800
committerGravatar Feng Chen2021-12-02 12:48:42 +0800
commit2c47f8aa1886522898b5b3a73185b5662be3e9f3 (patch)
treebadff9fee7c63a693fd9da3c6fb2cfe34d2d9ed1 /src/video_core/gpu.cpp
parentMerge pull request #7483 from zhaobot/tx-update-20211201022129 (diff)
downloadyuzu-2c47f8aa1886522898b5b3a73185b5662be3e9f3.tar.gz
yuzu-2c47f8aa1886522898b5b3a73185b5662be3e9f3.tar.xz
yuzu-2c47f8aa1886522898b5b3a73185b5662be3e9f3.zip
Support multiple videos playing
Diffstat (limited to 'src/video_core/gpu.cpp')
-rw-r--r--src/video_core/gpu.cpp43
1 files changed, 13 insertions, 30 deletions
diff --git a/src/video_core/gpu.cpp b/src/video_core/gpu.cpp
index ab7c21a49..27a47954d 100644
--- a/src/video_core/gpu.cpp
+++ b/src/video_core/gpu.cpp
@@ -185,16 +185,6 @@ struct GPU::Impl {
185 return *dma_pusher; 185 return *dma_pusher;
186 } 186 }
187 187
188 /// Returns a reference to the GPU CDMA pusher.
189 [[nodiscard]] Tegra::CDmaPusher& CDmaPusher() {
190 return *cdma_pusher;
191 }
192
193 /// Returns a const reference to the GPU CDMA pusher.
194 [[nodiscard]] const Tegra::CDmaPusher& CDmaPusher() const {
195 return *cdma_pusher;
196 }
197
198 /// Returns a reference to the underlying renderer. 188 /// Returns a reference to the underlying renderer.
199 [[nodiscard]] VideoCore::RendererBase& Renderer() { 189 [[nodiscard]] VideoCore::RendererBase& Renderer() {
200 return *renderer; 190 return *renderer;
@@ -338,25 +328,26 @@ struct GPU::Impl {
338 } 328 }
339 329
340 /// Push GPU command buffer entries to be processed 330 /// Push GPU command buffer entries to be processed
341 void PushCommandBuffer(Tegra::ChCommandHeaderList& entries) { 331 void PushCommandBuffer(u32 id, Tegra::ChCommandHeaderList& entries) {
342 if (!use_nvdec) { 332 if (!use_nvdec) {
343 return; 333 return;
344 } 334 }
345 335
346 if (!cdma_pusher) { 336 if (cdma_pushers.find(id) == cdma_pushers.end()) {
347 cdma_pusher = std::make_unique<Tegra::CDmaPusher>(gpu); 337 cdma_pushers[id] = std::make_unique<Tegra::CDmaPusher>(gpu);
348 } 338 }
349 339
350 // SubmitCommandBuffer would make the nvdec operations async, this is not currently working 340 // SubmitCommandBuffer would make the nvdec operations async, this is not currently working
351 // TODO(ameerj): RE proper async nvdec operation 341 // TODO(ameerj): RE proper async nvdec operation
352 // gpu_thread.SubmitCommandBuffer(std::move(entries)); 342 // gpu_thread.SubmitCommandBuffer(std::move(entries));
353 343 cdma_pushers[id]->ProcessEntries(std::move(entries));
354 cdma_pusher->ProcessEntries(std::move(entries));
355 } 344 }
356 345
357 /// Frees the CDMAPusher instance to free up resources 346 /// Frees the CDMAPusher instance to free up resources
358 void ClearCdmaInstance() { 347 void ClearCdmaInstance(u32 id) {
359 cdma_pusher.reset(); 348 if (cdma_pushers.find(id) != cdma_pushers.end()) {
349 cdma_pushers.erase(id);
350 }
360 } 351 }
361 352
362 /// Swap buffers (render frame) 353 /// Swap buffers (render frame)
@@ -659,7 +650,7 @@ struct GPU::Impl {
659 Core::System& system; 650 Core::System& system;
660 std::unique_ptr<Tegra::MemoryManager> memory_manager; 651 std::unique_ptr<Tegra::MemoryManager> memory_manager;
661 std::unique_ptr<Tegra::DmaPusher> dma_pusher; 652 std::unique_ptr<Tegra::DmaPusher> dma_pusher;
662 std::unique_ptr<Tegra::CDmaPusher> cdma_pusher; 653 std::map<u32, std::unique_ptr<Tegra::CDmaPusher>> cdma_pushers;
663 std::unique_ptr<VideoCore::RendererBase> renderer; 654 std::unique_ptr<VideoCore::RendererBase> renderer;
664 VideoCore::RasterizerInterface* rasterizer = nullptr; 655 VideoCore::RasterizerInterface* rasterizer = nullptr;
665 const bool use_nvdec; 656 const bool use_nvdec;
@@ -811,14 +802,6 @@ const Tegra::DmaPusher& GPU::DmaPusher() const {
811 return impl->DmaPusher(); 802 return impl->DmaPusher();
812} 803}
813 804
814Tegra::CDmaPusher& GPU::CDmaPusher() {
815 return impl->CDmaPusher();
816}
817
818const Tegra::CDmaPusher& GPU::CDmaPusher() const {
819 return impl->CDmaPusher();
820}
821
822VideoCore::RendererBase& GPU::Renderer() { 805VideoCore::RendererBase& GPU::Renderer() {
823 return impl->Renderer(); 806 return impl->Renderer();
824} 807}
@@ -887,12 +870,12 @@ void GPU::PushGPUEntries(Tegra::CommandList&& entries) {
887 impl->PushGPUEntries(std::move(entries)); 870 impl->PushGPUEntries(std::move(entries));
888} 871}
889 872
890void GPU::PushCommandBuffer(Tegra::ChCommandHeaderList& entries) { 873void GPU::PushCommandBuffer(u32 id, Tegra::ChCommandHeaderList& entries) {
891 impl->PushCommandBuffer(entries); 874 impl->PushCommandBuffer(id, entries);
892} 875}
893 876
894void GPU::ClearCdmaInstance() { 877void GPU::ClearCdmaInstance(u32 id) {
895 impl->ClearCdmaInstance(); 878 impl->ClearCdmaInstance(id);
896} 879}
897 880
898void GPU::SwapBuffers(const Tegra::FramebufferConfig* framebuffer) { 881void GPU::SwapBuffers(const Tegra::FramebufferConfig* framebuffer) {