mirror of
https://github.com/yuzu-emu/FasTC.git
synced 2025-01-09 02:35:41 +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.
|
// exit.
|
||||||
int iJobSize;
|
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
|
// This is an optinal pointer to a stat manager class. If
|
||||||
// instantiated and the proper function pointer is defined
|
// instantiated and the proper function pointer is defined
|
||||||
// then the compression routine that collects the stats will
|
// then the compression routine that collects the stats will
|
||||||
|
|
Loading…
Reference in a new issue