diff options
author | Mike Blumenkrantz <[email protected]> | 2019-07-03 12:14:54 -0400 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2019-07-31 09:50:06 -0700 |
commit | 338a29b08fe69aa91ad0318d54da1670f40307f0 (patch) | |
tree | 063489668fcc5db00c74b78e54cf5ff5fc73345e /src/gallium/include/pipe/p_format.h | |
parent | 7f75b2b5af0944d060cff8ee66eb138ba937d3bd (diff) |
gallium: add AYUV and XYUV formats
this only adds the PIPE_FORMAT members, not any direct handling for them
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/gallium/include/pipe/p_format.h')
-rw-r--r-- | src/gallium/include/pipe/p_format.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/include/pipe/p_format.h b/src/gallium/include/pipe/p_format.h index 42908e9a720..973442e608f 100644 --- a/src/gallium/include/pipe/p_format.h +++ b/src/gallium/include/pipe/p_format.h @@ -409,6 +409,9 @@ enum pipe_format { PIPE_FORMAT_Z24_UNORM_S8_UINT_AS_R8G8B8A8 = 320, + PIPE_FORMAT_AYUV = 321, + PIPE_FORMAT_XYUV = 322, + PIPE_FORMAT_COUNT }; |