summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/softpipe/sp_context.c
diff options
context:
space:
mode:
authorMichal Krol <michal@vmware.com>2009-12-30 18:27:58 +0100
committerMichal Krol <michal@vmware.com>2009-12-30 18:27:58 +0100
commitbccdb239c700e0c7c90d27a281d5246b958581b5 (patch)
tree7fdbcef3bccad9d48380915224b7731419916cfa /src/gallium/drivers/softpipe/sp_context.c
parent5007e39f76c897b8f3aa4acf6086c8b7ac30bdef (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.c1
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 406414ae3d..969d69d6b4 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;