nvk: Advertise VK_KHR_maintenance7
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/30925>
This commit is contained in:

committed by
Marge Bot

parent
ace54cc998
commit
4442d61b16
@@ -528,7 +528,7 @@ Khronos extensions that are not part of any Vulkan version:
|
||||
VK_KHR_load_store_op_none DONE (anv, nvk, radv, tu, v3dv)
|
||||
VK_KHR_maintenance5 DONE (anv, lvp, nvk, radv, tu, v3dv, vn)
|
||||
VK_KHR_maintenance6 DONE (anv, lvp, nvk, radv, tu)
|
||||
VK_KHR_maintenance7 DONE (anv, lvp, radv)
|
||||
VK_KHR_maintenance7 DONE (anv, lvp, nvk, radv)
|
||||
VK_KHR_performance_query DONE (anv, radv/gfx10.3+, tu, v3dv)
|
||||
VK_KHR_pipeline_executable_properties DONE (anv, nvk, panvk, hasvk, radv, tu, v3dv)
|
||||
VK_KHR_pipeline_library DONE (anv, lvp, nvk, panvk, radv, tu, vn)
|
||||
|
@@ -4,3 +4,4 @@ VK_EXT_post_depth_coverage on nvk
|
||||
VK_KHR_video_maintenance1 on radv
|
||||
VK_EXT_legacy_vertex_attributes on nvk
|
||||
GL_KHR_shader_subgroup on radeonsi
|
||||
VK_KHR_maintenance7 on nvk
|
||||
|
@@ -120,6 +120,7 @@ nvk_get_device_extensions(const struct nvk_instance *instance,
|
||||
.KHR_maintenance4 = true,
|
||||
.KHR_maintenance5 = true,
|
||||
.KHR_maintenance6 = true,
|
||||
.KHR_maintenance7 = true,
|
||||
.KHR_map_memory2 = true,
|
||||
.KHR_multiview = true,
|
||||
.KHR_pipeline_executable_properties = true,
|
||||
@@ -420,6 +421,9 @@ nvk_get_device_features(const struct nv_device_info *info,
|
||||
/* VK_KHR_maintenance6 */
|
||||
.maintenance6 = true,
|
||||
|
||||
/* VK_KHR_maintenance7 */
|
||||
.maintenance7 = true,
|
||||
|
||||
/* VK_KHR_pipeline_executable_properties */
|
||||
.pipelineExecutableInfo = true,
|
||||
|
||||
@@ -960,6 +964,16 @@ nvk_get_device_properties(const struct nvk_instance *instance,
|
||||
.maxCombinedImageSamplerDescriptorCount = 3,
|
||||
.fragmentShadingRateClampCombinerInputs = false, /* TODO */
|
||||
|
||||
/* VK_KHR_maintenance7 */
|
||||
.robustFragmentShadingRateAttachmentAccess = false,
|
||||
.separateDepthStencilAttachmentAccess = false,
|
||||
.maxDescriptorSetTotalUniformBuffersDynamic = NVK_MAX_DYNAMIC_BUFFERS / 2,
|
||||
.maxDescriptorSetTotalStorageBuffersDynamic = NVK_MAX_DYNAMIC_BUFFERS / 2,
|
||||
.maxDescriptorSetTotalBuffersDynamic = NVK_MAX_DYNAMIC_BUFFERS,
|
||||
.maxDescriptorSetUpdateAfterBindTotalUniformBuffersDynamic = NVK_MAX_DYNAMIC_BUFFERS / 2,
|
||||
.maxDescriptorSetUpdateAfterBindTotalStorageBuffersDynamic = NVK_MAX_DYNAMIC_BUFFERS / 2,
|
||||
.maxDescriptorSetUpdateAfterBindTotalBuffersDynamic = NVK_MAX_DYNAMIC_BUFFERS,
|
||||
|
||||
/* VK_EXT_legacy_vertex_attributes */
|
||||
.nativeUnalignedPerformance = true,
|
||||
|
||||
|
Reference in New Issue
Block a user