diff options
author | Marek Olšák <[email protected]> | 2010-05-29 15:39:51 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2010-05-29 15:41:22 +0200 |
commit | 7d9396d7cfd4d9472e05f83bf20d7278d37efb4d (patch) | |
tree | 23133754ca99dc7085c828f152d13f6239ad2352 /src/gallium/drivers/r600/r600_draw.c | |
parent | 1d57b6ebd186217a5c480245a36d169d357b8e67 (diff) |
r600g: fix gallium function parameters
Diffstat (limited to 'src/gallium/drivers/r600/r600_draw.c')
-rw-r--r-- | src/gallium/drivers/r600/r600_draw.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gallium/drivers/r600/r600_draw.c b/src/gallium/drivers/r600/r600_draw.c index 26cc94f857b..8b6a6d96aa8 100644 --- a/src/gallium/drivers/r600/r600_draw.c +++ b/src/gallium/drivers/r600/r600_draw.c @@ -43,7 +43,7 @@ struct r600_draw { unsigned start; unsigned count; unsigned index_size; - struct pipe_buffer *index_buffer; + struct pipe_resource *index_buffer; }; static int r600_draw_common(struct r600_draw *draw) @@ -167,8 +167,8 @@ static int r600_draw_common(struct r600_draw *draw) } void r600_draw_range_elements(struct pipe_context *ctx, - struct pipe_buffer *index_buffer, - unsigned index_size, unsigned index_bias, unsigned min_index, + struct pipe_resource *index_buffer, + unsigned index_size, int index_bias, unsigned min_index, unsigned max_index, unsigned mode, unsigned start, unsigned count) { @@ -186,8 +186,8 @@ printf("index_size %d min %d max %d start %d count %d\n", index_size, min_inde } void r600_draw_elements(struct pipe_context *ctx, - struct pipe_buffer *index_buffer, - unsigned index_size, unsigned index_bias, unsigned mode, + struct pipe_resource *index_buffer, + unsigned index_size, int index_bias, unsigned mode, unsigned start, unsigned count) { struct r600_draw draw; |