[Mesa-dev] [PATCH 1/3] gallium: add bit to pipe_blit_info to leave current query enabled
Ilia Mirkin
imirkin at alum.mit.edu
Sat May 10 10:26:45 PDT 2014
On Sat, May 10, 2014 at 1:25 PM, Ilia Mirkin <imirkin at alum.mit.edu> wrote:
> 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 <imirkin at alum.mit.edu>
> Cc: "10.2" <mesa-stable at lists.freedesktop.org>
Actually -- not sure if it's worth backporting this to 10.1 as well.
Opinions appreciated.
> ---
> src/gallium/include/pipe/p_state.h | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/src/gallium/include/pipe/p_state.h b/src/gallium/include/pipe/p_state.h
> index a41c53d..d495159 100644
> --- a/src/gallium/include/pipe/p_state.h
> +++ b/src/gallium/include/pipe/p_state.h
> @@ -591,6 +591,8 @@ struct pipe_blit_info
>
> boolean scissor_enable;
> struct pipe_scissor_state scissor;
> +
> + boolean query_enable; /**< whether to leave current query enabled */
> };
>
>
> --
> 1.8.5.5
>
More information about the mesa-dev
mailing list