From cd5f5318a94811fe11f3b775adbf981449cebf1f Mon Sep 17 00:00:00 2001 From: saschawillems Date: Mon, 7 Aug 2017 21:41:14 +0200 Subject: [PATCH] Fixed ETC texture format --- skeletalanimation/skeletalanimation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skeletalanimation/skeletalanimation.cpp b/skeletalanimation/skeletalanimation.cpp index b94dc36c..872a6b27 100644 --- a/skeletalanimation/skeletalanimation.cpp +++ b/skeletalanimation/skeletalanimation.cpp @@ -680,7 +680,7 @@ public: } else if (vulkanDevice->features.textureCompressionETC2) { texFormatSuffix = "_etc2_unorm"; - texFormat = VK_FORMAT_ETC2_R8G8B8A8_UNORM_BLOCK; + texFormat = VK_FORMAT_ETC2_R8G8B8_UNORM_BLOCK; } else { vks::tools::exitFatal("Device does not support any compressed texture format!", "Error");