Change comment about "list of notes" -> "list of nodes"

This commit is contained in:
Jake Turner
2026-05-19 11:59:46 +01:00
parent e5913acec2
commit 02e9c7b260
3 changed files with 3 additions and 3 deletions
@@ -627,7 +627,7 @@ bool WrappedID3D12CommandQueue::Serialise_ExecuteCommandLists(SerialiserType &se
m_Cmd.m_RootEventID++;
}
// insert the baked command list in-line into this list of notes, assigning new event and
// insert the baked command list in-line into this list of nodes, assigning new event and
// drawIDs
m_Cmd.InsertActionsAndRefreshIDs(cmd, cmdListInfo);
@@ -5516,7 +5516,7 @@ bool WrappedVulkan::Serialise_vkCmdExecuteCommands(SerialiserType &ser, VkComman
"Executing a command buffer with RENDER_PASS_CONTINUE_BIT outside of render pass");
}
// insert the baked command buffer in-line into this list of notes, assigning new event and
// insert the baked command buffer in-line into this list of nodes, assigning new event and
// drawIDs
parentCmdBufInfo.action->InsertAndUpdateIDs(*cmdBufInfo.action, parentCmdBufInfo.curEventID,
parentCmdBufInfo.actionCount);
@@ -339,7 +339,7 @@ void WrappedVulkan::ReplayQueueSubmit(VkQueue queue, VkSubmitInfo2 submitInfo, r
CommandBufferNode *rebaseNode = BuildSubmitTree(cmd, m_RootEventID);
m_Partial.commandTree.push_back(rebaseNode);
// insert the baked command buffer in-line into this list of notes, assigning new event
// insert the baked command buffer in-line into this list of nodes, assigning new event
// and drawIDs
InsertActionsAndRefreshIDs(cmdBufInfo);