Use typed enum for serialising VkMemoryType::propertyFlags

This commit is contained in:
baldurk
2017-11-17 16:33:05 +00:00
parent 6efb21b8e9
commit 13de20612b
+1 -1
View File
@@ -266,7 +266,7 @@ void DoSerialise(SerialiserType &ser, VkMemoryHeap &el)
template <typename SerialiserType>
void DoSerialise(SerialiserType &ser, VkMemoryType &el)
{
SERIALISE_MEMBER(propertyFlags);
SERIALISE_MEMBER_TYPED(VkMemoryPropertyFlagBits, propertyFlags);
SERIALISE_MEMBER(heapIndex);
}