gallium: fix PIPE_BIND_QUERY_BUFFER - PIPE_BIND_SCANOUT overlap
authorMarek Olšák <marek.olsak@amd.com>
Tue, 1 Mar 2016 01:01:59 +0000 (02:01 +0100)
committerMarek Olšák <marek.olsak@amd.com>
Wed, 2 Mar 2016 14:32:52 +0000 (15:32 +0100)
Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Reviewed-by: Roland Scheidegger <sroland@vmware.com>
src/gallium/include/pipe/p_defines.h

index 010be62e63841887cd090271557168c5e2b5f81f..a91e6e55055d673d5aaaf8b871b93a971aa23cd8 100644 (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)
 
 
 /**