diff options
author | Brian Paul <[email protected]> | 2010-04-28 14:04:24 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-04-28 15:25:50 -0600 |
commit | e351e828698b133feb1f626c1d99d0fcb2ec1480 (patch) | |
tree | 3768bceddf4853f2b6728963fe679f4649c21e27 /src/gallium/drivers/llvmpipe/lp_state.h | |
parent | 8fd794db9e04da1c272e3681e5d2f74ce84fde07 (diff) |
llvmpipe: make vertex-related functions static, clean-up initializations
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_state.h')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_state.h | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_state.h b/src/gallium/drivers/llvmpipe/lp_state.h index a2f6b17334c..3e015f3ecaa 100644 --- a/src/gallium/drivers/llvmpipe/lp_state.h +++ b/src/gallium/drivers/llvmpipe/lp_state.h @@ -147,12 +147,6 @@ void *llvmpipe_create_vs_state(struct pipe_context *, void llvmpipe_bind_vs_state(struct pipe_context *, void *); void llvmpipe_delete_vs_state(struct pipe_context *, void *); -void *llvmpipe_create_vertex_elements_state(struct pipe_context *, - unsigned count, - const struct pipe_vertex_element *); -void llvmpipe_bind_vertex_elements_state(struct pipe_context *, void *); -void llvmpipe_delete_vertex_elements_state(struct pipe_context *, void *); - void llvmpipe_set_polygon_stipple( struct pipe_context *, const struct pipe_poly_stipple * ); @@ -162,10 +156,6 @@ void llvmpipe_set_scissor_state( struct pipe_context *, void llvmpipe_set_viewport_state( struct pipe_context *, const struct pipe_viewport_state * ); -void llvmpipe_set_vertex_buffers(struct pipe_context *, - unsigned count, - const struct pipe_vertex_buffer *); - void llvmpipe_update_fs(struct llvmpipe_context *lp); void llvmpipe_update_derived( struct llvmpipe_context *llvmpipe ); @@ -199,5 +189,7 @@ llvmpipe_init_sampler_funcs(struct llvmpipe_context *llvmpipe); void llvmpipe_init_blend_funcs(struct llvmpipe_context *llvmpipe); +void +llvmpipe_init_vertex_funcs(struct llvmpipe_context *llvmpipe); #endif |