summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Marek <jonathan@marek.ca>2019-10-05 12:39:13 -0400
committerJonathan Marek <jonathan@marek.ca>2019-10-15 07:56:19 -0400
commit8626d339865c6d7b32240c6b864be67bc8e9b681 (patch)
treed2a749435d9e44b427d7a956e92c40dde82719c2
parentf4154e7d3ec1a37992c7a307febba1b237c47190 (diff)
turnip: add anisotropy and compressed formats to device features
Signed-off-by: Jonathan Marek <jonathan@marek.ca> Reviewed-by: Kristian H. Kristensen <hoegsberg@google.com>
-rw-r--r--src/freedreno/vulkan/tu_device.c8
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,