1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-03-15 07:29:17 +01:00
dxvk/src/d3d11/d3d11_options.h

121 lines
3.8 KiB
C
Raw Normal View History

2018-03-24 17:29:13 +01:00
#pragma once
#include "../util/config/config.h"
#include "../dxgi/dxgi_options.h"
#include "../dxvk/dxvk_device.h"
2018-03-24 17:29:13 +01:00
#include "d3d11_include.h"
namespace dxvk {
struct D3D11Options {
D3D11Options(const Config& config);
/// Enables speed hack for mapping on deferred contexts
///
/// This can substantially speed up some games, but may
/// cause issues if the game submits command lists more
/// than once.
bool dcSingleUseMode = false;
/// Zero-initialize workgroup memory
///
/// Workargound for games that don't initialize
/// TGSM in compute shaders before reading it.
bool zeroInitWorkgroupMemory = false;
2022-09-09 13:59:58 +02:00
/// Force thread-group shared memory accesses to be volatile
///
/// Workaround for compute shaders that read and
/// write from the same shared memory location
/// without explicit synchronization.
bool forceVolatileTgsmAccess = false;
/// Use relaxed memory barriers
///
/// May improve performance in some games,
/// but might also cause rendering issues.
bool relaxedBarriers = false;
/// Ignore graphics barriers
///
/// May improve performance in some games,
/// but might also cause rendering issues.
bool ignoreGraphicsBarriers = false;
/// Maximum tessellation factor.
///
/// Limits tessellation factors in tessellation
/// control shaders. Values from 8 to 64 are
/// supported, other values will be ignored.
int32_t maxTessFactor = 0;
/// Anisotropic filter override
///
/// Enforces anisotropic filtering with the
/// given anisotropy value for all samplers.
int32_t samplerAnisotropy = -1;
/// Mipmap LOD bias
///
/// Enforces the given LOD bias for all samplers.
float samplerLodBias = 0.0f;
/// Clamps negative LOD bias
bool clampNegativeLodBias = false;
/// Declare vertex positions in shaders as invariant
bool invariantPosition = true;
/// Enable float control bits
bool floatControls = true;
/// Back buffer count for the Vulkan swap chain.
/// Overrides DXGI_SWAP_CHAIN_DESC::BufferCount.
int32_t numBackBuffers = 0;
/// Override maximum frame latency if the app specifies
/// a higher value. May help with frame timing issues.
int32_t maxFrameLatency = 0;
/// Defer surface creation until first present call. This
/// fixes issues with games that create multiple swap chains
/// for a single window that may interfere with each other.
bool deferSurfaceCreation = false;
/// Enables sample rate shading by interpolating fragment shader
/// inputs at the sample location rather than pixel center,
/// unless otherwise specified by the application.
bool forceSampleRateShading = false;
/// Forces the sample count of all textures to be 1, and
/// performs the required shader and resolve fixups.
bool disableMsaa = false;
/// Dynamic resources with the given bind flags will be allocated
/// in cached system memory. Enabled automatically when recording
/// an api trace.
uint32_t cachedDynamicResources = 0;
/// Always lock immediate context on every API call. May be
/// useful for debugging purposes or when applications have
/// race conditions.
bool enableContextLock = false;
/// Whether to expose the driver command list feature. Enabled by
/// default and generally beneficial, but some games may assume that
/// this is not supported when running on an AMD GPU.
bool exposeDriverCommandLists = true;
/// Ensure that for the same D3D commands the output VK commands
/// don't change between runs. Useful for comparative benchmarking,
/// can negatively affect performance.
bool reproducibleCommandStream = false;
/// Shader dump path
std::string shaderDumpPath;
2018-03-24 17:29:13 +01:00
};
}