summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/r300/r300_context.h
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2010-04-19 18:18:45 +0200
committerJosé Fonseca <jfonseca@vmware.com>2010-04-19 18:18:45 +0200
commitdfadf5a579281c6dd4ecdd4ecd5568fbbb1de17e (patch)
tree1b2427b121b919e2ea23ffed4f52f6e1059845ed /src/gallium/drivers/r300/r300_context.h
parent7c785c0d2c2b5f3ead4b3cf31ad6af02bd90f3a5 (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.h3
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 2e8601b65e..1e4fd9e5ed 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);