From 9dbde73238e4554d5f8db7383861d48fe575a27e Mon Sep 17 00:00:00 2001 From: Tobias Frisch <tfrisch@uni-koblenz.de> Date: Wed, 25 Aug 2021 12:35:52 +0200 Subject: [PATCH] [#90] Fixed compiler issues with constexpr Signed-off-by: Tobias Frisch <tfrisch@uni-koblenz.de> --- include/vkcv/DescriptorConfig.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/vkcv/DescriptorConfig.hpp b/include/vkcv/DescriptorConfig.hpp index c0ef645c..ba0ad33c 100644 --- a/include/vkcv/DescriptorConfig.hpp +++ b/include/vkcv/DescriptorConfig.hpp @@ -43,8 +43,7 @@ namespace vkcv case DescriptorType::IMAGE_STORAGE: return vk::DescriptorType::eStorageImage; default: - vkcv_log(LogLevel::ERROR, "Unknown DescriptorType"); - return vk::DescriptorType::eUniformBuffer; + return vk::DescriptorType::eMutableVALVE; } } -- GitLab