diff options
author | Chia-I Wu <[email protected]> | 2011-11-29 00:10:37 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2011-12-02 08:43:46 +0800 |
commit | 5c31eb78e5fa4c4cfcc82df3c9a2c34fcd4b402c (patch) | |
tree | 3b4b9ec72057762ab379b2a836173972edce8d2a /src/gallium/include | |
parent | d4a38e86d4b4d66cca20ee63222f940cb73fa709 (diff) |
gallium: add PIPE_FORMAT_ETC1_RGB8
The format is defined by GL_OES_compressed_ETC1_RGB8_texture.
Reviewed-by: Brian Paul <[email protected]>
Reviewed-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'src/gallium/include')
-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 f229a5ad545..c05629b616e 100644 --- a/src/gallium/include/pipe/p_format.h +++ b/src/gallium/include/pipe/p_format.h @@ -312,6 +312,9 @@ enum pipe_format { PIPE_FORMAT_L32A32_SINT = 224, PIPE_FORMAT_B10G10R10A2_UINT = 225, + + PIPE_FORMAT_ETC1_RGB8 = 226, + PIPE_FORMAT_COUNT }; |