bomsi / dnmm

MIT License
0 stars 0 forks source link

VkQueue - async/await #2

Open mlaskus opened 7 years ago

mlaskus commented 7 years ago

Most operations performed with Vulkan, like draw commands and memory operations, are asynchronously executed by submitting them to a VkQueue.

https://vulkan-tutorial.com/Overview

That looks like a job for async/await if I have ever seen any, it would significantly simplify the usage.

Might be a good idea to write a custom scheduler to optimize for our use case?

A rough idea on how to approach this:

denis-kralj commented 7 years ago

Sounds like a good idea, will need to get familiar with that though :)