i965g: updates for draw retval

This commit is contained in:
Keith Whitwell
2010-01-07 11:19:38 +00:00
parent 7bd7e2da75
commit 150108024d

View File

@@ -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);
}