Module: Mesa
Branch: master
Commit: bdd2f284d90b7f07ac5e878490be8d216d0d23c6
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=bdd2f284d90b7f07ac5e878490be8d216d0d23c6

Author: Marek Olšák <[email protected]>
Date:   Tue Apr 28 12:51:22 2020 -0400

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 <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4761>

---

 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 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 {

_______________________________________________
mesa-commit mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to