From bdd2f284d90b7f07ac5e878490be8d216d0d23c6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Tue, 28 Apr 2020 12:51:22 -0400 Subject: [PATCH] radeonsi: revert an accidental change in si_clear_buffer The change was in: 7b0b085c94347cb9c94d88e11a64a6c341d95477 Fixes: 7b0b085c943 ("radeonsi: drop the negation from fmask_is_not_identity") Reviewed-by: Pierre-Eric Pelloux-Prayer Part-of: --- src/gallium/drivers/radeonsi/si_compute_blit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/radeonsi/si_compute_blit.c b/src/gallium/drivers/radeonsi/si_compute_blit.c index d04d58e..8772475 100644 --- a/src/gallium/drivers/radeonsi/si_compute_blit.c +++ b/src/gallium/drivers/radeonsi/si_compute_blit.c @@ -328,7 +328,7 @@ void si_clear_buffer(struct si_context *sctx, struct pipe_resource *dst, uint64_ * about buffer placements. */ if (clear_value_size > 4 || (!force_cpdma && clear_value_size == 4 && offset % 4 == 0 && - (size > 32 * 1024 || sctx->chip_class <= GFX9))) { + (size > 32 * 1024 || sctx->chip_class <= GFX8))) { si_compute_do_clear_or_copy(sctx, dst, offset, NULL, 0, aligned_size, clear_value, clear_value_size, coher); } else { -- 2.7.4