From: Ilia Mirkin Date: Sun, 27 Nov 2016 20:45:54 +0000 (-0500) Subject: anv: add support for extended texture gather X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c633f228b482f21b7646728569f807bb452fddfb;p=mesa.git anv: add support for extended texture gather Now that the SPIR-V -> NIR translation is in place, no additional logic is required. Signed-off-by: Ilia Mirkin Reviewed-by: Dave Airlie Acked-by: Jason Ekstrand --- diff --git a/src/intel/vulkan/TODO b/src/intel/vulkan/TODO index 915f4235ef9..235bbe7cecc 100644 --- a/src/intel/vulkan/TODO +++ b/src/intel/vulkan/TODO @@ -4,7 +4,6 @@ Intel Vulkan ToDo Missing Features: - FP64 - Tessellation - - Image Gather Extended - Storage Image Without Format - Investigate CTS failures on HSW - Pipeline statistics queries diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index 323cae40292..7a7d8328db8 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -468,7 +468,7 @@ void anv_GetPhysicalDeviceFeatures( .pipelineStatisticsQuery = false, .fragmentStoresAndAtomics = true, .shaderTessellationAndGeometryPointSize = true, - .shaderImageGatherExtended = false, + .shaderImageGatherExtended = true, .shaderStorageImageExtendedFormats = true, .shaderStorageImageMultisample = false, .shaderStorageImageReadWithoutFormat = false,