mirror of
https://github.com/EduApps-CDG/OpenDX
synced 2024-12-30 09:45:37 +01:00
15 lines
752 B
C++
15 lines
752 B
C++
#include "dxvk_options.h"
|
|
|
|
namespace dxvk {
|
|
|
|
DxvkOptions::DxvkOptions(const Config& config) {
|
|
enableStateCache = config.getOption<bool> ("dxvk.enableStateCache", true);
|
|
enableOpenVR = config.getOption<bool> ("dxvk.enableOpenVR", true);
|
|
enableOpenXR = config.getOption<bool> ("dxvk.enableOpenXR", true);
|
|
numCompilerThreads = config.getOption<int32_t> ("dxvk.numCompilerThreads", 0);
|
|
useRawSsbo = config.getOption<Tristate>("dxvk.useRawSsbo", Tristate::Auto);
|
|
useEarlyDiscard = config.getOption<Tristate>("dxvk.useEarlyDiscard", Tristate::Auto);
|
|
hud = config.getOption<std::string>("dxvk.hud", "");
|
|
}
|
|
|
|
} |