mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-14 22:29:15 +01:00
[dxvk] Remove option to disable transfer queue
This commit is contained in:
parent
a74449c367
commit
4b199ef60d
11
dxvk.conf
11
dxvk.conf
@ -143,17 +143,6 @@
|
|||||||
# d3d11.zeroWorkgroupMemory = False
|
# d3d11.zeroWorkgroupMemory = False
|
||||||
|
|
||||||
|
|
||||||
# Enables the dedicated transfer queue if available
|
|
||||||
#
|
|
||||||
# If enabled, resource uploads will be performed on the
|
|
||||||
# transfer queue rather than the graphics queue. This
|
|
||||||
# may improve texture streaming performance.
|
|
||||||
#
|
|
||||||
# Supported values: True, False
|
|
||||||
|
|
||||||
# dxvk.enableTransferQueue = True
|
|
||||||
|
|
||||||
|
|
||||||
# Sets number of pipeline compiler threads.
|
# Sets number of pipeline compiler threads.
|
||||||
#
|
#
|
||||||
# Supported values:
|
# Supported values:
|
||||||
|
@ -4,7 +4,6 @@ namespace dxvk {
|
|||||||
|
|
||||||
DxvkOptions::DxvkOptions(const Config& config) {
|
DxvkOptions::DxvkOptions(const Config& config) {
|
||||||
enableStateCache = config.getOption<bool> ("dxvk.enableStateCache", true);
|
enableStateCache = config.getOption<bool> ("dxvk.enableStateCache", true);
|
||||||
enableTransferQueue = config.getOption<bool> ("dxvk.enableTransferQueue", true);
|
|
||||||
numCompilerThreads = config.getOption<int32_t> ("dxvk.numCompilerThreads", 0);
|
numCompilerThreads = config.getOption<int32_t> ("dxvk.numCompilerThreads", 0);
|
||||||
asyncPresent = config.getOption<Tristate>("dxvk.asyncPresent", Tristate::Auto);
|
asyncPresent = config.getOption<Tristate>("dxvk.asyncPresent", Tristate::Auto);
|
||||||
useRawSsbo = config.getOption<Tristate>("dxvk.useRawSsbo", Tristate::Auto);
|
useRawSsbo = config.getOption<Tristate>("dxvk.useRawSsbo", Tristate::Auto);
|
||||||
|
@ -11,9 +11,6 @@ namespace dxvk {
|
|||||||
/// Enable state cache
|
/// Enable state cache
|
||||||
bool enableStateCache;
|
bool enableStateCache;
|
||||||
|
|
||||||
/// Use transfer queue if available
|
|
||||||
bool enableTransferQueue;
|
|
||||||
|
|
||||||
/// Number of compiler threads
|
/// Number of compiler threads
|
||||||
/// when using the state cache
|
/// when using the state cache
|
||||||
int32_t numCompilerThreads;
|
int32_t numCompilerThreads;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user