mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-10 12:30:11 +01:00
Fix definitions of PIPE_BIND_VIDEO_DECODE/ENCODE_DPB as they conflict with PIPE_BIND_SCANOUT and PIPE_BIND_SHARED
Fixes: f8145fe691 ("pipe: Add PIPE_BIND_VIDEO_DECODE_DPB/PIPE_BIND_VIDEO_ENCODE_DPB")
Reviewed-by: Jesse Natalie <jenatali@microsoft.com>
Reviewed-by: Karol Herbst <kherbst@redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/31067>
This commit is contained in:
parent
eab5b453cd
commit
fed08a4ac8
1 changed files with 2 additions and 2 deletions
|
|
@ -464,8 +464,6 @@ enum pipe_flush_flags
|
|||
#define PIPE_BIND_COMPUTE_RESOURCE (1 << 16) /* set_compute_resources */
|
||||
#define PIPE_BIND_COMMAND_ARGS_BUFFER (1 << 17) /* pipe_draw_info.indirect */
|
||||
#define PIPE_BIND_QUERY_BUFFER (1 << 18) /* get_query_result_resource */
|
||||
#define PIPE_BIND_VIDEO_DECODE_DPB (1 << 19) /* video engine DPB decode reconstructed picture */
|
||||
#define PIPE_BIND_VIDEO_ENCODE_DPB (1 << 20) /* video engine DPB encode reconstructed picture */
|
||||
|
||||
/**
|
||||
* The first two flags above were previously part of the amorphous
|
||||
|
|
@ -494,6 +492,8 @@ enum pipe_flush_flags
|
|||
#define PIPE_BIND_PRIME_BLIT_DST (1 << 24)
|
||||
#define PIPE_BIND_USE_FRONT_RENDERING (1 << 25) /* Resource may be used for frontbuffer rendering */
|
||||
#define PIPE_BIND_CONST_BW (1 << 26) /* Avoid using a data dependent layout (AFBC, UBWC, etc) */
|
||||
#define PIPE_BIND_VIDEO_DECODE_DPB (1 << 27) /* video engine DPB decode reconstructed picture */
|
||||
#define PIPE_BIND_VIDEO_ENCODE_DPB (1 << 28) /* video engine DPB encode reconstructed picture */
|
||||
|
||||
/**
|
||||
* Flags for the driver about resource behaviour:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue