diff options
author | Feng Chen <vonchenplus@gmail.com> | 2021-12-02 05:19:43 +0100 |
---|---|---|
committer | Feng Chen <vonchenplus@gmail.com> | 2021-12-02 05:48:42 +0100 |
commit | 2c47f8aa1886522898b5b3a73185b5662be3e9f3 (patch) | |
tree | badff9fee7c63a693fd9da3c6fb2cfe34d2d9ed1 /src/video_core/gpu.h | |
parent | Merge pull request #7483 from zhaobot/tx-update-20211201022129 (diff) | |
download | yuzu-2c47f8aa1886522898b5b3a73185b5662be3e9f3.tar yuzu-2c47f8aa1886522898b5b3a73185b5662be3e9f3.tar.gz yuzu-2c47f8aa1886522898b5b3a73185b5662be3e9f3.tar.bz2 yuzu-2c47f8aa1886522898b5b3a73185b5662be3e9f3.tar.lz yuzu-2c47f8aa1886522898b5b3a73185b5662be3e9f3.tar.xz yuzu-2c47f8aa1886522898b5b3a73185b5662be3e9f3.tar.zst yuzu-2c47f8aa1886522898b5b3a73185b5662be3e9f3.zip |
Diffstat (limited to '')
-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); |