diff options
author | Icecream95 <[email protected]> | 2020-03-24 13:25:19 +1300 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-03-31 00:48:58 +0000 |
commit | bd87bcb8ac9039dcae675cef977c08eadb75c438 (patch) | |
tree | c8a0ef9ca85f497877e6eb57ae5791653d096800 /src/panfrost/include | |
parent | 49a81a431e0b5aef53da2319b327da717603fbc6 (diff) |
panfrost: Add support for R3G3B2
Tested with texenv from mesa-demos.
Reviewed-by: Alyssa Rosenzweig <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4292>
Diffstat (limited to 'src/panfrost/include')
-rw-r--r-- | src/panfrost/include/panfrost-job.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/panfrost/include/panfrost-job.h b/src/panfrost/include/panfrost-job.h index 355eca9491a..a409f15147e 100644 --- a/src/panfrost/include/panfrost-job.h +++ b/src/panfrost/include/panfrost-job.h @@ -294,6 +294,8 @@ enum mali_format { MALI_RGB10_A2UI = MALI_FORMAT_SPECIAL | 0x7, MALI_RGB10_A2I = MALI_FORMAT_SPECIAL | 0x9, + MALI_RGB332_UNORM = MALI_FORMAT_SPECIAL | 0xb, + /* YUV formats */ MALI_NV12 = MALI_FORMAT_SPECIAL | 0xc, |