From: Marek Olšák Date: Tue, 28 Apr 2020 16:51:22 +0000 (-0400) Subject: radeonsi: revert an accidental change in si_clear_buffer X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bdd2f284d90b7f07ac5e878490be8d216d0d23c6;p=mesa.git 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: --- diff --git a/src/gallium/drivers/radeonsi/si_compute_blit.c b/src/gallium/drivers/radeonsi/si_compute_blit.c index d04d58ead20..8772475d124 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 {