diff options
author | Keith Whitwell <[email protected]> | 2008-05-29 11:46:43 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2008-05-29 11:48:04 +0100 |
commit | 82605d7bcd533d7c96cc619c45970efd7229dc3b (patch) | |
tree | dd447161d0a5c12ce3350d1fa34bee980f642a44 /src/gallium/drivers/softpipe/sp_state.h | |
parent | cb87d7e44a6d6b1b4239b4e38c76c6bb848d2ef6 (diff) |
draw: draw_range_elements trial
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_state.h')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_state.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/gallium/drivers/softpipe/sp_state.h b/src/gallium/drivers/softpipe/sp_state.h index 452e51fa791..701e02b295e 100644 --- a/src/gallium/drivers/softpipe/sp_state.h +++ b/src/gallium/drivers/softpipe/sp_state.h @@ -171,6 +171,13 @@ boolean softpipe_draw_elements(struct pipe_context *pipe, struct pipe_buffer *indexBuffer, unsigned indexSize, unsigned mode, unsigned start, unsigned count); +boolean +softpipe_draw_range_elements(struct pipe_context *pipe, + struct pipe_buffer *indexBuffer, + unsigned indexSize, + unsigned min_index, + unsigned max_index, + unsigned mode, unsigned start, unsigned count); void softpipe_set_edgeflags(struct pipe_context *pipe, const unsigned *edgeflags); |