From 33f678fd0ba3226652b1cc9b355a28f7bdc15780 Mon Sep 17 00:00:00 2001 From: saschawillems Date: Sat, 11 Mar 2017 10:12:18 +0100 Subject: [PATCH] Corrected texture format (BC2 instead of BC3) --- texture/texture.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/texture/texture.cpp b/texture/texture.cpp index 3df5312e..e1d8b5da 100644 --- a/texture/texture.cpp +++ b/texture/texture.cpp @@ -505,7 +505,7 @@ public: VkFormat format; if (deviceFeatures.textureCompressionBC) { filename = "metalplate01_bc2_unorm.ktx"; - format = VK_FORMAT_BC3_UNORM_BLOCK; + format = VK_FORMAT_BC2_UNORM_BLOCK; } else if (deviceFeatures.textureCompressionASTC_LDR) { filename = "metalplate01_astc_8x8_unorm.ktx";