diff options
author | Ilia Mirkin <[email protected]> | 2016-11-27 15:45:54 -0500 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2016-12-29 20:43:33 -0500 |
commit | c633f228b482f21b7646728569f807bb452fddfb (patch) | |
tree | c8994100e5c8b95ee66fbf4fd3cdf4a66f90d69a /src/intel | |
parent | 80bafc0c11bbccaceebebc8950cb564950894802 (diff) |
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 <[email protected]>
Reviewed-by: Dave Airlie <[email protected]>
Acked-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/intel')
-rw-r--r-- | src/intel/vulkan/TODO | 1 | ||||
-rw-r--r-- | src/intel/vulkan/anv_device.c | 2 |
2 files changed, 1 insertions, 2 deletions
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, |