mirror of
https://github.com/EduApps-CDG/OpenDX
synced 2024-12-30 09:45:37 +01:00
10 lines
286 B
C++
10 lines
286 B
C++
#include "dxvk_options.h"
|
|
|
|
namespace dxvk {
|
|
|
|
DxvkOptions::DxvkOptions(const Config& config) {
|
|
allowMemoryOvercommit = config.getOption<bool> ("dxvk.allowMemoryOvercommit", false);
|
|
numCompilerThreads = config.getOption<int32_t> ("dxvk.numCompilerThreads", 0);
|
|
}
|
|
|
|
} |