Anecoz / AneRend

Prototyping Vulkan engine
16 stars 1 forks source link

Multithread command buffer recording #61

Open Anecoz opened 10 months ago

Anecoz commented 10 months ago

Recording the command buffer for a given frame currently takes about 1.5ms, which eats into the general CPU time. It should be possible to offload this work to a separate thread.

Care must be taken with things like asset updates which may come from the main thread.