diff options
author | Samuel Pitoiset <[email protected]> | 2019-12-06 16:09:48 +0100 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-01-03 12:31:53 +0000 |
commit | 7b70502a5d9a2d209f51e5b50229110d094f4478 (patch) | |
tree | de910aa447bcc6118744504fd592dc693e364aa8 /docs/relnotes | |
parent | 7bbf497b68430934ab34316823e0f59ee34f9a4f (diff) |
radv: implement VK_AMD_mixed_attachment_samples
With VK_AMD_mixed_attachment_samples, the number of depth/stencil
samples isn't always equal to the number of color samples. Adjust
the number of Z samples when it's different but make sure to have
a consistent sample count if there are no depth/stencil attachments.
Also adjust the number of samples used for fragment shaders which is
the number of color samples if mixed attachment samples are used.
Only enabled on GFX8+ because it's untested on previous chips.
All dEQP-VK.pipeline.multisample.mixed_attachment_samples.* now pass.
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3018>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3018>
Diffstat (limited to 'docs/relnotes')
-rw-r--r-- | docs/relnotes/new_features.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/relnotes/new_features.txt b/docs/relnotes/new_features.txt index a9cc34bea23..a1e23a02eb3 100644 --- a/docs/relnotes/new_features.txt +++ b/docs/relnotes/new_features.txt @@ -3,6 +3,7 @@ GL_ARB_gl_spirv on radeonsi. GL_ARB_spirv_extensions on radeonsi. GL_EXT_direct_state_access for compatibility profile. VK_AMD_device_coherent_memory on RADV. +VK_AMD_mixed_attachment_samples on RADV. VK_EXT_subgroup_size_control on RADV. VK_KHR_separate_depth_stencil_layouts on Intel, RADV. VK_KHR_shader_subgroup_extended_types on RADV. |