mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-08-24 07:26:34 +00:00
Add missing commas in string name of vkCmdClearAttachments
This commit is contained in:
@@ -2288,7 +2288,11 @@ bool WrappedVulkan::Serialise_vkCmdClearAttachments(SerialiserType &ser,
|
||||
|
||||
string name = "vkCmdClearAttachments(";
|
||||
for(uint32_t a = 0; a < attachmentCount; a++)
|
||||
{
|
||||
name += ToStr(pAttachments[a].colorAttachment);
|
||||
if(a + 1 < attachmentCount)
|
||||
name += ", ";
|
||||
}
|
||||
name += ")";
|
||||
|
||||
DrawcallDescription draw;
|
||||
|
||||
Reference in New Issue
Block a user