You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: scripts/core/device.yml
+8-6Lines changed: 8 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -463,9 +463,9 @@ ordinal: "1"
463
463
analogue:
464
464
- "**vkGetPhysicalDeviceQueueFamilyProperties**"
465
465
details:
466
-
- "Properties are reported for each physical command queue type supported by the device."
466
+
- "Properties are reported for each physical command queue group available on the device."
467
467
- "Multiple calls to this function will return properties in the same order."
468
-
- "The order in which the properties are returned defines the command queue group's ordinal."
468
+
- "The order in which the properties are returned is defined by the command queue group's ordinal."
469
469
- "The application may call this function from simultaneous threads."
470
470
- "The implementation of this function should be lock-free."
471
471
params:
@@ -475,14 +475,16 @@ params:
475
475
- type: uint32_t*
476
476
name: pCount
477
477
desc: |
478
-
[in,out] pointer to the number of command queue group properties.
479
-
if count is zero, then the driver shall update the value with the total number of command queue group properties available.
480
-
if count is greater than the number of command queue group properties available, then the driver shall update the value with the correct number of command queue group properties available.
478
+
[in,out] pointer to the number of available command queue groups.
479
+
If count is zero, then the driver shall update the value with the total number of command queue groups available.
480
+
If count is less than the number of command queue groups available, then the driver shall only retrieve command queue group properties for the given number of command queue groups.
481
+
If count is greater than or equal to the number of command queue groups available, then the driver shall retrieve command queue group properties for all available command queue groups.
481
482
- type: "$x_command_queue_group_properties_t*"
482
483
name: pCommandQueueGroupProperties
483
484
desc: |
484
485
[in,out][optional][range(0, *pCount)] array of query results for command queue group properties.
485
-
if count is less than the number of command queue group properties available, then driver shall only retrieve that number of command queue group properties.
486
+
If count is less than the number of command queue groups available, then the driver shall only retrieve that number of command queue group properties.
487
+
The order of properties in the array corresponds to the command queue group ordinal.
0 commit comments