mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-13 19:29:14 +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
|
||||
|
||||
|
||||
# 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.
|
||||
#
|
||||
# Supported values:
|
||||
|
@ -4,7 +4,6 @@ namespace dxvk {
|
||||
|
||||
DxvkOptions::DxvkOptions(const Config& config) {
|
||||
enableStateCache = config.getOption<bool> ("dxvk.enableStateCache", true);
|
||||
enableTransferQueue = config.getOption<bool> ("dxvk.enableTransferQueue", true);
|
||||
numCompilerThreads = config.getOption<int32_t> ("dxvk.numCompilerThreads", 0);
|
||||
asyncPresent = config.getOption<Tristate>("dxvk.asyncPresent", Tristate::Auto);
|
||||
useRawSsbo = config.getOption<Tristate>("dxvk.useRawSsbo", Tristate::Auto);
|
||||
|
@ -11,9 +11,6 @@ namespace dxvk {
|
||||
/// Enable state cache
|
||||
bool enableStateCache;
|
||||
|
||||
/// Use transfer queue if available
|
||||
bool enableTransferQueue;
|
||||
|
||||
/// Number of compiler threads
|
||||
/// when using the state cache
|
||||
int32_t numCompilerThreads;
|
||||
|
Loading…
x
Reference in New Issue
Block a user