There is an nice idea that; while GPU is rendering your last frame, you handle your current frame's gameplay and physics calculations with CPU to eliminate wasting cpu time.
My understanding is that, RootSignatures are objects that holds connections of d3d resources, and your CommandLists are allocated with CommandAllocator and at the end you add all your Lists inside a CommandQueue and order the GPU to execute those CommandLists.
Since i can not (or should not) use a d3d object (like CommandList) while it is being processed inside GPU (executed), do i have to have a secondary CommandList.
My first question is do i have to double the resources i have for the secondary frame?
and second question is, how RootSignature holds what connected to what exactly, because the examples and samples i look from the internet, doesnt show much stuff, its like RootSignature is a very passive object, that you dont referred to it too much although it suppose to hold a lot of information
(i am sending an image to show my understanding of how to approach frames in modern apis, i hope image shows up, and please check the image and correct me)