diff options
author | Nanley Chery <[email protected]> | 2016-04-15 13:36:31 -0700 |
---|---|---|
committer | Nanley Chery <[email protected]> | 2016-04-27 11:28:30 -0700 |
commit | 5f7e8eac426a53df25721f07c11f109ca4a56138 (patch) | |
tree | 94f6fb97440e50624e777f99671085faeae38a7c /src/intel | |
parent | e0806930ad2406d611a0d2fa1d3420a74122921c (diff) |
anv/device: Set the compressed texture feature flags correctly
Sampling from an ETC2 texture is supported on Bay Trail and
from Gen8 onwards. While ASTC_LDR is supported on Gen9, the
logic to handle such formats has not yet been implemented in
the driver.
Fixes dEQP-VK.api.info.format_properties.compressed_formats.
v2: Enable ETC2 for Bay Trail (Kenneth Graunke)
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=94896
Signed-off-by: Nanley Chery <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/intel')
-rw-r--r-- | src/intel/vulkan/anv_device.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index 00edd95b4cf..4abcdf92af0 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -380,8 +380,9 @@ void anv_GetPhysicalDeviceFeatures( .alphaToOne = true, .multiViewport = true, .samplerAnisotropy = false, /* FINISHME */ - .textureCompressionETC2 = true, - .textureCompressionASTC_LDR = true, + .textureCompressionETC2 = pdevice->info->gen >= 8 || + pdevice->info->is_baytrail, + .textureCompressionASTC_LDR = false, /* FINISHME */ .textureCompressionBC = true, .occlusionQueryPrecise = true, .pipelineStatisticsQuery = false, |