diff options
author | Roland Scheidegger <[email protected]> | 2010-02-18 16:36:25 +0100 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2010-02-18 16:36:25 +0100 |
commit | 51d139f03898e5e46af6363c6bba131455738cc4 (patch) | |
tree | 74a3f359c81ebf7e4dbf144b3390335fe4fe8fe9 /src/gallium/include | |
parent | 464a72dd4154f314e08c9d0c4d07417e2bf255f0 (diff) |
gallium: use cso state handling for pipe_vertex_element state
Diffstat (limited to 'src/gallium/include')
-rw-r--r-- | src/gallium/include/pipe/p_context.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/gallium/include/pipe/p_context.h b/src/gallium/include/pipe/p_context.h index f82b77903e9..376b01aa696 100644 --- a/src/gallium/include/pipe/p_context.h +++ b/src/gallium/include/pipe/p_context.h @@ -177,6 +177,12 @@ struct pipe_context { void (*bind_gs_state)(struct pipe_context *, void *); void (*delete_gs_state)(struct pipe_context *, void *); + void * (*create_vertex_elements_state)(struct pipe_context *, + unsigned num_elements, + const struct pipe_vertex_element *); + void (*bind_vertex_elements_state)(struct pipe_context *, void *); + void (*delete_vertex_elements_state)(struct pipe_context *, void *); + /*@}*/ /** @@ -220,9 +226,6 @@ struct pipe_context { unsigned num_buffers, const struct pipe_vertex_buffer * ); - void (*set_vertex_elements)( struct pipe_context *, - unsigned num_elements, - const struct pipe_vertex_element * ); /*@}*/ |