| @@ -176,7 +176,7 @@ try_draw_range_elements(struct brw_context *brw, | |||
| } | |||
| static boolean | |||
| static void | |||
| brw_draw_range_elements(struct pipe_context *pipe, | |||
| struct pipe_buffer *index_buffer, | |||
| unsigned index_size, | |||
| @@ -228,29 +228,27 @@ brw_draw_range_elements(struct pipe_context *pipe, | |||
| ret = try_draw_range_elements(brw, index_buffer, hw_prim, start, count ); | |||
| assert(ret == 0); | |||
| } | |||
| return TRUE; | |||
| } | |||
| static boolean | |||
| static void | |||
| brw_draw_elements(struct pipe_context *pipe, | |||
| struct pipe_buffer *index_buffer, | |||
| unsigned index_size, | |||
| unsigned mode, | |||
| unsigned start, unsigned count) | |||
| { | |||
| return brw_draw_range_elements( pipe, index_buffer, | |||
| index_size, | |||
| 0, 0xffffffff, | |||
| mode, | |||
| start, count ); | |||
| brw_draw_range_elements( pipe, index_buffer, | |||
| index_size, | |||
| 0, 0xffffffff, | |||
| mode, | |||
| start, count ); | |||
| } | |||
| static boolean | |||
| static void | |||
| brw_draw_arrays(struct pipe_context *pipe, unsigned mode, | |||
| unsigned start, unsigned count) | |||
| { | |||
| return brw_draw_elements(pipe, NULL, 0, mode, start, count); | |||
| brw_draw_elements(pipe, NULL, 0, mode, start, count); | |||
| } | |||