mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-17 08:11:51 +00:00
SPU: Make Accurate GETLLAR, PUTLLUC settings dynamically adjustable
This commit is contained in:
parent
4ffc58a8ce
commit
0b023d4e28
@ -42,8 +42,8 @@ struct cfg_root : cfg::node
|
||||
cfg::_bool spu_loop_detection{ this, "SPU loop detection", true, true }; // Try to detect wait loops and trigger thread yield
|
||||
cfg::_int<0, 6> max_spurs_threads{ this, "Max SPURS Threads", 6 }; // HACK. If less then 6, max number of running SPURS threads in each thread group.
|
||||
cfg::_enum<spu_block_size_type> spu_block_size{ this, "SPU Block Size", spu_block_size_type::safe };
|
||||
cfg::_bool spu_accurate_getllar{ this, "Accurate GETLLAR", false };
|
||||
cfg::_bool spu_accurate_putlluc{ this, "Accurate PUTLLUC", false };
|
||||
cfg::_bool spu_accurate_getllar{ this, "Accurate GETLLAR", false, true };
|
||||
cfg::_bool spu_accurate_putlluc{ this, "Accurate PUTLLUC", false, true };
|
||||
cfg::_bool spu_accurate_dma{ this, "Accurate SPU DMA", false };
|
||||
cfg::_bool rsx_accurate_res_access{this, "Accurate RSX reservation access", false, true};
|
||||
cfg::_bool spu_verification{ this, "SPU Verification", true }; // Should be enabled
|
||||
|
Loading…
Reference in New Issue
Block a user