PacktPublishing / Mastering-Graphics-Programming-with-Vulkan

MIT License
514 stars 65 forks source link

Transfer capability is implied for graphics and compute queues #35

Closed theWatchmen closed 1 year ago

theWatchmen commented 1 year ago

There's no need to add the transfer flag when querying for a graphics or compute queue. The spec says the capability is implied and might not be reported on some devices. When that's the case, we might not find a valid queue.

theWatchmen commented 1 year ago

Done.