We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 68dc232 + 2f60f67 commit 435e467Copy full SHA for 435e467
1 file changed
03_Drawing_a_triangle/00_Setup/04_Logical_device_and_queues.md
@@ -44,7 +44,7 @@ queueCreateInfo.queueFamilyIndex = indices.graphicsFamily;
44
queueCreateInfo.queueCount = 1;
45
```
46
47
-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
48
queues for each family queue and you don't really need more than one. That's
49
because you can create all of the command buffers on multiple threads and then
50
submit them all at once on the main thread with a single low-overhead call.
0 commit comments