mirror of
https://github.com/yuzu-emu/FasTC.git
synced 2025-01-08 05:45:27 +00:00
Add flag to compression settings to use atomics.
This commit is contained in:
parent
c475ee1dec
commit
2127c04987
|
@ -79,6 +79,11 @@ struct SCompressionSettings {
|
|||
// exit.
|
||||
int iJobSize;
|
||||
|
||||
// This flags instructs the compression routine to be launched in succession
|
||||
// with many threads at once. Atomic expressions based on the availability
|
||||
// in the platform and compiler will provide synchronization.
|
||||
bool bUseAtomics;
|
||||
|
||||
// This is an optinal pointer to a stat manager class. If
|
||||
// instantiated and the proper function pointer is defined
|
||||
// then the compression routine that collects the stats will
|
||||
|
|
Loading…
Reference in a new issue