diff options
author | Brian Paul <[email protected]> | 2008-03-29 14:41:03 +0100 |
---|---|---|
committer | Michal Krol <[email protected]> | 2008-03-29 14:41:03 +0100 |
commit | a52c0416d1f2105960b4646e2e268aed26814689 (patch) | |
tree | c49a0e4bce225c3126c6acf3ea3205aed99b1d93 /src/gallium/drivers/softpipe/sp_context.c | |
parent | f10016b9a0639d7bc814c7b92a30d5b5b2cba5ad (diff) |
gallium: Set vertex state/buffers en-mass.
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_context.c')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_context.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/softpipe/sp_context.c b/src/gallium/drivers/softpipe/sp_context.c index 16fb06f176f..e298ed37c36 100644 --- a/src/gallium/drivers/softpipe/sp_context.c +++ b/src/gallium/drivers/softpipe/sp_context.c @@ -174,8 +174,8 @@ softpipe_create( struct pipe_screen *screen, softpipe->pipe.set_sampler_textures = softpipe_set_sampler_textures; softpipe->pipe.set_viewport_state = softpipe_set_viewport_state; - softpipe->pipe.set_vertex_buffer = softpipe_set_vertex_buffer; - softpipe->pipe.set_vertex_element = softpipe_set_vertex_element; + softpipe->pipe.set_vertex_buffers = softpipe_set_vertex_buffers; + softpipe->pipe.set_vertex_elements = softpipe_set_vertex_elements; softpipe->pipe.draw_arrays = softpipe_draw_arrays; softpipe->pipe.draw_elements = softpipe_draw_elements; |