diff options
author | Dave Airlie <[email protected]> | 2016-11-29 11:16:56 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2016-11-29 13:26:53 +1000 |
commit | f9ab60202d48c72afa6a6f2a8c27db1e0777ed16 (patch) | |
tree | 85d40bd1b8f106cb9b6667c62e9aad6a5e194e4f /src | |
parent | e0fc18a43590e120ae716670804fe26b0dd73878 (diff) |
anv: set maxFragmentDualSrcAttachments to 1
Reviewed-by: Kenneth Graunke <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Reported-by: Ilia Mirkin <[email protected]>
Cc: "13.0" <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/amd/vulkan/radv_device.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index ce697a9cff4..5a7ed045ca3 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -471,7 +471,7 @@ void radv_GetPhysicalDeviceProperties( .maxGeometryTotalOutputComponents = 1024, .maxFragmentInputComponents = 128, .maxFragmentOutputAttachments = 8, - .maxFragmentDualSrcAttachments = 2, + .maxFragmentDualSrcAttachments = 1, .maxFragmentCombinedOutputResources = 8, .maxComputeSharedMemorySize = 32768, .maxComputeWorkGroupCount = { 65535, 65535, 65535 }, |