mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 02:38:04 +02:00
panvk: promote VK_EXT_robustness2 to VK_KHR_robustness2
This is a 1:1 promotion. Reviewed-by: John Anthony <john.anthony@arm.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/39325>
This commit is contained in:
parent
b5f388a222
commit
d4d972d626
3 changed files with 5 additions and 3 deletions
|
|
@ -572,7 +572,7 @@ Khronos extensions that are not part of any Vulkan version:
|
|||
VK_KHR_ray_tracing_maintenance1 DONE (anv/gfx12.5+, lvp, radv/gfx10.3+, tu/a740+, vn)
|
||||
VK_KHR_ray_tracing_pipeline DONE (anv/gfx12.5+, lvp, radv/gfx10.3+, vn)
|
||||
VK_KHR_ray_tracing_position_fetch DONE (anv, lvp, radv/gfx10.3+, vn)
|
||||
VK_KHR_robustness2 DONE (anv, pvr, radv, vn)
|
||||
VK_KHR_robustness2 DONE (anv, panvk/v10+, pvr, radv, vn)
|
||||
VK_KHR_shader_bfloat16 DONE (anv/gfx12.5+, radv/gfx12+, vn)
|
||||
VK_KHR_shader_clock DONE (anv, hasvk, lvp, nvk, panvk, radv, tu, vn)
|
||||
VK_KHR_shader_maximal_reconvergence DONE (anv, hk, kk, lvp, nvk, panvk/v10+, radv, vn)
|
||||
|
|
|
|||
|
|
@ -24,3 +24,4 @@ VK_KHR_pipeline_binary on HoneyKrisp
|
|||
VK_KHR_incremental_present on pvr
|
||||
VK_KHR_xcb_surface on pvr
|
||||
VK_KHR_xlib_surface on pvr
|
||||
VK_KHR_robustness2 on panvk v10+
|
||||
|
|
|
|||
|
|
@ -91,6 +91,7 @@ panvk_per_arch(get_physical_device_extensions)(
|
|||
.KHR_pipeline_library = true,
|
||||
.KHR_push_descriptor = true,
|
||||
.KHR_relaxed_block_layout = true,
|
||||
.KHR_robustness2 = PAN_ARCH >= 10,
|
||||
.KHR_sampler_mirror_clamp_to_edge = true,
|
||||
.KHR_sampler_ycbcr_conversion = true,
|
||||
.KHR_separate_depth_stencil_layouts = true,
|
||||
|
|
@ -489,7 +490,7 @@ panvk_per_arch(get_physical_device_features)(
|
|||
/* VK_KHR_pipeline_executable_properties */
|
||||
.pipelineExecutableInfo = true,
|
||||
|
||||
/* VK_EXT_robustness2 */
|
||||
/* VK_KHR_robustness2 */
|
||||
.robustBufferAccess2 = PAN_ARCH >= 11,
|
||||
.robustImageAccess2 = false,
|
||||
.nullDescriptor = PAN_ARCH >= 10,
|
||||
|
|
@ -1018,7 +1019,7 @@ panvk_per_arch(get_physical_device_properties)(
|
|||
.pipelineBinaryPrecompiledInternalCache = has_disk_cache,
|
||||
.pipelineBinaryCompressedData = false,
|
||||
|
||||
/* VK_EXT_robustness2 */
|
||||
/* VK_KHR_robustness2 */
|
||||
.robustStorageBufferAccessSizeAlignment = 1,
|
||||
.robustUniformBufferAccessSizeAlignment = 1,
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue