diff options
author | José Fonseca <[email protected]> | 2010-04-19 18:17:45 +0200 |
---|---|---|
committer | José Fonseca <[email protected]> | 2010-04-19 18:17:45 +0200 |
commit | f6f7324bbf03494dc26e266d96919fec6a1f08ba (patch) | |
tree | 8104a97a02a9ff9201572e957db304255c9364bb /src/gallium/drivers/nv50/nv50_context.h | |
parent | 583f51ba4bb1029d9d4f338ca3c8f4702ab6666c (diff) |
nv50: Adapt for index bias interface change.
Diffstat (limited to 'src/gallium/drivers/nv50/nv50_context.h')
-rw-r--r-- | src/gallium/drivers/nv50/nv50_context.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/nv50/nv50_context.h b/src/gallium/drivers/nv50/nv50_context.h index 8bf465378e3..4875f833054 100644 --- a/src/gallium/drivers/nv50/nv50_context.h +++ b/src/gallium/drivers/nv50/nv50_context.h @@ -185,12 +185,12 @@ extern void nv50_draw_arrays_instanced(struct pipe_context *, unsigned mode, unsigned instanceCount); extern void nv50_draw_elements(struct pipe_context *pipe, struct pipe_resource *indexBuffer, - unsigned indexSize, + unsigned indexSize, int indexBias, unsigned mode, unsigned start, unsigned count); extern void nv50_draw_elements_instanced(struct pipe_context *pipe, struct pipe_resource *indexBuffer, - unsigned indexSize, + unsigned indexSize, int indexBias, unsigned mode, unsigned start, unsigned count, unsigned startInstance, |