summaryrefslogtreecommitdiffstats
path: root/src/intel/vulkan/anv_device.c
diff options
context:
space:
mode:
authorNanley Chery <nanley.g.chery@intel.com>2016-05-18 10:50:48 -0700
committerNanley Chery <nanley.g.chery@intel.com>2016-05-20 09:27:11 -0700
commit9b8c4000d0e92a1e52e2ca52f05dec5254d2a358 (patch)
tree79aa0a13a0b0a2edcd340b5897d9f03d0ec7a668 /src/intel/vulkan/anv_device.c
parent0d2847e1773a1460d6a6a7cde87f488369879c99 (diff)
downloadexternal_mesa3d-9b8c4000d0e92a1e52e2ca52f05dec5254d2a358.zip
external_mesa3d-9b8c4000d0e92a1e52e2ca52f05dec5254d2a358.tar.gz
external_mesa3d-9b8c4000d0e92a1e52e2ca52f05dec5254d2a358.tar.bz2
anv: Enable textureCompressionASTC_LDR on Gen9+
Signed-off-by: Nanley Chery <nanley.g.chery@intel.com> Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Diffstat (limited to 'src/intel/vulkan/anv_device.c')
-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 e9f555c..eb40e2d 100644
--- a/src/intel/vulkan/anv_device.c
+++ b/src/intel/vulkan/anv_device.c
@@ -381,7 +381,7 @@ void anv_GetPhysicalDeviceFeatures(
.samplerAnisotropy = false, /* FINISHME */
.textureCompressionETC2 = pdevice->info->gen >= 8 ||
pdevice->info->is_baytrail,
- .textureCompressionASTC_LDR = false, /* FINISHME */
+ .textureCompressionASTC_LDR = pdevice->info->gen >= 9, /* FINISHME CHV */
.textureCompressionBC = true,
.occlusionQueryPrecise = true,
.pipelineStatisticsQuery = false,