diff options
author | Jonathan Marek <[email protected]> | 2019-02-05 10:59:42 -0500 |
---|---|---|
committer | Rob Clark <[email protected]> | 2019-04-23 17:11:56 +0000 |
commit | ea254fcd3c1050d691b43f0e2c5570e32d0783dd (patch) | |
tree | 6e9201c01e8c939896460f3e06a41834159a4802 /src/gallium/include/pipe/p_format.h | |
parent | 73c1d7e8c9cda09165546d836048e4a2cef89e0d (diff) |
gallium: add ATC format support
Signed-off-by: Ilia Mirkin <[email protected]>
Signed-off-by: Jonathan Marek <[email protected]>
Reviewed-by: Roland Scheidegger <[email protected]>
Diffstat (limited to 'src/gallium/include/pipe/p_format.h')
-rw-r--r-- | src/gallium/include/pipe/p_format.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gallium/include/pipe/p_format.h b/src/gallium/include/pipe/p_format.h index c81fc67b8e8..a4401658f5f 100644 --- a/src/gallium/include/pipe/p_format.h +++ b/src/gallium/include/pipe/p_format.h @@ -403,6 +403,10 @@ enum pipe_format { PIPE_FORMAT_A8B8G8R8_SINT = 315, PIPE_FORMAT_X8B8G8R8_SINT = 316, + PIPE_FORMAT_ATC_RGB = 317, + PIPE_FORMAT_ATC_RGBA_EXPLICIT = 318, + PIPE_FORMAT_ATC_RGBA_INTERPOLATED = 319, + PIPE_FORMAT_COUNT }; |