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/include/pipe/p_context.h | |
parent | f10016b9a0639d7bc814c7b92a30d5b5b2cba5ad (diff) |
gallium: Set vertex state/buffers en-mass.
Diffstat (limited to 'src/gallium/include/pipe/p_context.h')
-rw-r--r-- | src/gallium/include/pipe/p_context.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gallium/include/pipe/p_context.h b/src/gallium/include/pipe/p_context.h index 2d063e3f9e4..324f70185af 100644 --- a/src/gallium/include/pipe/p_context.h +++ b/src/gallium/include/pipe/p_context.h @@ -155,13 +155,13 @@ struct pipe_context { unsigned num_textures, struct pipe_texture ** ); - void (*set_vertex_buffer)( struct pipe_context *, - unsigned index, - const struct pipe_vertex_buffer * ); + void (*set_vertex_buffers)( struct pipe_context *, + unsigned num_buffers, + const struct pipe_vertex_buffer * ); - void (*set_vertex_element)( struct pipe_context *, - unsigned index, - const struct pipe_vertex_element * ); + void (*set_vertex_elements)( struct pipe_context *, + unsigned num_elements, + const struct pipe_vertex_element * ); /*@}*/ |