diff options
author | Christoph Bumiller <[email protected]> | 2010-01-17 17:37:55 +0100 |
---|---|---|
committer | Christoph Bumiller <[email protected]> | 2010-01-17 17:48:01 +0100 |
commit | 1448d2f252efc1ab8d3175c7fd9701dfe3079577 (patch) | |
tree | 343cfd9d907b17fa4b649acdda9b0688758cc43a /src/gallium/drivers/nv50/nv50_context.c | |
parent | a4bbabf494a127dcffc51f9c4734f2ecf75b3961 (diff) |
nv50: implement instanced drawing
Too bad we don't have hw array divisors or a method for
setting startInstance.
Diffstat (limited to 'src/gallium/drivers/nv50/nv50_context.c')
-rw-r--r-- | src/gallium/drivers/nv50/nv50_context.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/nv50/nv50_context.c b/src/gallium/drivers/nv50/nv50_context.c index 22a8498c69b..1e697463221 100644 --- a/src/gallium/drivers/nv50/nv50_context.c +++ b/src/gallium/drivers/nv50/nv50_context.c @@ -104,7 +104,9 @@ nv50_create(struct pipe_screen *pscreen, unsigned pctx_id) nv50->pipe.destroy = nv50_destroy; nv50->pipe.draw_arrays = nv50_draw_arrays; + nv50->pipe.draw_arrays_instanced = nv50_draw_arrays_instanced; nv50->pipe.draw_elements = nv50_draw_elements; + nv50->pipe.draw_elements_instanced = nv50_draw_elements_instanced; nv50->pipe.clear = nv50_clear; nv50->pipe.flush = nv50_flush; |