mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-07 02:10:12 +01:00
radv: promote VK_EXT_robustness2 to VK_KHR_robustness2
This is a 1:1 promotion. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34810>
This commit is contained in:
parent
4e09a5c992
commit
1aa5fd5da2
2 changed files with 4 additions and 2 deletions
|
|
@ -20,3 +20,4 @@ VK_EXT_shader_demote_to_helper_invocation on panvk
|
|||
VK_EXT_shader_replicated_composites on panvk
|
||||
VK_EXT_depth_bias_control on panvk
|
||||
VK_KHR_shader_bfloat16 on anv/gfx125+
|
||||
VK_KHR_robustness2 on RADV
|
||||
|
|
|
|||
|
|
@ -574,6 +574,7 @@ radv_physical_device_get_supported_extensions(const struct radv_physical_device
|
|||
.KHR_ray_tracing_pipeline = radv_enable_rt(pdev),
|
||||
.KHR_ray_tracing_position_fetch = radv_enable_rt(pdev),
|
||||
.KHR_relaxed_block_layout = true,
|
||||
.KHR_robustness2 = true,
|
||||
.KHR_sampler_mirror_clamp_to_edge = true,
|
||||
.KHR_sampler_ycbcr_conversion = true,
|
||||
.KHR_separate_depth_stencil_layouts = true,
|
||||
|
|
@ -969,7 +970,7 @@ radv_physical_device_get_features(const struct radv_physical_device *pdev, struc
|
|||
.stippledBresenhamLines = true,
|
||||
.stippledSmoothLines = false,
|
||||
|
||||
/* VK_EXT_robustness2 */
|
||||
/* VK_KHR_robustness2 */
|
||||
.robustBufferAccess2 = true,
|
||||
.robustImageAccess2 = true,
|
||||
.nullDescriptor = true,
|
||||
|
|
@ -1742,7 +1743,7 @@ radv_get_physical_device_properties(struct radv_physical_device *pdev)
|
|||
.sampleLocationSubPixelBits = 4,
|
||||
.variableSampleLocations = true,
|
||||
|
||||
/* VK_EXT_robustness2 */
|
||||
/* VK_KHR_robustness2 */
|
||||
.robustStorageBufferAccessSizeAlignment = 4,
|
||||
.robustUniformBufferAccessSizeAlignment = 4,
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue