Skip to content

Commit

Permalink
vulkan: Fix schema 278
Browse files Browse the repository at this point in the history
  • Loading branch information
ziga-lunarg committed Feb 17, 2024
1 parent 4d5e22c commit c18e5f8
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 2 deletions.
26 changes: 25 additions & 1 deletion vulkan/profiles-0.8-latest.json
Original file line number Diff line number Diff line change
Expand Up @@ -6039,10 +6039,34 @@
}
}
},
"VkQueueGlobalPriorityKHR": {
"enum": [
"VK_QUEUE_GLOBAL_PRIORITY_HIGH_EXT",
"VK_QUEUE_GLOBAL_PRIORITY_HIGH_KHR",
"VK_QUEUE_GLOBAL_PRIORITY_LOW_EXT",
"VK_QUEUE_GLOBAL_PRIORITY_LOW_KHR",
"VK_QUEUE_GLOBAL_PRIORITY_MEDIUM_EXT",
"VK_QUEUE_GLOBAL_PRIORITY_MEDIUM_KHR",
"VK_QUEUE_GLOBAL_PRIORITY_REALTIME_EXT",
"VK_QUEUE_GLOBAL_PRIORITY_REALTIME_KHR"
]
},
"VkQueueFamilyGlobalPriorityPropertiesKHR": {
"type": "object",
"additionalProperties": false,
"properties": {}
"properties": {
"priorities": {
"type": "array",
"items": {
"$ref": "#/definitions/VkQueueGlobalPriorityKHR"
},
"uniqueItems": false,
"maxItems": 16
},
"priorityCount": {
"$ref": "#/definitions/uint32_t"
}
}
},
"VkQueueFamilyQueryResultStatusPropertiesKHR": {
"type": "object",
Expand Down
26 changes: 25 additions & 1 deletion vulkan/profiles-0.8.2-278.json
Original file line number Diff line number Diff line change
Expand Up @@ -6039,10 +6039,34 @@
}
}
},
"VkQueueGlobalPriorityKHR": {
"enum": [
"VK_QUEUE_GLOBAL_PRIORITY_HIGH_EXT",
"VK_QUEUE_GLOBAL_PRIORITY_HIGH_KHR",
"VK_QUEUE_GLOBAL_PRIORITY_LOW_EXT",
"VK_QUEUE_GLOBAL_PRIORITY_LOW_KHR",
"VK_QUEUE_GLOBAL_PRIORITY_MEDIUM_EXT",
"VK_QUEUE_GLOBAL_PRIORITY_MEDIUM_KHR",
"VK_QUEUE_GLOBAL_PRIORITY_REALTIME_EXT",
"VK_QUEUE_GLOBAL_PRIORITY_REALTIME_KHR"
]
},
"VkQueueFamilyGlobalPriorityPropertiesKHR": {
"type": "object",
"additionalProperties": false,
"properties": {}
"properties": {
"priorities": {
"type": "array",
"items": {
"$ref": "#/definitions/VkQueueGlobalPriorityKHR"
},
"uniqueItems": false,
"maxItems": 16
},
"priorityCount": {
"$ref": "#/definitions/uint32_t"
}
}
},
"VkQueueFamilyQueryResultStatusPropertiesKHR": {
"type": "object",
Expand Down

0 comments on commit c18e5f8

Please sign in to comment.