summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/p_context.h
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-06-18 17:54:38 -0600
committerBrian <brian.paul@tungstengraphics.com>2007-06-18 17:54:38 -0600
commit493f7b5f3ae2eb64eaa65e24e79a7a071c359b81 (patch)
treec38bbfa9ec2071b94eae5523bb433aae9c9b14ed /src/mesa/pipe/p_context.h
parentefe6c50089e945902917c8091c92ce3a6155caac (diff)
Added alpha test state.
Diffstat (limited to 'src/mesa/pipe/p_context.h')
-rw-r--r--src/mesa/pipe/p_context.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/mesa/pipe/p_context.h b/src/mesa/pipe/p_context.h
index 5c9b9b14fe..f7374a8380 100644
--- a/src/mesa/pipe/p_context.h
+++ b/src/mesa/pipe/p_context.h
@@ -56,12 +56,12 @@ struct pipe_context {
/*
* State functions
*/
+ void (*set_alpha_test_state)( struct pipe_context *,
+ const struct pipe_alpha_test_state * );
+
void (*set_blend_state)( struct pipe_context *,
const struct pipe_blend_state * );
- void (*set_framebuffer_state)( struct pipe_context *,
- const struct pipe_framebuffer_state * );
-
void (*set_cbuf_state)( struct pipe_context *,
const struct pipe_surface * );
@@ -71,6 +71,9 @@ struct pipe_context {
void (*set_depth_state)( struct pipe_context *,
const struct pipe_depth_state * );
+ void (*set_framebuffer_state)( struct pipe_context *,
+ const struct pipe_framebuffer_state * );
+
void (*set_fs_state)( struct pipe_context *,
const struct pipe_fs_state * );