teassy000 / vulkage

Other
0 stars 0 forks source link

framegraph should only handle command queue #3

Open teassy000 opened 4 months ago

teassy000 commented 4 months ago

Although the framegraph is essential to the entire pipeline, it takes too much data that is not necessary for its function:

here's the original pip: [take fg_commands in] ---> [sort and clip] ---> [mark auto alias] --> [create rhi resources via rhi_command]

The planed pip is: [take CommandQueue in] ---> [sort and clip] ---> [mark auto alias] ---> [ output CommandQueue ]

which means there is no need for multiple types of commands for each component, one is enough.