diff options
author | Dave Airlie <[email protected]> | 2011-11-27 16:21:02 +0000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2011-11-28 09:40:53 +0000 |
commit | f449be660e70aac2aefd2ce84581e137de25520b (patch) | |
tree | a538a4e7992180705f01250424eead00452bdc33 /src/mesa/main/formats.h | |
parent | 47e2e367170edec022481f1487cd980e00ef3203 (diff) |
mesa/format: add mesa MESA_FORMAT_ARGB2101010_UINT support.
This format is used in the ARB_texture_rgb10_a2ui spec.
It adds core mesa support, texformat + texstore support, format_unpack
and fbobject.c (all patches from list merged + fixed up).
also fixes some whitespace issues.
Parts were:
Reviewed-by: Eric Anholt <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/mesa/main/formats.h')
-rw-r--r-- | src/mesa/main/formats.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/main/formats.h b/src/mesa/main/formats.h index 5f601862b32..86990929623 100644 --- a/src/mesa/main/formats.h +++ b/src/mesa/main/formats.h @@ -265,6 +265,8 @@ typedef enum MESA_FORMAT_Z32_FLOAT, MESA_FORMAT_Z32_FLOAT_X24S8, + MESA_FORMAT_ARGB2101010_UINT, + MESA_FORMAT_COUNT } gl_format; |