diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2023-02-11 10:28:30 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-11 10:28:30 -0500 |
| commit | 1040f1f5038832f12d71d6b80924d81b6c4d607c (patch) | |
| tree | 40eace73fde2c2d6104a16e437eff79f624ef387 /src/video_core/gpu.cpp | |
| parent | abd826ba87a7a02c2a0813f18f99915f8d6799b8 (diff) | |
| parent | 8551ac60080451f2defd3fead38abf331a48f964 (diff) | |
Merge pull request #9744 from behunin/quick-release
gpu_thread: Remove OnCommandListEndCommand
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. |
