summaryrefslogtreecommitdiff
path: root/src/mesa
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-06-22 12:49:23 -0600
committerBrian <brian.paul@tungstengraphics.com>2007-06-22 12:49:23 -0600
commit8754b59667f8196eb884113ef1427b0792de47fd (patch)
treee677dd7bf61a6a27fff6ee2eadc7407553ca98ac /src/mesa
parentf79c225d9e5adee6287a9bba35f014c3fe00d3f9 (diff)
added blend comments
Diffstat (limited to 'src/mesa')
-rw-r--r--src/mesa/pipe/p_state.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mesa/pipe/p_state.h b/src/mesa/pipe/p_state.h
index b841181cf0..d1e387ce43 100644
--- a/src/mesa/pipe/p_state.h
+++ b/src/mesa/pipe/p_state.h
@@ -121,16 +121,16 @@ struct pipe_alpha_test_state {
struct pipe_blend_state {
GLuint blend_enable:1;
- GLuint rgb_func:3;
- GLuint rgb_src_factor:5;
- GLuint rgb_dst_factor:5;
+ GLuint rgb_func:3; /**< PIPE_BLEND_x */
+ GLuint rgb_src_factor:5; /**< PIPE_BLENDFACTOR_x */
+ GLuint rgb_dst_factor:5; /**< PIPE_BLENDFACTOR_x */
- GLuint alpha_func:3;
- GLuint alpha_src_factor:5;
- GLuint alpha_dst_factor:5;
+ GLuint alpha_func:3; /**< PIPE_BLEND_x */
+ GLuint alpha_src_factor:5; /**< PIPE_BLENDFACTOR_x */
+ GLuint alpha_dst_factor:5; /**< PIPE_BLENDFACTOR_x */
GLuint logicop_enable:1;
- GLuint logicop_func:4;
+ GLuint logicop_func:4; /**< PIPE_LOGICOP_x */
};
struct pipe_blend_color {