summaryrefslogtreecommitdiffstats
path: root/src/intel
diff options
context:
space:
mode:
authorAnuj Phogat <[email protected]>2016-08-08 16:10:00 -0700
committerAnuj Phogat <[email protected]>2016-08-09 14:45:25 -0700
commitc4cd0e8ecd6ab9fc427d26ba7a9a360590291d24 (patch)
tree3be8eff693d7ca40ab314451fd5b42d48e34e77c /src/intel
parentf16295a198b02c993d834ebcfebf25bcf6885572 (diff)
anv/device: Enable sample shading on gen7+
Passes all 30 min_sample_shading tests in vulkan cts. Signed-off-by: Anuj Phogat <[email protected]> Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/intel')
-rw-r--r--src/intel/vulkan/anv_device.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c
index c2c515321da..aae925ded47 100644
--- a/src/intel/vulkan/anv_device.c
+++ b/src/intel/vulkan/anv_device.c
@@ -375,7 +375,7 @@ void anv_GetPhysicalDeviceFeatures(
.independentBlend = true,
.geometryShader = true,
.tessellationShader = false,
- .sampleRateShading = pdevice->info->gen >= 8,
+ .sampleRateShading = true,
.dualSrcBlend = true,
.logicOp = true,
.multiDrawIndirect = false,