summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/softpipe/sp_state.h
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2010-09-25 14:12:12 -0600
committerBrian Paul <brianp@vmware.com>2010-09-25 14:25:40 -0600
commit5b2406c0b9069363259a3d4b9486b081be5ade03 (patch)
treeafa9c7e717c1cfe099606de4f5c4879d102b9efa /src/gallium/drivers/softpipe/sp_state.h
parentbd13a0d282d5468c083d06f4443dfaf375e01dda (diff)
softpipe: make stream out state functions static
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_state.h')
-rw-r--r--src/gallium/drivers/softpipe/sp_state.h18
1 files changed, 3 insertions, 15 deletions
diff --git a/src/gallium/drivers/softpipe/sp_state.h b/src/gallium/drivers/softpipe/sp_state.h
index 8c539ca25f..d6a435d2de 100644
--- a/src/gallium/drivers/softpipe/sp_state.h
+++ b/src/gallium/drivers/softpipe/sp_state.h
@@ -124,6 +124,9 @@ softpipe_init_sampler_funcs(struct pipe_context *pipe);
void
softpipe_init_rasterizer_funcs(struct pipe_context *pipe);
+void
+softpipe_init_streamout_funcs(struct pipe_context *pipe);
+
void softpipe_set_framebuffer_state( struct pipe_context *,
const struct pipe_framebuffer_state * );
@@ -176,20 +179,5 @@ softpipe_get_vertex_info(struct softpipe_context *softpipe);
struct vertex_info *
softpipe_get_vbuf_vertex_info(struct softpipe_context *softpipe);
-void *
-softpipe_create_stream_output_state(
- struct pipe_context *pipe,
- const struct pipe_stream_output_state *templ);
-void
-softpipe_bind_stream_output_state(struct pipe_context *pipe,
- void *so);
-void
-softpipe_delete_stream_output_state(struct pipe_context *pipe, void *so);
-
-void
-softpipe_set_stream_output_buffers(struct pipe_context *pipe,
- struct pipe_resource **buffers,
- int *offsets,
- int num_buffers);
#endif