diff options
author | Jonathan Marek <[email protected]> | 2019-10-05 12:39:13 -0400 |
---|---|---|
committer | Jonathan Marek <[email protected]> | 2019-10-15 07:56:19 -0400 |
commit | 8626d339865c6d7b32240c6b864be67bc8e9b681 (patch) | |
tree | d2a749435d9e44b427d7a956e92c40dde82719c2 /src/freedreno | |
parent | f4154e7d3ec1a37992c7a307febba1b237c47190 (diff) |
turnip: add anisotropy and compressed formats to device features
Signed-off-by: Jonathan Marek <[email protected]>
Reviewed-by: Kristian H. Kristensen <[email protected]>
Diffstat (limited to 'src/freedreno')
-rw-r--r-- | src/freedreno/vulkan/tu_device.c | 8 |
1 files changed, 4 insertions, 4 deletions
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, |