From 2f60f676e91f1bb569610786a3c4d8cac5000191 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Tue, 22 May 2018 16:03:09 +0100 Subject: [PATCH] Minor wording fix --- 03_Drawing_a_triangle/00_Setup/04_Logical_device_and_queues.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/03_Drawing_a_triangle/00_Setup/04_Logical_device_and_queues.md b/03_Drawing_a_triangle/00_Setup/04_Logical_device_and_queues.md index 8cadaf2c..15faf903 100644 --- a/03_Drawing_a_triangle/00_Setup/04_Logical_device_and_queues.md +++ b/03_Drawing_a_triangle/00_Setup/04_Logical_device_and_queues.md @@ -44,7 +44,7 @@ queueCreateInfo.queueFamilyIndex = indices.graphicsFamily; queueCreateInfo.queueCount = 1; ``` -The currently available drivers will only allow you to create a low number of +The currently available drivers will only allow you to create a small number of queues for each family queue and you don't really need more than one. That's because you can create all of the command buffers on multiple threads and then submit them all at once on the main thread with a single low-overhead call.