mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 10:50:10 +01:00
radv: rewrite the condition that checks allowed depth/stencil values
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
This commit is contained in:
parent
9133bbf186
commit
7dcddbe54d
1 changed files with 4 additions and 8 deletions
|
|
@ -826,8 +826,10 @@ emit_fast_htile_clear(struct radv_cmd_buffer *cmd_buffer,
|
|||
!(aspects & VK_IMAGE_ASPECT_STENCIL_BIT)))
|
||||
return false;
|
||||
|
||||
if (!radv_is_fast_clear_depth_allowed(clear_value) ||
|
||||
!(aspects & VK_IMAGE_ASPECT_DEPTH_BIT))
|
||||
if (((aspects & VK_IMAGE_ASPECT_DEPTH_BIT) &&
|
||||
!radv_is_fast_clear_depth_allowed(clear_value)) ||
|
||||
((aspects & VK_IMAGE_ASPECT_STENCIL_BIT) &&
|
||||
!radv_is_fast_clear_stencil_allowed(clear_value)))
|
||||
return false;
|
||||
|
||||
/* GFX8 only supports 32-bit depth surfaces but we can enable TC-compat
|
||||
|
|
@ -838,12 +840,6 @@ emit_fast_htile_clear(struct radv_cmd_buffer *cmd_buffer,
|
|||
iview->image->vk_format == VK_FORMAT_D16_UNORM)
|
||||
return false;
|
||||
|
||||
if (vk_format_aspects(iview->image->vk_format) & VK_IMAGE_ASPECT_STENCIL_BIT) {
|
||||
if (!radv_is_fast_clear_stencil_allowed(clear_value) ||
|
||||
!(aspects & VK_IMAGE_ASPECT_STENCIL_BIT))
|
||||
return false;
|
||||
}
|
||||
|
||||
clear_word = radv_get_htile_fast_clear_value(iview->image, clear_value);
|
||||
|
||||
if (pre_flush) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue