Mesa (master): gallium/util: remove util_draw_range_elements helper

Marek Olšák mareko at kemper.freedesktop.org
Thu Apr 20 18:16:53 UTC 2017


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

Author: Marek Olšák <marek.olsak at amd.com>
Date:   Sun Apr  2 16:33:07 2017 +0200

gallium/util: remove util_draw_range_elements helper

min/max_index are typically hints for the u_vbuf module, not the driver.

Reviewed-by: Ilia Mirkin <imirkin at alum.mit.edu>
Reviewed-by: Brian Paul <brianp at vmware.com>

---

 src/gallium/auxiliary/util/u_draw.h | 23 -----------------------
 1 file changed, 23 deletions(-)

diff --git a/src/gallium/auxiliary/util/u_draw.h b/src/gallium/auxiliary/util/u_draw.h
index b16f10646a..b6ea3de890 100644
--- a/src/gallium/auxiliary/util/u_draw.h
+++ b/src/gallium/auxiliary/util/u_draw.h
@@ -129,29 +129,6 @@ util_draw_elements_instanced(struct pipe_context *pipe,
    pipe->draw_vbo(pipe, &info);
 }
 
-static inline void
-util_draw_range_elements(struct pipe_context *pipe,
-                         int index_bias,
-                         uint min_index,
-                         uint max_index,
-                         enum pipe_prim_type mode,
-                         uint start,
-                         uint count)
-{
-   struct pipe_draw_info info;
-
-   util_draw_init_info(&info);
-   info.indexed = TRUE;
-   info.mode = mode;
-   info.start = start;
-   info.count = count;
-   info.index_bias = index_bias;
-   info.min_index = min_index;
-   info.max_index = max_index;
-
-   pipe->draw_vbo(pipe, &info);
-}
-
 
 /* This converts an indirect draw into a direct draw by mapping the indirect
  * buffer, extracting its arguments, and calling pipe->draw_vbo.




More information about the mesa-commit mailing list