diff options
author | Nanley Chery <[email protected]> | 2016-05-18 10:50:48 -0700 |
---|---|---|
committer | Nanley Chery <[email protected]> | 2016-05-20 09:27:11 -0700 |
commit | 9b8c4000d0e92a1e52e2ca52f05dec5254d2a358 (patch) | |
tree | 79aa0a13a0b0a2edcd340b5897d9f03d0ec7a668 /src/intel/vulkan/anv_device.c | |
parent | 0d2847e1773a1460d6a6a7cde87f488369879c99 (diff) |
anv: Enable textureCompressionASTC_LDR on Gen9+
Signed-off-by: Nanley Chery <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/intel/vulkan/anv_device.c')
-rw-r--r-- | src/intel/vulkan/anv_device.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index e9f555c9d11..eb40e2d9b35 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, |