GPUThread: Remove unnecessary padding

This commit is contained in:
Stenzek 2025-05-05 02:22:28 +10:00
parent c8a5712c10
commit 03db7ea8ea
No known key found for this signature in database

View File

@ -108,7 +108,7 @@ struct ALIGN_TO_CACHE_LINE State
// Owned by GPU thread. // Owned by GPU thread.
ALIGN_TO_CACHE_LINE std::unique_ptr<GPUBackend> gpu_backend; ALIGN_TO_CACHE_LINE std::unique_ptr<GPUBackend> gpu_backend;
ALIGN_TO_CACHE_LINE std::unique_ptr<GPUPresenter> gpu_presenter; std::unique_ptr<GPUPresenter> gpu_presenter;
std::atomic<u32> command_fifo_read_ptr{0}; std::atomic<u32> command_fifo_read_ptr{0};
u8 run_idle_reasons = 0; u8 run_idle_reasons = 0;
bool run_idle_flag = false; bool run_idle_flag = false;