summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/softpipe/sp_state.h
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2010-09-25 13:54:24 -0600
committerBrian Paul <brianp@vmware.com>2010-09-25 14:25:40 -0600
commit279b368dc34d8829bfd23b83af7f78e10e303f54 (patch)
treeb8d2d9abf9ddedcb76779e359d801f5a1aa77742 /src/gallium/drivers/softpipe/sp_state.h
parent72c6d16f8fe31b1b711465d20e4d2c4cbd13825f (diff)
softpipe: make shader-related 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, 2 insertions, 16 deletions
diff --git a/src/gallium/drivers/softpipe/sp_state.h b/src/gallium/drivers/softpipe/sp_state.h
index c5d61f840f..69243573f7 100644
--- a/src/gallium/drivers/softpipe/sp_state.h
+++ b/src/gallium/drivers/softpipe/sp_state.h
@@ -164,22 +164,8 @@ void softpipe_set_clip_state( struct pipe_context *,
void softpipe_set_sample_mask( struct pipe_context *,
unsigned sample_mask );
-void softpipe_set_constant_buffer(struct pipe_context *,
- uint shader, uint index,
- struct pipe_resource *buf);
-
-void *softpipe_create_fs_state(struct pipe_context *,
- const struct pipe_shader_state *);
-void softpipe_bind_fs_state(struct pipe_context *, void *);
-void softpipe_delete_fs_state(struct pipe_context *, void *);
-void *softpipe_create_vs_state(struct pipe_context *,
- const struct pipe_shader_state *);
-void softpipe_bind_vs_state(struct pipe_context *, void *);
-void softpipe_delete_vs_state(struct pipe_context *, void *);
-void *softpipe_create_gs_state(struct pipe_context *,
- const struct pipe_shader_state *);
-void softpipe_bind_gs_state(struct pipe_context *, void *);
-void softpipe_delete_gs_state(struct pipe_context *, void *);
+void
+softpipe_init_shader_funcs(struct pipe_context *pipe);
void *softpipe_create_vertex_elements_state(struct pipe_context *,
unsigned count,