gallium: fix PIPE_BIND_QUERY_BUFFER - PIPE_BIND_SCANOUT overlap

Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Reviewed-by: Roland Scheidegger <sroland@vmware.com>
This commit is contained in:
Marek Olšák 2016-03-01 02:01:59 +01:00
parent e8fd60e789
commit 43f74ac67c
1 changed files with 3 additions and 3 deletions

View File

@ -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)
/**