summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/llvmpipe/lp_state.h
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2010-04-28 14:01:04 -0600
committerBrian Paul <brianp@vmware.com>2010-04-28 15:25:50 -0600
commit8fd794db9e04da1c272e3681e5d2f74ce84fde07 (patch)
tree2a2717af74a983fb1de897bab3ad7d8b00d1681e /src/gallium/drivers/llvmpipe/lp_state.h
parentbfd81b4ebb1eb16ff56ec1a38aeb942eb7f0389c (diff)
llvmpipe: make blend-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.h23
1 files changed, 3 insertions, 20 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_state.h b/src/gallium/drivers/llvmpipe/lp_state.h
index 4fe2db178e..a2f6b17334 100644
--- a/src/gallium/drivers/llvmpipe/lp_state.h
+++ b/src/gallium/drivers/llvmpipe/lp_state.h
@@ -123,20 +123,6 @@ struct lp_velems_state {
void *
-llvmpipe_create_blend_state(struct pipe_context *,
- const struct pipe_blend_state *);
-void llvmpipe_bind_blend_state(struct pipe_context *,
- void *);
-void llvmpipe_delete_blend_state(struct pipe_context *,
- void *);
-
-void *
-llvmpipe_create_depth_stencil_state(struct pipe_context *,
- const struct pipe_depth_stencil_alpha_state *);
-void llvmpipe_bind_depth_stencil_state(struct pipe_context *, void *);
-void llvmpipe_delete_depth_stencil_state(struct pipe_context *, void *);
-
-void *
llvmpipe_create_rasterizer_state(struct pipe_context *,
const struct pipe_rasterizer_state *);
void llvmpipe_bind_rasterizer_state(struct pipe_context *, void *);
@@ -145,12 +131,6 @@ void llvmpipe_delete_rasterizer_state(struct pipe_context *, void *);
void llvmpipe_set_framebuffer_state( struct pipe_context *,
const struct pipe_framebuffer_state * );
-void llvmpipe_set_blend_color( struct pipe_context *pipe,
- const struct pipe_blend_color *blend_color );
-
-void llvmpipe_set_stencil_ref( struct pipe_context *pipe,
- const struct pipe_stencil_ref *stencil_ref );
-
void llvmpipe_set_clip_state( struct pipe_context *,
const struct pipe_clip_state * );
@@ -216,5 +196,8 @@ llvmpipe_unmap_texture_surfaces(struct llvmpipe_context *lp);
void
llvmpipe_init_sampler_funcs(struct llvmpipe_context *llvmpipe);
+void
+llvmpipe_init_blend_funcs(struct llvmpipe_context *llvmpipe);
+
#endif