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();
|
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;
|
|
|
|
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);
|
2018-12-13 12:17:09 +01:00
|
|
|
useRawSsbo
|
|
|
|
= (devInfo.core.properties.limits.minStorageBufferOffsetAlignment <= sizeof(uint32_t));
|
2018-11-23 12:28:48 +01:00
|
|
|
|
2019-02-05 19:58:46 +01:00
|
|
|
strictDivision = options.strictDivision;
|
2018-11-23 16:11:46 +01:00
|
|
|
zeroInitWorkgroupMemory = options.zeroInitWorkgroupMemory;
|
|
|
|
|
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
|
|
|
|
|
|
|
// Apply shader-related options
|
|
|
|
applyTristate(useSubgroupOpsForEarlyDiscard, device->config().useEarlyDiscard);
|
|
|
|
applyTristate(useRawSsbo, device->config().useRawSsbo);
|
2018-01-07 20:05:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|