mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 02:10:11 +01:00
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:
parent
e8fd60e789
commit
43f74ac67c
1 changed files with 3 additions and 3 deletions
|
|
@ -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)
|
||||
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue