diff options
author | Zack Rusin <[email protected]> | 2010-06-02 12:57:58 -0400 |
---|---|---|
committer | Zack Rusin <[email protected]> | 2010-06-08 06:28:11 -0400 |
commit | 3a7fc2e4f3de23ab384ca679444971693a35a4c7 (patch) | |
tree | 979fe074d63e0166683b569704e7d33132977ef7 /src/gallium/drivers/softpipe/sp_context.c | |
parent | 2c22b8e61dc4adab658c6198feea30c006aa6c58 (diff) |
gallium: rename draw_auto to draw_stream_output, plus fix a comment
Brian spotted those
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_context.c')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/softpipe/sp_context.c b/src/gallium/drivers/softpipe/sp_context.c index 38bc0d51f34..401a28ad312 100644 --- a/src/gallium/drivers/softpipe/sp_context.c +++ b/src/gallium/drivers/softpipe/sp_context.c @@ -276,7 +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.draw_stream_output = softpipe_draw_stream_output; softpipe->pipe.clear = softpipe_clear; softpipe->pipe.flush = softpipe_flush; |