-
- Downloads
[#16][Fix] Fix queue creation
If you specify Compute and Transfer as QueueFlagBits in main.cpp, I get the error telling I create more queues than being available for this queue family. The error is caused by wrong indexing in line 111. My device holds 3 queue families and Compute and Transfer operations are only supported by queue family #0 and #2, but we indexed #1 since we push queue family candidates into a vector structure. Thus, queue family #1 is ignored and queue family #2 is not indexed. Therefore, the queue family candidates vector is unnecessary and just causing trouble.
parent
3cf26d26
Branches
Tags
This commit is part of merge request !5. Comments created here will be created in the context of that merge request.
Please register or sign in to comment