VK_REMAP enum is signed.. but later case comparison is unsigned

another clang directed fix up... might be involved with swizzle..
This commit is contained in:
Bevan Weiss 2020-07-25 22:00:04 +10:00 committed by Ivan
parent a9d0ffcac1
commit 7898ae6fe6
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ namespace vk
NV_ampere NV_ampere
}; };
enum // special remap_encoding enums enum : u32// special remap_encoding enums
{ {
VK_REMAP_IDENTITY = 0xCAFEBABE, // Special view encoding to return an identity image view VK_REMAP_IDENTITY = 0xCAFEBABE, // Special view encoding to return an identity image view
VK_REMAP_VIEW_MULTISAMPLED = 0xDEADBEEF // Special encoding for multisampled images; returns a multisampled image view VK_REMAP_VIEW_MULTISAMPLED = 0xDEADBEEF // Special encoding for multisampled images; returns a multisampled image view