diff options
author | Dave Airlie <[email protected]> | 2016-11-24 00:44:28 +0000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2017-07-24 17:45:03 +1000 |
commit | feef47bb593306aee2854e9bd146543c44d68468 (patch) | |
tree | 817a095249e61b2dbc3555ce0ebd7ed37dd88f76 /src/amd/vulkan/radv_device.c | |
parent | 486472a98db8dc8bd87f498970ead1cf6f5dfd02 (diff) |
radv: enable sample shading
This calculates ps_iter_samples from the minSampleShading input
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/amd/vulkan/radv_device.c')
-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 111bc7e957f..497ef21c6c8 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -570,7 +570,7 @@ void radv_GetPhysicalDeviceFeatures( .independentBlend = true, .geometryShader = !is_gfx9, .tessellationShader = !is_gfx9, - .sampleRateShading = false, + .sampleRateShading = true, .dualSrcBlend = true, .logicOp = true, .multiDrawIndirect = true, |