Module: Mesa Branch: master Commit: 403a3d80613fcc7ce0684f763b08a0e33a12374a URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=403a3d80613fcc7ce0684f763b08a0e33a12374a
Author: Samuel Pitoiset <[email protected]> Date: Wed Nov 15 15:43:58 2017 +0100 radv: remove useless check in radv_set_depth_clear_regs() aspects can't be zero and there is an assertion that ensures it's not in emit_clear(). Signed-off-by: Samuel Pitoiset <[email protected]> Reviewed-by: Bas Nieuwenhuizen <[email protected]> --- src/amd/vulkan/radv_cmd_buffer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/amd/vulkan/radv_cmd_buffer.c b/src/amd/vulkan/radv_cmd_buffer.c index 5f025d657c..04b8147df8 100644 --- a/src/amd/vulkan/radv_cmd_buffer.c +++ b/src/amd/vulkan/radv_cmd_buffer.c @@ -1297,7 +1297,7 @@ radv_set_depth_clear_regs(struct radv_cmd_buffer *cmd_buffer, va += image->offset + image->clear_value_offset; unsigned reg_offset = 0, reg_count = 0; - if (!image->surface.htile_size || !aspects) + if (!image->surface.htile_size) return; if (aspects & VK_IMAGE_ASPECT_STENCIL_BIT) { _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
