diff options
author | José Fonseca <[email protected]> | 2010-04-19 18:16:08 +0200 |
---|---|---|
committer | José Fonseca <[email protected]> | 2010-04-19 18:16:08 +0200 |
commit | 9515b78859b52b4532cc9e06366428f2c49c7869 (patch) | |
tree | 3cdbe6b5bc6040b142f216932985f55775ecc26a /src/gallium/drivers/svga/svga_draw.h | |
parent | 989861fc5ea1792e7ea1be07389db7c3e3b8e383 (diff) |
svga: Implement index bias.
Untested.
Diffstat (limited to 'src/gallium/drivers/svga/svga_draw.h')
-rw-r--r-- | src/gallium/drivers/svga/svga_draw.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/svga/svga_draw.h b/src/gallium/drivers/svga/svga_draw.h index 81c7f8377de..a2403d802be 100644 --- a/src/gallium/drivers/svga/svga_draw.h +++ b/src/gallium/drivers/svga/svga_draw.h @@ -69,12 +69,12 @@ enum pipe_error svga_hwtnl_draw_range_elements( struct svga_hwtnl *hwtnl, struct pipe_resource *indexBuffer, unsigned index_size, + int index_bias, unsigned min_index, unsigned max_index, unsigned prim, unsigned start, - unsigned count, - unsigned bias ); + unsigned count ); enum pipe_error svga_hwtnl_flush( struct svga_hwtnl *hwtnl ); |