diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-02-11 16:28:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-11 16:28:30 +0100 |
commit | 1040f1f5038832f12d71d6b80924d81b6c4d607c (patch) | |
tree | 40eace73fde2c2d6104a16e437eff79f624ef387 /src/video_core/gpu_thread.h | |
parent | Merge pull request #9742 from liamwhite/svc-wrap-only (diff) | |
parent | Remove OnCommandListEndCommand (diff) | |
download | yuzu-1040f1f5038832f12d71d6b80924d81b6c4d607c.tar yuzu-1040f1f5038832f12d71d6b80924d81b6c4d607c.tar.gz yuzu-1040f1f5038832f12d71d6b80924d81b6c4d607c.tar.bz2 yuzu-1040f1f5038832f12d71d6b80924d81b6c4d607c.tar.lz yuzu-1040f1f5038832f12d71d6b80924d81b6c4d607c.tar.xz yuzu-1040f1f5038832f12d71d6b80924d81b6c4d607c.tar.zst yuzu-1040f1f5038832f12d71d6b80924d81b6c4d607c.zip |
Diffstat (limited to 'src/video_core/gpu_thread.h')
-rw-r--r-- | src/video_core/gpu_thread.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/video_core/gpu_thread.h b/src/video_core/gpu_thread.h index c71a419c7..90bcb5958 100644 --- a/src/video_core/gpu_thread.h +++ b/src/video_core/gpu_thread.h @@ -77,16 +77,12 @@ struct FlushAndInvalidateRegionCommand final { u64 size; }; -/// Command called within the gpu, to schedule actions after a command list end -struct OnCommandListEndCommand final {}; - /// Command to make the gpu look into pending requests struct GPUTickCommand final {}; using CommandData = std::variant<std::monostate, SubmitListCommand, SwapBuffersCommand, FlushRegionCommand, - InvalidateRegionCommand, FlushAndInvalidateRegionCommand, OnCommandListEndCommand, - GPUTickCommand>; + InvalidateRegionCommand, FlushAndInvalidateRegionCommand, GPUTickCommand>; struct CommandDataContainer { CommandDataContainer() = default; @@ -134,8 +130,6 @@ public: /// Notify rasterizer that any caches of the specified region should be flushed and invalidated void FlushAndInvalidateRegion(VAddr addr, u64 size); - void OnCommandListEnd(); - void TickGPU(); private: |