From 4219e09343b1e8d7cf0757ee2c9019b78a184e7b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Sun, 2 Apr 2017 16:33:07 +0200 Subject: [PATCH] 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 --- 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 b16f106..b6ea3de 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. -- 2.7.4