diff options
author | Michal Krol <[email protected]> | 2009-12-30 18:27:58 +0100 |
---|---|---|
committer | Michal Krol <[email protected]> | 2009-12-30 18:27:58 +0100 |
commit | bccdb239c700e0c7c90d27a281d5246b958581b5 (patch) | |
tree | 7fdbcef3bccad9d48380915224b7731419916cfa /src/gallium/drivers/softpipe/sp_context.c | |
parent | 5007e39f76c897b8f3aa4acf6086c8b7ac30bdef (diff) |
sp: Implement draw_elements_instanced().
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_context.c')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_context.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/softpipe/sp_context.c b/src/gallium/drivers/softpipe/sp_context.c index 406414ae3d2..969d69d6b42 100644 --- a/src/gallium/drivers/softpipe/sp_context.c +++ b/src/gallium/drivers/softpipe/sp_context.c @@ -239,6 +239,7 @@ softpipe_create( struct pipe_screen *screen ) softpipe->pipe.draw_elements = softpipe_draw_elements; softpipe->pipe.draw_range_elements = softpipe_draw_range_elements; softpipe->pipe.draw_arrays_instanced = softpipe_draw_arrays_instanced; + softpipe->pipe.draw_elements_instanced = softpipe_draw_elements_instanced; softpipe->pipe.clear = softpipe_clear; softpipe->pipe.flush = softpipe_flush; |