diff options
author | José Fonseca <[email protected]> | 2010-04-19 18:18:45 +0200 |
---|---|---|
committer | José Fonseca <[email protected]> | 2010-04-19 18:18:45 +0200 |
commit | dfadf5a579281c6dd4ecdd4ecd5568fbbb1de17e (patch) | |
tree | 1b2427b121b919e2ea23ffed4f52f6e1059845ed /src/gallium/drivers/r300/r300_context.h | |
parent | 7c785c0d2c2b5f3ead4b3cf31ad6af02bd90f3a5 (diff) |
r300g: Adapt for index bias interface change.
Diffstat (limited to 'src/gallium/drivers/r300/r300_context.h')
-rw-r--r-- | src/gallium/drivers/r300/r300_context.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/r300/r300_context.h b/src/gallium/drivers/r300/r300_context.h index 2e8601b65ef..1e4fd9e5edd 100644 --- a/src/gallium/drivers/r300/r300_context.h +++ b/src/gallium/drivers/r300/r300_context.h @@ -327,7 +327,8 @@ struct r300_context { void (*emit_draw_elements)( struct r300_context *r300, struct pipe_resource* indexBuffer, - unsigned indexSize, unsigned minIndex, unsigned maxIndex, + unsigned indexSize, int indexBias, + unsigned minIndex, unsigned maxIndex, unsigned mode, unsigned start, unsigned count); |