mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-08-13 10:11:02 +00:00
Make sure to serialise extensibility members in VkDeviceQueueCreateInfo
This commit is contained in:
@@ -2090,6 +2090,10 @@ template<>
|
||||
void Serialiser::Serialise(const char *name, VkDeviceQueueCreateInfo &el)
|
||||
{
|
||||
ScopedContext scope(this, name, "VkDeviceQueueCreateInfo", 0, true);
|
||||
|
||||
RDCASSERT(m_Mode < WRITING || el.sType == VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO);
|
||||
Serialise("sType", el.sType);
|
||||
SerialiseNext(this, el.pNext);
|
||||
|
||||
Serialise("queueFamilyIndex", el.queueFamilyIndex);
|
||||
Serialise("queueCount", el.queueCount);
|
||||
|
||||
Reference in New Issue
Block a user