mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-20 19:55:46 +00:00
gpu_thread: (HACK) Ignore flush on FlushAndInvalidateRegion.
This commit is contained in:
parent
fbcb9e6815
commit
4633fda5be
1 changed files with 1 additions and 3 deletions
|
@ -119,9 +119,7 @@ void ThreadManager::InvalidateRegion(VAddr addr, u64 size) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void ThreadManager::FlushAndInvalidateRegion(VAddr addr, u64 size) {
|
void ThreadManager::FlushAndInvalidateRegion(VAddr addr, u64 size) {
|
||||||
// Block the CPU when using accurate emulation
|
InvalidateRegion(addr, size);
|
||||||
PushCommand(FlushAndInvalidateRegionCommand(addr, size),
|
|
||||||
Settings::values.use_accurate_gpu_emulation, false);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void ThreadManager::PushCommand(CommandData&& command_data, bool wait_for_idle, bool allow_on_cpu) {
|
void ThreadManager::PushCommand(CommandData&& command_data, bool wait_for_idle, bool allow_on_cpu) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue