mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-09-24 14:45:53 +00:00
Fix KHR_maintenance5 pipeline flags being put on wrong pNext chain
This commit is contained in:
@@ -1071,12 +1071,12 @@ void VulkanShaderCache::MakeGraphicsPipelineInfo(VkGraphicsPipelineCreateInfo &p
|
||||
{
|
||||
createFlags.flags = flags;
|
||||
|
||||
createFlags.pNext = rs.pNext;
|
||||
rs.pNext = &createFlags;
|
||||
createFlags.pNext = ret.pNext;
|
||||
ret.pNext = &createFlags;
|
||||
}
|
||||
else
|
||||
{
|
||||
rs.flags = (uint32_t)flags;
|
||||
createFlags.flags = (uint32_t)flags;
|
||||
}
|
||||
|
||||
pipeCreateInfo = ret;
|
||||
|
||||
Reference in New Issue
Block a user