Serialise VkMemoryHeap::flags as typed enum

This commit is contained in:
baldurk
2018-02-15 10:09:38 +00:00
parent 80128f8e9f
commit a1c104f6f8
+1 -1
View File
@@ -281,7 +281,7 @@ template <typename SerialiserType>
void DoSerialise(SerialiserType &ser, VkMemoryHeap &el)
{
SERIALISE_MEMBER(size);
SERIALISE_MEMBER(flags);
SERIALISE_MEMBER_TYPED(VkMemoryHeapFlagBits, flags);
}
template <typename SerialiserType>