mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 04:38:03 +02:00
anv: enable VK_KHR_maintenance6
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26842>
This commit is contained in:
parent
b7c4fe54cb
commit
56d556f821
1 changed files with 11 additions and 0 deletions
|
|
@ -257,6 +257,7 @@ get_device_extensions(const struct anv_physical_device *device,
|
|||
.KHR_maintenance3 = true,
|
||||
.KHR_maintenance4 = true,
|
||||
.KHR_maintenance5 = true,
|
||||
.KHR_maintenance6 = true,
|
||||
.KHR_map_memory2 = true,
|
||||
.KHR_multiview = true,
|
||||
.KHR_performance_query =
|
||||
|
|
@ -859,6 +860,9 @@ get_features(const struct anv_physical_device *pdevice,
|
|||
/* VK_KHR_maintenance5 */
|
||||
.maintenance5 = true,
|
||||
|
||||
/* VK_KHR_maintenance6 */
|
||||
.maintenance6 = true,
|
||||
|
||||
/* VK_EXT_nested_command_buffer */
|
||||
.nestedCommandBuffer = true,
|
||||
.nestedCommandBufferRendering = true,
|
||||
|
|
@ -1404,6 +1408,13 @@ get_properties(const struct anv_physical_device *pdevice,
|
|||
props->nonStrictWideLinesUseParallelogram = false;
|
||||
}
|
||||
|
||||
/* VK_KHR_maintenance6 */
|
||||
{
|
||||
props->blockTexelViewCompatibleMultipleLayers = true;
|
||||
props->maxCombinedImageSamplerDescriptorCount = 3;
|
||||
props->fragmentShadingRateClampCombinerInputs = true;
|
||||
}
|
||||
|
||||
/* VK_KHR_performance_query */
|
||||
{
|
||||
props->allowCommandBufferQueryCopies = false;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue