diff options
author | Arnas Milasevicius <[email protected]> | 2013-06-07 01:21:19 +0300 |
---|---|---|
committer | Brian Paul <[email protected]> | 2013-06-07 09:29:29 -0600 |
commit | 3069357ef0cfa112c3c77a25c010df7f9af4467d (patch) | |
tree | cf6c235e13ed489ab8dc814414fd8071cb8c1aca /src/gallium/auxiliary/draw/draw_context.h | |
parent | 14541dacab218cbe82310d999d44130ebc3f6526 (diff) |
gallium: Remove draw_arrays() and draw_arrays_instanced() functions
Moved draw_arrays() to st_draw_feedback.c and removed draw_arrays_instanced().
draw_arrays() was used by nobody else. Now there's just one "draw" entrypoint
into the draw module.
Signed-off-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_context.h')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_context.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/gallium/auxiliary/draw/draw_context.h b/src/gallium/auxiliary/draw/draw_context.h index 2d843b7a047..4a1b27ee414 100644 --- a/src/gallium/auxiliary/draw/draw_context.h +++ b/src/gallium/auxiliary/draw/draw_context.h @@ -241,17 +241,6 @@ draw_set_mapped_so_targets(struct draw_context *draw, void draw_vbo(struct draw_context *draw, const struct pipe_draw_info *info); -void draw_arrays(struct draw_context *draw, unsigned prim, - unsigned start, unsigned count); - -void -draw_arrays_instanced(struct draw_context *draw, - unsigned mode, - unsigned start, - unsigned count, - unsigned startInstance, - unsigned instanceCount); - /******************************************************************************* * Driver backend interface |