From: Jonathan Marek Date: Sat, 5 Oct 2019 16:39:13 +0000 (-0400) Subject: turnip: add anisotropy and compressed formats to device features X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8626d339865c6d7b32240c6b864be67bc8e9b681;p=mesa.git turnip: add anisotropy and compressed formats to device features Signed-off-by: Jonathan Marek Reviewed-by: Kristian H. Kristensen --- diff --git a/src/freedreno/vulkan/tu_device.c b/src/freedreno/vulkan/tu_device.c index 540c033ceb3..6f76a69b632 100644 --- a/src/freedreno/vulkan/tu_device.c +++ b/src/freedreno/vulkan/tu_device.c @@ -582,10 +582,10 @@ tu_GetPhysicalDeviceFeatures(VkPhysicalDevice physicalDevice, .largePoints = false, .alphaToOne = false, .multiViewport = false, - .samplerAnisotropy = false, - .textureCompressionETC2 = false, - .textureCompressionASTC_LDR = false, - .textureCompressionBC = false, + .samplerAnisotropy = true, + .textureCompressionETC2 = true, + .textureCompressionASTC_LDR = true, + .textureCompressionBC = true, .occlusionQueryPrecise = false, .pipelineStatisticsQuery = false, .vertexPipelineStoresAndAtomics = false,