diff options
author | Behunin <l3ehunin@gmail.com> | 2023-02-08 01:21:17 +0100 |
---|---|---|
committer | Behunin <l3ehunin@gmail.com> | 2023-02-08 01:21:17 +0100 |
commit | 8551ac60080451f2defd3fead38abf331a48f964 (patch) | |
tree | b9cc5d32be6861f48b4173a0a31dbe8823e79c08 /src/video_core/gpu_thread.cpp | |
parent | Merge pull request #4949 from Morph1984/hidpi-temp-fix (diff) | |
download | yuzu-8551ac60080451f2defd3fead38abf331a48f964.tar yuzu-8551ac60080451f2defd3fead38abf331a48f964.tar.gz yuzu-8551ac60080451f2defd3fead38abf331a48f964.tar.bz2 yuzu-8551ac60080451f2defd3fead38abf331a48f964.tar.lz yuzu-8551ac60080451f2defd3fead38abf331a48f964.tar.xz yuzu-8551ac60080451f2defd3fead38abf331a48f964.tar.zst yuzu-8551ac60080451f2defd3fead38abf331a48f964.zip |
Diffstat (limited to 'src/video_core/gpu_thread.cpp')
-rw-r--r-- | src/video_core/gpu_thread.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/video_core/gpu_thread.cpp b/src/video_core/gpu_thread.cpp index 164a5252a..9c103c0d4 100644 --- a/src/video_core/gpu_thread.cpp +++ b/src/video_core/gpu_thread.cpp @@ -40,8 +40,6 @@ static void RunThread(std::stop_token stop_token, Core::System& system, scheduler.Push(submit_list->channel, std::move(submit_list->entries)); } else if (const auto* data = std::get_if<SwapBuffersCommand>(&next.data)) { renderer.SwapBuffers(data->framebuffer ? &*data->framebuffer : nullptr); - } else if (std::holds_alternative<OnCommandListEndCommand>(next.data)) { - rasterizer->ReleaseFences(); } else if (std::holds_alternative<GPUTickCommand>(next.data)) { system.GPU().TickWork(); } else if (const auto* flush = std::get_if<FlushRegionCommand>(&next.data)) { @@ -110,10 +108,6 @@ void ThreadManager::FlushAndInvalidateRegion(VAddr addr, u64 size) { rasterizer->OnCPUWrite(addr, size); } -void ThreadManager::OnCommandListEnd() { - PushCommand(OnCommandListEndCommand()); -} - u64 ThreadManager::PushCommand(CommandData&& command_data, bool block) { if (!is_async) { // In synchronous GPU mode, block the caller until the command has executed |