mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 13:58:04 +02:00
gallium: convert PIPE_QUIRK_TEXTURE_BORDER_COLOR_SWIZZLE to enum
Reviewed-by: Marek Olšák <marek.olsak@amd.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/17687>
This commit is contained in:
parent
1341d7aa84
commit
03b893acb3
1 changed files with 5 additions and 3 deletions
|
|
@ -1025,9 +1025,11 @@ enum pipe_texture_transfer_mode {
|
|||
#define PIPE_CONTEXT_PRIORITY_MEDIUM (1 << 1)
|
||||
#define PIPE_CONTEXT_PRIORITY_HIGH (1 << 2)
|
||||
|
||||
#define PIPE_QUIRK_TEXTURE_BORDER_COLOR_SWIZZLE_NV50 (1 << 0)
|
||||
#define PIPE_QUIRK_TEXTURE_BORDER_COLOR_SWIZZLE_R600 (1 << 1)
|
||||
#define PIPE_QUIRK_TEXTURE_BORDER_COLOR_SWIZZLE_FREEDRENO (1 << 2)
|
||||
enum pipe_quirk_texture_border_color_swizzle {
|
||||
PIPE_QUIRK_TEXTURE_BORDER_COLOR_SWIZZLE_NV50 = (1 << 0),
|
||||
PIPE_QUIRK_TEXTURE_BORDER_COLOR_SWIZZLE_R600 = (1 << 1),
|
||||
PIPE_QUIRK_TEXTURE_BORDER_COLOR_SWIZZLE_FREEDRENO = (1 << 2),
|
||||
};
|
||||
|
||||
enum pipe_endian
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue