summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/softpipe/sp_state.h
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2010-09-25 13:58:41 -0600
committerBrian Paul <brianp@vmware.com>2010-09-25 14:25:40 -0600
commit2739692a6edaa0233bac188855457236897a34d5 (patch)
tree93758550dc9c923911c5096c31985ee552d84dd7 /src/gallium/drivers/softpipe/sp_state.h
parent279b368dc34d8829bfd23b83af7f78e10e303f54 (diff)
downloadexternal_mesa3d-2739692a6edaa0233bac188855457236897a34d5.zip
external_mesa3d-2739692a6edaa0233bac188855457236897a34d5.tar.gz
external_mesa3d-2739692a6edaa0233bac188855457236897a34d5.tar.bz2
softpipe: make blend/stencil/depth functions static
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_state.h')
-rw-r--r--src/gallium/drivers/softpipe/sp_state.h24
1 files changed, 2 insertions, 22 deletions
diff --git a/src/gallium/drivers/softpipe/sp_state.h b/src/gallium/drivers/softpipe/sp_state.h
index 6924357..1326f49 100644
--- a/src/gallium/drivers/softpipe/sp_state.h
+++ b/src/gallium/drivers/softpipe/sp_state.h
@@ -115,13 +115,8 @@ struct sp_so_state {
};
-void *
-softpipe_create_blend_state(struct pipe_context *,
- const struct pipe_blend_state *);
-void softpipe_bind_blend_state(struct pipe_context *,
- void *);
-void softpipe_delete_blend_state(struct pipe_context *,
- void *);
+void
+softpipe_init_blend_funcs(struct pipe_context *pipe);
void *
softpipe_create_sampler_state(struct pipe_context *,
@@ -138,12 +133,6 @@ softpipe_bind_geometry_sampler_states(struct pipe_context *,
void softpipe_delete_sampler_state(struct pipe_context *, void *);
void *
-softpipe_create_depth_stencil_state(struct pipe_context *,
- const struct pipe_depth_stencil_alpha_state *);
-void softpipe_bind_depth_stencil_state(struct pipe_context *, void *);
-void softpipe_delete_depth_stencil_state(struct pipe_context *, void *);
-
-void *
softpipe_create_rasterizer_state(struct pipe_context *,
const struct pipe_rasterizer_state *);
void softpipe_bind_rasterizer_state(struct pipe_context *, void *);
@@ -152,18 +141,9 @@ void softpipe_delete_rasterizer_state(struct pipe_context *, void *);
void softpipe_set_framebuffer_state( struct pipe_context *,
const struct pipe_framebuffer_state * );
-void softpipe_set_blend_color( struct pipe_context *pipe,
- const struct pipe_blend_color *blend_color );
-
-void softpipe_set_stencil_ref( struct pipe_context *pipe,
- const struct pipe_stencil_ref *stencil_ref );
-
void softpipe_set_clip_state( struct pipe_context *,
const struct pipe_clip_state * );
-void softpipe_set_sample_mask( struct pipe_context *,
- unsigned sample_mask );
-
void
softpipe_init_shader_funcs(struct pipe_context *pipe);