summaryrefslogtreecommitdiff
path: root/src/mesa/pipe
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-08-17 12:30:30 -0600
committerBrian <brian.paul@tungstengraphics.com>2007-08-17 12:30:30 -0600
commita2805a81658fd4a4b9732167f24f334630549fa6 (patch)
tree8d210b7994b8d2690be0d011eddd50ae91262c6f /src/mesa/pipe
parent4973136e2062fe6930cee1a44f97aefa6b423295 (diff)
added outputs_written field to pipe_shader_state
Diffstat (limited to 'src/mesa/pipe')
-rw-r--r--src/mesa/pipe/p_state.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/pipe/p_state.h b/src/mesa/pipe/p_state.h
index c1972c56b3..42bf50a617 100644
--- a/src/mesa/pipe/p_state.h
+++ b/src/mesa/pipe/p_state.h
@@ -122,7 +122,8 @@ struct pipe_constant_buffer {
struct pipe_shader_state {
- unsigned inputs_read; /* FRAG/VERT_ATTRIB_* */
+ unsigned inputs_read; /**< FRAG/VERT_ATTRIB_x */
+ unsigned outputs_written; /**< FRAG/VERT_RESULT_x */
const struct tgsi_token *tokens;
struct pipe_constant_buffer *constants; /* XXX temporary? */
};