diff options
author | Behunin <l3ehunin@gmail.com> | 2023-02-07 17:21:17 -0700 |
---|---|---|
committer | Behunin <l3ehunin@gmail.com> | 2023-02-07 17:21:17 -0700 |
commit | 8551ac60080451f2defd3fead38abf331a48f964 (patch) | |
tree | b9cc5d32be6861f48b4173a0a31dbe8823e79c08 /src/video_core/gpu.cpp | |
parent | 1f3e8d633a6886aabc6631f2474dea644557458c (diff) |
Remove OnCommandListEndCommand
Call rasterizer->ReleaseFences() directly
Diffstat (limited to 'src/video_core/gpu.cpp')
-rw-r--r-- | src/video_core/gpu.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/gpu.cpp b/src/video_core/gpu.cpp index c6d54be63..7024a19cf 100644 --- a/src/video_core/gpu.cpp +++ b/src/video_core/gpu.cpp @@ -99,7 +99,7 @@ struct GPU::Impl { /// Signal the ending of command list. void OnCommandListEnd() { - gpu_thread.OnCommandListEnd(); + rasterizer->ReleaseFences(); } /// Request a host GPU memory flush from the CPU. |