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

Author: Mike Blumenkrantz <[email protected]>
Date:   Thu Mar 25 15:24:20 2021 -0400

llvmpipe: stop flattening multidraws

these are now handled in the draw module

Reviewed-by: Dave Airlie <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/9844>

---

 src/gallium/drivers/llvmpipe/lp_draw_arrays.c | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/src/gallium/drivers/llvmpipe/lp_draw_arrays.c 
b/src/gallium/drivers/llvmpipe/lp_draw_arrays.c
index c2ceaabae36..e8f0ae6093a 100644
--- a/src/gallium/drivers/llvmpipe/lp_draw_arrays.c
+++ b/src/gallium/drivers/llvmpipe/lp_draw_arrays.c
@@ -56,11 +56,6 @@ llvmpipe_draw_vbo(struct pipe_context *pipe, const struct 
pipe_draw_info *info,
                   const struct pipe_draw_start_count *draws,
                   unsigned num_draws)
 {
-   if (num_draws > 1) {
-      util_draw_multi(pipe, info, indirect, draws, num_draws);
-      return;
-   }
-
    if (!indirect && (!draws[0].count || !info->instance_count))
       return;
 

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

Reply via email to