diff options
author | Francisco Jerez <[email protected]> | 2013-11-22 19:49:29 -0800 |
---|---|---|
committer | Francisco Jerez <[email protected]> | 2014-01-15 16:42:07 +0100 |
commit | 87942749a327725014b0d160b3e48d6d83723ac2 (patch) | |
tree | b946728e01d45243a7f86fa1cd2e872d5d451675 /src/mesa/main/formats.h | |
parent | 16070716bca77da0d33ac2b5ae9f83c10993d912 (diff) |
mesa: Add MESA_FORMAT_ABGR2101010.
Including pack/unpack and texstore code. This texture format is a
requirement for ARB_shader_image_load_store.
Acked-by: Chris Forbes <[email protected]>
Reviewed-by: Paul Berry <[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 0c91aeaac86..f96c18aa4f3 100644 --- a/src/mesa/main/formats.h +++ b/src/mesa/main/formats.h @@ -304,6 +304,8 @@ typedef enum MESA_FORMAT_XBGR32323232_UINT, /* ... */ MESA_FORMAT_XBGR32323232_SINT, /* ... */ + MESA_FORMAT_ABGR2101010, + MESA_FORMAT_COUNT } gl_format; |