1
0
mirror of https://github.com/EduApps-CDG/OpenDX synced 2024-12-30 09:45:37 +01:00
OpenDX/src/dxvk/dxvk_options.h
Liam Middlebrook b25d6ba615 [dxvk] Add option to disable workaround for NVIDIA HVV bug
Adds a new dxvk.halveNvidiaHVVHeap option.

Reviewed-by: Arthur Huillet <ahuillet@nvidia.com>
2021-03-05 11:21:50 +01:00

39 lines
731 B
C++

#pragma once
#include "../util/config/config.h"
namespace dxvk {
struct DxvkOptions {
DxvkOptions() { }
DxvkOptions(const Config& config);
/// Enable state cache
bool enableStateCache;
/// Enables OpenVR loading
bool enableOpenVR;
/// Enables OpenXR loading
bool enableOpenXR;
/// Number of compiler threads
/// when using the state cache
int32_t numCompilerThreads;
/// Shader-related options
Tristate useRawSsbo;
Tristate useEarlyDiscard;
/// Workaround for NVIDIA driver
/// bug 3114283. Cut usable HVV
/// (Host-Visible Vidmem) heap
/// in half to avoid crash
Tristate halveNvidiaHVVHeap;
/// HUD elements
std::string hud;
};
}