2018-11-23 16:11:46 +01:00
|
|
|
#include "../d3d11/d3d11_options.h"
|
2018-04-22 23:49:41 +02:00
|
|
|
|
2018-01-07 20:05:27 +01:00
|
|
|
#include "dxbc_options.h"
|
|
|
|
|
|
|
|
namespace dxvk {
|
|
|
|
|
2018-11-09 08:41:02 +01:00
|
|
|
DxbcOptions::DxbcOptions() {
|
|
|
|
|
2018-04-22 23:49:41 +02:00
|
|
|
}
|
2018-11-09 08:41:02 +01:00
|
|
|
|
|
|
|
|
2018-11-23 16:11:46 +01:00
|
|
|
DxbcOptions::DxbcOptions(const Rc<DxvkDevice>& device, const D3D11Options& options) {
|
2018-12-12 16:27:01 +01:00
|
|
|
const Rc<DxvkAdapter> adapter = device->adapter();
|
|
|
|
|
2018-07-31 16:58:25 +02:00
|
|
|
const DxvkDeviceFeatures& devFeatures = device->features();
|
2018-12-12 16:27:01 +01:00
|
|
|
const DxvkDeviceInfo& devInfo = adapter->devicePropertiesExt();
|
2019-05-15 18:49:02 +02:00
|
|
|
|
|
|
|
const VkShaderStageFlags allShaderStages = device->getShaderPipelineStages();
|
2018-11-07 11:57:36 +01:00
|
|
|
|
2019-02-19 14:27:21 +01:00
|
|
|
useDepthClipWorkaround
|
|
|
|
= !devFeatures.extDepthClipEnable.depthClipEnable;
|
2018-11-07 11:57:36 +01:00
|
|
|
useStorageImageReadWithoutFormat
|
|
|
|
= devFeatures.core.features.shaderStorageImageReadWithoutFormat;
|
2019-05-15 18:49:02 +02:00
|
|
|
useSubgroupOpsForAtomicCounters
|
|
|
|
= (devInfo.coreSubgroup.supportedStages & allShaderStages) == allShaderStages
|
|
|
|
&& (devInfo.coreSubgroup.supportedOperations & VK_SUBGROUP_FEATURE_BALLOT_BIT);
|
2018-11-07 11:57:36 +01:00
|
|
|
useSubgroupOpsForEarlyDiscard
|
|
|
|
= (devInfo.coreSubgroup.subgroupSize >= 4)
|
|
|
|
&& (devInfo.coreSubgroup.supportedStages & VK_SHADER_STAGE_FRAGMENT_BIT)
|
2018-11-26 15:09:41 +01:00
|
|
|
&& (devInfo.coreSubgroup.supportedOperations & VK_SUBGROUP_FEATURE_BALLOT_BIT);
|
2019-03-09 19:59:56 +01:00
|
|
|
useSdivForBufferIndex
|
|
|
|
= adapter->matchesDriver(DxvkGpuVendor::Nvidia, VK_DRIVER_ID_NVIDIA_PROPRIETARY_KHR, 0, 0);
|
2019-06-05 01:28:29 +02:00
|
|
|
|
|
|
|
switch (device->config().useRawSsbo) {
|
|
|
|
case Tristate::Auto: minSsboAlignment = devInfo.core.properties.limits.minStorageBufferOffsetAlignment; break;
|
2019-06-11 20:23:47 +02:00
|
|
|
case Tristate::True: minSsboAlignment = 4u; break;
|
|
|
|
case Tristate::False: minSsboAlignment = ~0u; break;
|
2019-06-05 01:28:29 +02:00
|
|
|
}
|
2018-11-23 12:28:48 +01:00
|
|
|
|
2019-04-05 20:24:08 +02:00
|
|
|
strictDivision = options.strictDivision;
|
|
|
|
zeroInitWorkgroupMemory = options.zeroInitWorkgroupMemory;
|
2019-04-30 16:07:24 +02:00
|
|
|
|
|
|
|
if (DxvkGpuVendor(devInfo.core.properties.vendorID) != DxvkGpuVendor::Amd)
|
|
|
|
constantBufferRangeCheck = options.constantBufferRangeCheck;
|
2018-11-23 16:11:46 +01:00
|
|
|
|
2019-01-08 20:58:18 +01:00
|
|
|
// Disable early discard on RADV due to GPU hangs
|
2018-11-23 12:28:48 +01:00
|
|
|
// Disable early discard on Nvidia because it may hurt performance
|
2018-12-12 16:27:01 +01:00
|
|
|
if (adapter->matchesDriver(DxvkGpuVendor::Amd, VK_DRIVER_ID_MESA_RADV_KHR, 0, 0)
|
|
|
|
|| adapter->matchesDriver(DxvkGpuVendor::Nvidia, VK_DRIVER_ID_NVIDIA_PROPRIETARY_KHR, 0, 0))
|
2018-11-23 12:28:48 +01:00
|
|
|
useSubgroupOpsForEarlyDiscard = false;
|
2019-01-08 20:58:18 +01:00
|
|
|
|
2019-06-15 12:56:29 +02:00
|
|
|
// Disable atomic counters on older RADV versions
|
|
|
|
if (adapter->matchesDriver(DxvkGpuVendor::Amd, VK_DRIVER_ID_MESA_RADV_KHR, 0, VK_MAKE_VERSION(19, 1, 0)))
|
|
|
|
useSubgroupOpsForAtomicCounters = false;
|
|
|
|
|
2019-01-08 20:58:18 +01:00
|
|
|
// Apply shader-related options
|
|
|
|
applyTristate(useSubgroupOpsForEarlyDiscard, device->config().useEarlyDiscard);
|
2018-01-07 20:05:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|