diff options
author | Nanley Chery <[email protected]> | 2015-08-07 14:36:23 -0700 |
---|---|---|
committer | Nanley Chery <[email protected]> | 2015-08-19 16:39:41 -0700 |
commit | 0872b042b13388bc870a3acf167a6ce692b734dd (patch) | |
tree | fac69c5f0b2c77aa8f66f49b4f3d31f00cd97396 /src/mesa/main/formats.c | |
parent | 2438e2fe326d7cb9f9d003f6edf77821e41ef22c (diff) |
mesa/formats: add more MESA_FORMAT_LAYOUTs
Add the classes of compressed formats as layouts. This allows the detection
of compressed formats belonging to a certain category of compressed formats.
v2. simplify layout name construction (Ilia).
Reviewed-by: Chad Versace <[email protected]>
Signed-off-by: Nanley Chery <[email protected]>
Diffstat (limited to 'src/mesa/main/formats.c')
-rw-r--r-- | src/mesa/main/formats.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mesa/main/formats.c b/src/mesa/main/formats.c index d7b2bae59e7..8c7e6adc323 100644 --- a/src/mesa/main/formats.c +++ b/src/mesa/main/formats.c @@ -188,6 +188,12 @@ _mesa_get_format_max_bits(mesa_format format) * The return value will be one of: * MESA_FORMAT_LAYOUT_ARRAY * MESA_FORMAT_LAYOUT_PACKED + * MESA_FORMAT_LAYOUT_S3TC + * MESA_FORMAT_LAYOUT_RGTC + * MESA_FORMAT_LAYOUT_FXT1 + * MESA_FORMAT_LAYOUT_ETC1 + * MESA_FORMAT_LAYOUT_ETC2 + * MESA_FORMAT_LAYOUT_BPTC * MESA_FORMAT_LAYOUT_OTHER */ extern enum mesa_format_layout |