summaryrefslogtreecommitdiffstats
path: root/src/mesa/state_tracker/st_context.h
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2011-05-29 15:35:25 +0200
committerMarek Olšák <[email protected]>2011-05-30 10:50:43 +0200
commit1c95c3ef9c51c0eb218f80959bbbf29d213a6af0 (patch)
treeb501fcf4959c913a0c25387b2b2c151f92092966 /src/mesa/state_tracker/st_context.h
parent24ed0b384b74863d142a915a6bc9f998ddb20ef4 (diff)
st/mesa: GenerateMipmap should not be killed by conditional rendering
NOTE: This is a candidate for the 7.10 branch. Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/state_tracker/st_context.h')
-rw-r--r--src/mesa/state_tracker/st_context.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/state_tracker/st_context.h b/src/mesa/state_tracker/st_context.h
index c6fc31801d6..ff207039d78 100644
--- a/src/mesa/state_tracker/st_context.h
+++ b/src/mesa/state_tracker/st_context.h
@@ -200,6 +200,10 @@ struct st_context
GLsizei stride;
} user_attrib[PIPE_MAX_ATTRIBS];
unsigned num_user_attribs;
+
+ /* Active render condition. */
+ struct pipe_query *render_condition;
+ unsigned condition_mode;
};