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-07-31 16:58:25 +02:00
|
|
|
const DxvkDeviceFeatures& devFeatures = device->features();
|
2018-11-07 11:57:36 +01:00
|
|
|
const DxvkDeviceInfo& devInfo = device->adapter()->devicePropertiesExt();
|
|
|
|
|
|
|
|
useStorageImageReadWithoutFormat
|
|
|
|
= devFeatures.core.features.shaderStorageImageReadWithoutFormat;
|
|
|
|
useSubgroupOpsForEarlyDiscard
|
|
|
|
= (devInfo.coreSubgroup.subgroupSize >= 4)
|
|
|
|
&& (devInfo.coreSubgroup.supportedStages & VK_SHADER_STAGE_FRAGMENT_BIT)
|
|
|
|
&& (devInfo.coreSubgroup.supportedOperations & VK_SUBGROUP_FEATURE_ARITHMETIC_BIT);
|
2018-11-11 17:49:11 +01:00
|
|
|
useSubgroupOpsClustered = useSubgroupOpsForEarlyDiscard
|
|
|
|
&& (devInfo.coreSubgroup.supportedOperations & VK_SUBGROUP_FEATURE_CLUSTERED_BIT);
|
2018-11-23 12:28:48 +01:00
|
|
|
|
2018-11-23 16:11:46 +01:00
|
|
|
zeroInitWorkgroupMemory = options.zeroInitWorkgroupMemory;
|
|
|
|
|
2018-11-23 12:28:48 +01:00
|
|
|
// Disable early discard on Nvidia because it may hurt performance
|
|
|
|
if (DxvkGpuVendor(devInfo.core.properties.vendorID) == DxvkGpuVendor::Nvidia) {
|
|
|
|
useSubgroupOpsForEarlyDiscard = false;
|
|
|
|
useSubgroupOpsClustered = false;
|
|
|
|
}
|
2018-01-07 20:05:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|