radv: fix binding partial depth/stencil views with dynamic rendering
With dynamic rendering, it's allowed to begin rendering with depth or
stencil only but still with a depth/stencil format. The test below
checks that unbound part of ds isn't modified, if depth is bound and
stencil not and vice versa.
This fixes a recent CTS
dEQP-VK.dynamic_rendering.primary_cmd_buff.basic.partial_binding_depth_stencil.
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25350>
(cherry picked from commit 1ef5feac5e
)
This commit is contained in:

committed by
Eric Engestrom

parent
955d7b3fa3
commit
1acb1a232f
@@ -1,3 +1,2 @@
|
|||||||
# New CTS failures in 1.3.7.0
|
# New CTS failures in 1.3.7.0
|
||||||
dEQP-VK.api.version_check.unavailable_entry_points,Fail
|
dEQP-VK.api.version_check.unavailable_entry_points,Fail
|
||||||
dEQP-VK.dynamic_rendering.primary_cmd_buff.basic.partial_binding_depth_stencil,Fail
|
|
||||||
|
@@ -20,4 +20,3 @@ dEQP-VK.texture.mipmap.cubemap.image_view_min_lod.base_level.nearest_nearest,Fai
|
|||||||
|
|
||||||
# New CTS failures in 1.3.7.0.
|
# New CTS failures in 1.3.7.0.
|
||||||
dEQP-VK.api.version_check.unavailable_entry_points,Fail
|
dEQP-VK.api.version_check.unavailable_entry_points,Fail
|
||||||
dEQP-VK.dynamic_rendering.primary_cmd_buff.basic.partial_binding_depth_stencil,Fail
|
|
||||||
|
@@ -1,3 +1,2 @@
|
|||||||
# New CTS failures in 1.3.7.0.
|
# New CTS failures in 1.3.7.0.
|
||||||
dEQP-VK.api.version_check.unavailable_entry_points,Fail
|
dEQP-VK.api.version_check.unavailable_entry_points,Fail
|
||||||
dEQP-VK.dynamic_rendering.primary_cmd_buff.basic.partial_binding_depth_stencil,Fail
|
|
||||||
|
@@ -7751,7 +7751,17 @@ radv_CmdBeginRendering(VkCommandBuffer commandBuffer, const VkRenderingInfo *pRe
|
|||||||
|
|
||||||
assert(d_iview == NULL || s_iview == NULL || d_iview == s_iview);
|
assert(d_iview == NULL || s_iview == NULL || d_iview == s_iview);
|
||||||
ds_att.iview = d_iview ? d_iview : s_iview, ds_att.format = ds_att.iview->vk.format;
|
ds_att.iview = d_iview ? d_iview : s_iview, ds_att.format = ds_att.iview->vk.format;
|
||||||
radv_initialise_ds_surface(cmd_buffer->device, &ds_att.ds, ds_att.iview);
|
|
||||||
|
VkImageAspectFlags ds_aspects;
|
||||||
|
if (d_iview && s_iview) {
|
||||||
|
ds_aspects = VK_IMAGE_ASPECT_DEPTH_BIT | VK_IMAGE_ASPECT_STENCIL_BIT;
|
||||||
|
} else if (d_iview) {
|
||||||
|
ds_aspects = VK_IMAGE_ASPECT_DEPTH_BIT;
|
||||||
|
} else {
|
||||||
|
ds_aspects = VK_IMAGE_ASPECT_STENCIL_BIT;
|
||||||
|
}
|
||||||
|
|
||||||
|
radv_initialise_ds_surface(cmd_buffer->device, &ds_att.ds, ds_att.iview, ds_aspects);
|
||||||
|
|
||||||
assert(d_res_iview == NULL || s_res_iview == NULL || d_res_iview == s_res_iview);
|
assert(d_res_iview == NULL || s_res_iview == NULL || d_res_iview == s_res_iview);
|
||||||
ds_att.resolve_iview = d_res_iview ? d_res_iview : s_res_iview;
|
ds_att.resolve_iview = d_res_iview ? d_res_iview : s_res_iview;
|
||||||
|
@@ -1842,7 +1842,7 @@ radv_initialise_vrs_surface(struct radv_image *image, struct radv_buffer *htile_
|
|||||||
|
|
||||||
void
|
void
|
||||||
radv_initialise_ds_surface(const struct radv_device *device, struct radv_ds_buffer_info *ds,
|
radv_initialise_ds_surface(const struct radv_device *device, struct radv_ds_buffer_info *ds,
|
||||||
struct radv_image_view *iview)
|
struct radv_image_view *iview, VkImageAspectFlags ds_aspects)
|
||||||
{
|
{
|
||||||
unsigned level = iview->vk.base_mip_level;
|
unsigned level = iview->vk.base_mip_level;
|
||||||
unsigned format, stencil_format;
|
unsigned format, stencil_format;
|
||||||
@@ -1859,7 +1859,9 @@ radv_initialise_ds_surface(const struct radv_device *device, struct radv_ds_buff
|
|||||||
stencil_format = surf->has_stencil ? V_028044_STENCIL_8 : V_028044_STENCIL_INVALID;
|
stencil_format = surf->has_stencil ? V_028044_STENCIL_8 : V_028044_STENCIL_INVALID;
|
||||||
|
|
||||||
uint32_t max_slice = radv_surface_max_layer_count(iview) - 1;
|
uint32_t max_slice = radv_surface_max_layer_count(iview) - 1;
|
||||||
ds->db_depth_view = S_028008_SLICE_START(iview->vk.base_array_layer) | S_028008_SLICE_MAX(max_slice);
|
ds->db_depth_view = S_028008_SLICE_START(iview->vk.base_array_layer) | S_028008_SLICE_MAX(max_slice) |
|
||||||
|
S_028008_Z_READ_ONLY(!(ds_aspects & VK_IMAGE_ASPECT_DEPTH_BIT)) |
|
||||||
|
S_028008_STENCIL_READ_ONLY(!(ds_aspects & VK_IMAGE_ASPECT_STENCIL_BIT));
|
||||||
if (device->physical_device->rad_info.gfx_level >= GFX10) {
|
if (device->physical_device->rad_info.gfx_level >= GFX10) {
|
||||||
ds->db_depth_view |=
|
ds->db_depth_view |=
|
||||||
S_028008_SLICE_START_HI(iview->vk.base_array_layer >> 11) | S_028008_SLICE_MAX_HI(max_slice >> 11);
|
S_028008_SLICE_START_HI(iview->vk.base_array_layer >> 11) | S_028008_SLICE_MAX_HI(max_slice >> 11);
|
||||||
|
@@ -1527,7 +1527,7 @@ struct radv_ds_buffer_info {
|
|||||||
void radv_initialise_color_surface(struct radv_device *device, struct radv_color_buffer_info *cb,
|
void radv_initialise_color_surface(struct radv_device *device, struct radv_color_buffer_info *cb,
|
||||||
struct radv_image_view *iview);
|
struct radv_image_view *iview);
|
||||||
void radv_initialise_ds_surface(const struct radv_device *device, struct radv_ds_buffer_info *ds,
|
void radv_initialise_ds_surface(const struct radv_device *device, struct radv_ds_buffer_info *ds,
|
||||||
struct radv_image_view *iview);
|
struct radv_image_view *iview, VkImageAspectFlags ds_aspects);
|
||||||
void radv_initialise_vrs_surface(struct radv_image *image, struct radv_buffer *htile_buffer,
|
void radv_initialise_vrs_surface(struct radv_image *image, struct radv_buffer *htile_buffer,
|
||||||
struct radv_ds_buffer_info *ds);
|
struct radv_ds_buffer_info *ds);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user