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

Author: Marek Olšák <[email protected]>
Date:   Wed Jan 29 17:25:45 2020 -0500

radeonsi: don't report that multi-plane formats are supported

Fixes: a554b45d - st/mesa: don't lower YUV when driver supports it natively
Closes: #2376

Acked-by: Pierre-Eric Pelloux-Prayer <[email protected]>
Tested-by: Marge Bot 
<https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3632>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3632>

---

 src/gallium/drivers/radeonsi/si_state.c | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/src/gallium/drivers/radeonsi/si_state.c 
b/src/gallium/drivers/radeonsi/si_state.c
index 86c2daff0de..afa1029c1ac 100644
--- a/src/gallium/drivers/radeonsi/si_state.c
+++ b/src/gallium/drivers/radeonsi/si_state.c
@@ -2242,13 +2242,6 @@ static bool si_is_format_supported(struct pipe_screen 
*screen,
                return false;
        }
 
-       if (util_format_get_num_planes(format) >= 2) {
-               return util_format_planar_is_supported(screen, format, target,
-                                                      sample_count,
-                                                      storage_sample_count,
-                                                      usage);
-       }
-
        if (MAX2(1, sample_count) < MAX2(1, storage_sample_count))
                return false;
 

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

Reply via email to