From: Ilia Mirkin Date: Sat, 10 May 2014 14:22:17 +0000 (-0400) Subject: gallium: add bit to pipe_blit_info to leave current query enabled X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=752ce0affb1bc45a3caa67b7a2788eec30a9f85f;p=mesa.git gallium: add bit to pipe_blit_info to leave current query enabled Previously the implication was that queries should be disabled during blits. However glBlitFramebuffer() is supposed to obey the current query, and this new bit will indicate that to the driver. Signed-off-by: Ilia Mirkin Cc: "10.2" Reviewed-by: Marek Olšák --- diff --git a/src/gallium/include/pipe/p_state.h b/src/gallium/include/pipe/p_state.h index a41c53d2445..07ce88ea62d 100644 --- a/src/gallium/include/pipe/p_state.h +++ b/src/gallium/include/pipe/p_state.h @@ -591,6 +591,9 @@ struct pipe_blit_info boolean scissor_enable; struct pipe_scissor_state scissor; + + boolean render_condition_enable; /**< whether to leave current render + condition enabled */ };