@@ -2271,17 +2271,19 @@ radv_emit_primitive_topology(struct radv_cmd_buffer *cmd_buffer)
2271
2271
static void
2272
2272
radv_emit_depth_control (struct radv_cmd_buffer * cmd_buffer )
2273
2273
{
2274
+ const struct radv_rendering_state * render = & cmd_buffer -> state .render ;
2274
2275
struct radv_dynamic_state * d = & cmd_buffer -> state .dynamic ;
2276
+ const bool stencil_test_enable =
2277
+ d -> vk .ds .stencil .test_enable && (render -> ds_att_aspects & VK_IMAGE_ASPECT_STENCIL_BIT );
2275
2278
2276
- radeon_set_context_reg (cmd_buffer -> cs , R_028800_DB_DEPTH_CONTROL ,
2277
- S_028800_Z_ENABLE (d -> vk .ds .depth .test_enable ? 1 : 0 ) |
2278
- S_028800_Z_WRITE_ENABLE (d -> vk .ds .depth .write_enable ? 1 : 0 ) |
2279
- S_028800_ZFUNC (d -> vk .ds .depth .compare_op ) |
2280
- S_028800_DEPTH_BOUNDS_ENABLE (d -> vk .ds .depth .bounds_test .enable ? 1 : 0 ) |
2281
- S_028800_STENCIL_ENABLE (d -> vk .ds .stencil .test_enable ? 1 : 0 ) |
2282
- S_028800_BACKFACE_ENABLE (d -> vk .ds .stencil .test_enable ? 1 : 0 ) |
2283
- S_028800_STENCILFUNC (d -> vk .ds .stencil .front .op .compare ) |
2284
- S_028800_STENCILFUNC_BF (d -> vk .ds .stencil .back .op .compare ));
2279
+ radeon_set_context_reg (
2280
+ cmd_buffer -> cs , R_028800_DB_DEPTH_CONTROL ,
2281
+ S_028800_Z_ENABLE (d -> vk .ds .depth .test_enable ? 1 : 0 ) |
2282
+ S_028800_Z_WRITE_ENABLE (d -> vk .ds .depth .write_enable ? 1 : 0 ) | S_028800_ZFUNC (d -> vk .ds .depth .compare_op ) |
2283
+ S_028800_DEPTH_BOUNDS_ENABLE (d -> vk .ds .depth .bounds_test .enable ? 1 : 0 ) |
2284
+ S_028800_STENCIL_ENABLE (stencil_test_enable ) | S_028800_BACKFACE_ENABLE (stencil_test_enable ) |
2285
+ S_028800_STENCILFUNC (d -> vk .ds .stencil .front .op .compare ) |
2286
+ S_028800_STENCILFUNC_BF (d -> vk .ds .stencil .back .op .compare ));
2285
2287
}
2286
2288
2287
2289
static void
@@ -5861,6 +5863,11 @@ radv_BeginCommandBuffer(VkCommandBuffer commandBuffer, const VkCommandBufferBegi
5861
5863
render -> ds_att .format = inheritance_info -> depthAttachmentFormat ;
5862
5864
if (inheritance_info -> stencilAttachmentFormat != VK_FORMAT_UNDEFINED )
5863
5865
render -> ds_att .format = inheritance_info -> stencilAttachmentFormat ;
5866
+
5867
+ if (vk_format_has_depth (render -> ds_att .format ))
5868
+ render -> ds_att_aspects |= VK_IMAGE_ASPECT_DEPTH_BIT ;
5869
+ if (vk_format_has_stencil (render -> ds_att .format ))
5870
+ render -> ds_att_aspects |= VK_IMAGE_ASPECT_STENCIL_BIT ;
5864
5871
}
5865
5872
5866
5873
cmd_buffer -> state .inherited_pipeline_statistics = pBeginInfo -> pInheritanceInfo -> pipelineStatistics ;
@@ -7716,6 +7723,7 @@ radv_CmdBeginRendering(VkCommandBuffer commandBuffer, const VkRenderingInfo *pRe
7716
7723
}
7717
7724
7718
7725
struct radv_attachment ds_att = {.iview = NULL };
7726
+ VkImageAspectFlags ds_att_aspects = 0 ;
7719
7727
const VkRenderingAttachmentInfo * d_att_info = pRenderingInfo -> pDepthAttachment ;
7720
7728
const VkRenderingAttachmentInfo * s_att_info = pRenderingInfo -> pStencilAttachment ;
7721
7729
if ((d_att_info != NULL && d_att_info -> imageView != VK_NULL_HANDLE ) ||
@@ -7751,7 +7759,16 @@ radv_CmdBeginRendering(VkCommandBuffer commandBuffer, const VkRenderingInfo *pRe
7751
7759
7752
7760
assert (d_iview == NULL || s_iview == NULL || d_iview == s_iview );
7753
7761
ds_att .iview = d_iview ? d_iview : s_iview , ds_att .format = ds_att .iview -> vk .format ;
7754
- radv_initialise_ds_surface (cmd_buffer -> device , & ds_att .ds , ds_att .iview );
7762
+
7763
+ if (d_iview && s_iview ) {
7764
+ ds_att_aspects = VK_IMAGE_ASPECT_DEPTH_BIT | VK_IMAGE_ASPECT_STENCIL_BIT ;
7765
+ } else if (d_iview ) {
7766
+ ds_att_aspects = VK_IMAGE_ASPECT_DEPTH_BIT ;
7767
+ } else {
7768
+ ds_att_aspects = VK_IMAGE_ASPECT_STENCIL_BIT ;
7769
+ }
7770
+
7771
+ radv_initialise_ds_surface (cmd_buffer -> device , & ds_att .ds , ds_att .iview , ds_att_aspects );
7755
7772
7756
7773
assert (d_res_iview == NULL || s_res_iview == NULL || d_res_iview == s_res_iview );
7757
7774
ds_att .resolve_iview = d_res_iview ? d_res_iview : s_res_iview ;
@@ -7800,14 +7817,15 @@ radv_CmdBeginRendering(VkCommandBuffer commandBuffer, const VkRenderingInfo *pRe
7800
7817
render -> color_att_count = pRenderingInfo -> colorAttachmentCount ;
7801
7818
typed_memcpy (render -> color_att , color_att , render -> color_att_count );
7802
7819
render -> ds_att = ds_att ;
7820
+ render -> ds_att_aspects = ds_att_aspects ;
7803
7821
render -> vrs_att = vrs_att ;
7804
7822
render -> vrs_texel_size = vrs_texel_size ;
7805
7823
cmd_buffer -> state .dirty |= RADV_CMD_DIRTY_FRAMEBUFFER ;
7806
7824
7807
7825
if (cmd_buffer -> device -> physical_device -> rad_info .rbplus_allowed )
7808
7826
cmd_buffer -> state .dirty |= RADV_CMD_DIRTY_RBPLUS ;
7809
7827
7810
- cmd_buffer -> state .dirty |= RADV_CMD_DIRTY_DYNAMIC_DEPTH_BIAS ;
7828
+ cmd_buffer -> state .dirty |= RADV_CMD_DIRTY_DYNAMIC_DEPTH_BIAS | RADV_CMD_DIRTY_DYNAMIC_STENCIL_TEST_ENABLE ;
7811
7829
7812
7830
if (render -> vrs_att .iview && cmd_buffer -> device -> physical_device -> rad_info .gfx_level == GFX10_3 ) {
7813
7831
if (render -> ds_att .iview ) {
@@ -10592,7 +10610,10 @@ radv_barrier(struct radv_cmd_buffer *cmd_buffer, const VkDependencyInfo *dep_inf
10592
10610
}
10593
10611
10594
10612
radv_gang_barrier (cmd_buffer , 0 , dst_stage_mask );
10595
- radv_cp_dma_wait_for_stages (cmd_buffer , src_stage_mask );
10613
+
10614
+ const bool is_gfx_or_ace = cmd_buffer -> qf == RADV_QUEUE_GENERAL || cmd_buffer -> qf == RADV_QUEUE_COMPUTE ;
10615
+ if (is_gfx_or_ace )
10616
+ radv_cp_dma_wait_for_stages (cmd_buffer , src_stage_mask );
10596
10617
10597
10618
cmd_buffer -> state .flush_bits |= dst_flush_bits ;
10598
10619
0 commit comments