[Mesa-dev] [PATCH] gallium: fix PIPE_BIND_QUERY_BUFFER - PIPE_BIND_SCANOUT overlap
Roland Scheidegger
sroland at vmware.com
Tue Mar 1 22:11:58 UTC 2016
Am 01.03.2016 um 22:26 schrieb Marek Olšák:
> From: Marek Olšák <marek.olsak at amd.com>
>
> ---
> src/gallium/include/pipe/p_defines.h | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/src/gallium/include/pipe/p_defines.h b/src/gallium/include/pipe/p_defines.h
> index 010be62..a91e6e5 100644
> --- a/src/gallium/include/pipe/p_defines.h
> +++ b/src/gallium/include/pipe/p_defines.h
> @@ -404,9 +404,9 @@ enum pipe_flush_flags
> * The third flag has been added to be able to force textures to be created
> * in linear mode (no tiling).
> */
> -#define PIPE_BIND_SCANOUT (1 << 18) /* */
> -#define PIPE_BIND_SHARED (1 << 19) /* get_texture_handle ??? */
> -#define PIPE_BIND_LINEAR (1 << 20)
> +#define PIPE_BIND_SCANOUT (1 << 19) /* */
> +#define PIPE_BIND_SHARED (1 << 20) /* get_texture_handle ??? */
> +#define PIPE_BIND_LINEAR (1 << 21)
>
>
> /**
>
Reviewed-by: Roland Scheidegger <sroland at vmware.com>
More information about the mesa-dev
mailing list