From: Marek Olšák Date: Sun, 2 Apr 2017 14:33:07 +0000 (+0200) Subject: gallium/util: remove util_draw_range_elements helper X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4219e09343b1e8d7cf0757ee2c9019b78a184e7b;p=mesa.git 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 Reviewed-by: Brian Paul --- diff --git a/src/gallium/auxiliary/util/u_draw.h b/src/gallium/auxiliary/util/u_draw.h index b16f10646a7..b6ea3de8905 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.