diff options
author | Zack Rusin <[email protected]> | 2010-05-31 20:41:18 -0400 |
---|---|---|
committer | Zack Rusin <[email protected]> | 2010-06-08 06:28:11 -0400 |
commit | ba5975dd3274a3cc760e79dabaf9c11b96673f4a (patch) | |
tree | 0fc15ba8416e0c9f55feef086143fecb9908e529 /src/gallium/drivers/softpipe/sp_context.c | |
parent | c9db97c8229689060fab0edee7df717f804b99ce (diff) |
gallium: add interface for DrawAuto and implement it in softpipe
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 b1970140d50..38bc0d51f34 100644 --- a/src/gallium/drivers/softpipe/sp_context.c +++ b/src/gallium/drivers/softpipe/sp_context.c @@ -276,6 +276,7 @@ softpipe_create_context( struct pipe_screen *screen, 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.draw_auto = softpipe_draw_auto; softpipe->pipe.clear = softpipe_clear; softpipe->pipe.flush = softpipe_flush; |