From caf9fb448bf2abf7b7d56d0242ab4f257e21ab38 Mon Sep 17 00:00:00 2001 From: Benau Date: Fri, 2 Sep 2022 09:12:05 +0800 Subject: [PATCH] Take BPTC into account for texture compression support --- src/graphics/central_settings.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/graphics/central_settings.cpp b/src/graphics/central_settings.cpp index 5030a866d..7a219ddd6 100644 --- a/src/graphics/central_settings.cpp +++ b/src/graphics/central_settings.cpp @@ -78,6 +78,7 @@ void CentralVideoSettings::init() if (GE::getDriver()->getDriverType() == video::EDT_VULKAN) { hasTextureCompression = GEVulkanFeatures::supportsS3TCBC3() || + GEVulkanFeatures::supportsBPTCBC7() || GEVulkanFeatures::supportsASTC4x4(); } return;