Browse Source
Revert "Increase accuracy of memory operations on High a bit more"
This reverts commit f13c6e8b59.
pull/276/head
MaranBr
7 months ago
committed by
crueter
No known key found for this signature in database
GPG Key ID: 425ACD2D4830EBC6
1 changed files with
7 additions and
1 deletions
-
src/video_core/dma_pusher.cpp
|
|
|
@ -100,10 +100,15 @@ bool DmaPusher::Step() { |
|
|
|
ProcessCommands(headers); |
|
|
|
}; |
|
|
|
if (Settings::IsGPULevelHigh()) { |
|
|
|
safe_process(); |
|
|
|
if (dma_state.method >= MacroRegistersStart) { |
|
|
|
unsafe_process(); |
|
|
|
} else { |
|
|
|
safe_process(); |
|
|
|
} |
|
|
|
} else { |
|
|
|
unsafe_process(); |
|
|
|
} |
|
|
|
|
|
|
|
if (dma_pushbuffer_subindex >= command_list.command_lists.size()) { |
|
|
|
// We've gone through the current list, remove it from the queue
|
|
|
|
dma_pushbuffer.pop(); |
|
|
|
@ -111,6 +116,7 @@ bool DmaPusher::Step() { |
|
|
|
} else if (command_list.command_lists[dma_pushbuffer_subindex].sync && Settings::values.sync_memory_operations.GetValue()) { |
|
|
|
signal_sync = true; |
|
|
|
} |
|
|
|
|
|
|
|
if (signal_sync) { |
|
|
|
rasterizer->SignalFence([this]() { |
|
|
|
std::scoped_lock lk(sync_mutex); |
|
|
|
|