diff options
author | bunnei <bunneidev@gmail.com> | 2021-12-07 18:38:14 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-07 18:38:14 -0800 |
commit | 815189eaf31c6fdeb7983d03d17ba3685b61f806 (patch) | |
tree | 340ac3f1c580dcc2560a2775b2014ae80259dd07 /src/video_core/gpu.h | |
parent | 5b2cb22a049f324dc59f47b032c5340974f72d84 (diff) | |
parent | 5462485cc3835941713b835bce3b671b15d210b7 (diff) |
Merge pull request #7488 from vonchenplus/support_multiple_videos_playing
Support multiple videos playing
Diffstat (limited to 'src/video_core/gpu.h')
-rw-r--r-- | src/video_core/gpu.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/gpu.h b/src/video_core/gpu.h index c89a5d693..500411176 100644 --- a/src/video_core/gpu.h +++ b/src/video_core/gpu.h @@ -242,10 +242,10 @@ public: void PushGPUEntries(Tegra::CommandList&& entries); /// Push GPU command buffer entries to be processed - void PushCommandBuffer(Tegra::ChCommandHeaderList& entries); + void PushCommandBuffer(u32 id, Tegra::ChCommandHeaderList& entries); /// Frees the CDMAPusher instance to free up resources - void ClearCdmaInstance(); + void ClearCdmaInstance(u32 id); /// Swap buffers (render frame) void SwapBuffers(const Tegra::FramebufferConfig* framebuffer); |