summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/softpipe/sp_state.h
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2010-09-25 14:06:58 -0600
committerBrian Paul <brianp@vmware.com>2010-09-25 14:25:40 -0600
commiteed4509b086828c6229a7b1865978ffa27377874 (patch)
tree279c622742ea2547e5694abe1262083178a0d5ed /src/gallium/drivers/softpipe/sp_state.h
parentc5dd2e40e268e40335a47b86b7c4ce201e337a77 (diff)
softpipe: make vertex state functions static
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_state.h')
-rw-r--r--src/gallium/drivers/softpipe/sp_state.h14
1 files changed, 2 insertions, 12 deletions
diff --git a/src/gallium/drivers/softpipe/sp_state.h b/src/gallium/drivers/softpipe/sp_state.h
index 8d4efb1c66..62a9aaa46a 100644
--- a/src/gallium/drivers/softpipe/sp_state.h
+++ b/src/gallium/drivers/softpipe/sp_state.h
@@ -137,11 +137,8 @@ void softpipe_set_clip_state( struct pipe_context *,
void
softpipe_init_shader_funcs(struct pipe_context *pipe);
-void *softpipe_create_vertex_elements_state(struct pipe_context *,
- unsigned count,
- const struct pipe_vertex_element *);
-void softpipe_bind_vertex_elements_state(struct pipe_context *, void *);
-void softpipe_delete_vertex_elements_state(struct pipe_context *, void *);
+void
+softpipe_init_vertex_funcs(struct pipe_context *pipe);
void softpipe_set_polygon_stipple( struct pipe_context *,
const struct pipe_poly_stipple * );
@@ -153,13 +150,6 @@ void softpipe_set_scissor_state( struct pipe_context *,
void softpipe_set_viewport_state( struct pipe_context *,
const struct pipe_viewport_state * );
-void softpipe_set_vertex_buffers(struct pipe_context *,
- unsigned count,
- const struct pipe_vertex_buffer *);
-
-void softpipe_set_index_buffer(struct pipe_context *,
- const struct pipe_index_buffer *);
-
void softpipe_update_derived( struct softpipe_context *softpipe );