From: Ilia Mirkin Date: Sun, 27 Nov 2016 19:41:42 +0000 (-0500) Subject: anv: expose imageCubeArray functionality X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a34f89c5e6cb78cbec940e5d8d186141f19ccfe7;p=mesa.git anv: expose imageCubeArray functionality This appears to be fully supported already. Signed-off-by: Ilia Mirkin Reviewed-by: Lionel Landwerlin Reviewed-by: Jason Ekstrand --- diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index 41ace6c73dd..4c51981f03f 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -438,7 +438,7 @@ void anv_GetPhysicalDeviceFeatures( *pFeatures = (VkPhysicalDeviceFeatures) { .robustBufferAccess = true, .fullDrawIndexUint32 = true, - .imageCubeArray = false, + .imageCubeArray = true, .independentBlend = true, .geometryShader = true, .tessellationShader = false,