radv: enable fullyCoveredFragmentShaderInputVariable on GFX9+

For vkd3d-proton Tier 3.

It's passing CTS and vkd3d-proton tests.

Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/8311
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21497>
This commit is contained in:
Samuel Pitoiset 2023-02-22 16:36:11 +01:00 committed by Marge Bot
parent 8e84251cc7
commit f2aa0e80a0
5 changed files with 25 additions and 1 deletions

View file

@ -1,3 +1,4 @@
VK_EXT_pipeline_library_group_handles on RADV
VK_EXT_image_sliced_view_of_3d on RADV/GFX10+
VK_KHR_map_memory2 on ANV
fullyCoveredFragmentShaderInputVariable on RADV/GFX9+

View file

@ -115,3 +115,14 @@ dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers32_sets1,C
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers8_sets1,Crash
dEQP-VK.pipeline.fast_linked_library.extended_dynamic_state.before_draw.line_stipple_enable,Fail
# https://gitlab.khronos.org/Tracker/vk-gl-cts/-/issues/4298
dEQP-VK.pipeline.fast_linked_library.multisample_with_fragment_shading_rate.conservative_with_full_coverage.underestimate.samples_2_post_depth_coverage,Fail
dEQP-VK.pipeline.fast_linked_library.multisample_with_fragment_shading_rate.conservative_with_full_coverage.underestimate.samples_4_post_depth_coverage,Fail
dEQP-VK.pipeline.fast_linked_library.multisample_with_fragment_shading_rate.conservative_with_full_coverage.underestimate.samples_8_post_depth_coverage,Fail
dEQP-VK.pipeline.monolithic.multisample_with_fragment_shading_rate.conservative_with_full_coverage.underestimate.samples_2_post_depth_coverage,Fail
dEQP-VK.pipeline.monolithic.multisample_with_fragment_shading_rate.conservative_with_full_coverage.underestimate.samples_4_post_depth_coverage,Fail
dEQP-VK.pipeline.monolithic.multisample_with_fragment_shading_rate.conservative_with_full_coverage.underestimate.samples_8_post_depth_coverage,Fail
dEQP-VK.pipeline.pipeline_library.multisample_with_fragment_shading_rate.conservative_with_full_coverage.underestimate.samples_2_post_depth_coverage,Fail
dEQP-VK.pipeline.pipeline_library.multisample_with_fragment_shading_rate.conservative_with_full_coverage.underestimate.samples_4_post_depth_coverage,Fail
dEQP-VK.pipeline.pipeline_library.multisample_with_fragment_shading_rate.conservative_with_full_coverage.underestimate.samples_8_post_depth_coverage,Fail

View file

@ -117,3 +117,14 @@ dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers8_sets1,Cr
dEQP-VK.binding_model.ics_miss_buffers8_sets1,Crash
dEQP-VK.draw.dynamic_rendering.primary_cmd_buff.linear_interpolation.no_offset_2_samples,Fail
# https://gitlab.khronos.org/Tracker/vk-gl-cts/-/issues/4298
dEQP-VK.pipeline.fast_linked_library.multisample_with_fragment_shading_rate.conservative_with_full_coverage.underestimate.samples_2_post_depth_coverage,Fail
dEQP-VK.pipeline.fast_linked_library.multisample_with_fragment_shading_rate.conservative_with_full_coverage.underestimate.samples_4_post_depth_coverage,Fail
dEQP-VK.pipeline.fast_linked_library.multisample_with_fragment_shading_rate.conservative_with_full_coverage.underestimate.samples_8_post_depth_coverage,Fail
dEQP-VK.pipeline.monolithic.multisample_with_fragment_shading_rate.conservative_with_full_coverage.underestimate.samples_2_post_depth_coverage,Fail
dEQP-VK.pipeline.monolithic.multisample_with_fragment_shading_rate.conservative_with_full_coverage.underestimate.samples_4_post_depth_coverage,Fail
dEQP-VK.pipeline.monolithic.multisample_with_fragment_shading_rate.conservative_with_full_coverage.underestimate.samples_8_post_depth_coverage,Fail
dEQP-VK.pipeline.pipeline_library.multisample_with_fragment_shading_rate.conservative_with_full_coverage.underestimate.samples_2_post_depth_coverage,Fail
dEQP-VK.pipeline.pipeline_library.multisample_with_fragment_shading_rate.conservative_with_full_coverage.underestimate.samples_4_post_depth_coverage,Fail
dEQP-VK.pipeline.pipeline_library.multisample_with_fragment_shading_rate.conservative_with_full_coverage.underestimate.samples_8_post_depth_coverage,Fail

View file

@ -1840,7 +1840,7 @@ radv_GetPhysicalDeviceProperties2(VkPhysicalDevice physicalDevice,
properties->conservativePointAndLineRasterization = false;
properties->degenerateTrianglesRasterized = true;
properties->degenerateLinesRasterized = false;
properties->fullyCoveredFragmentShaderInputVariable = false;
properties->fullyCoveredFragmentShaderInputVariable = true;
properties->conservativeRasterizationPostDepthCoverage = false;
break;
}

View file

@ -716,6 +716,7 @@ radv_shader_spirv_to_nir(struct radv_device *device, const struct radv_pipeline_
.float32_atomic_min_max = true,
.float64 = true,
.float64_atomic_min_max = true,
.fragment_fully_covered = true,
.geometry_streams = true,
.groups = true,
.image_atomic_int64 = true,