diff options
author | Roland Scheidegger <[email protected]> | 2009-03-27 21:59:33 +0100 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2009-03-28 02:03:45 +0100 |
commit | bb386a1ecae6d7f805af44df463b0e4d661eef85 (patch) | |
tree | d5e67b93a63b949b913da9df993d696ef7366ef4 /src/mesa/main/texformat.h | |
parent | 7d00ba195c4d8f58eec8e2ab553225a7e17ad656 (diff) |
mesa: add _rev signed rgba texture format
Diffstat (limited to 'src/mesa/main/texformat.h')
-rw-r--r-- | src/mesa/main/texformat.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/main/texformat.h b/src/mesa/main/texformat.h index 3a08339adfd..5aa1d756cbc 100644 --- a/src/mesa/main/texformat.h +++ b/src/mesa/main/texformat.h @@ -169,7 +169,8 @@ enum _format { */ /*@{*/ MESA_FORMAT_DUDV8, - MESA_FORMAT_SIGNED_RGBA8888 + MESA_FORMAT_SIGNED_RGBA8888, + MESA_FORMAT_SIGNED_RGBA8888_REV /*@}*/ }; @@ -221,6 +222,7 @@ extern const struct gl_texture_format _mesa_texformat_intensity_float16; /*@{*/ extern const struct gl_texture_format _mesa_texformat_dudv8; extern const struct gl_texture_format _mesa_texformat_signed_rgba8888; +extern const struct gl_texture_format _mesa_texformat_signed_rgba8888_rev; /*@}*/ /** \name Assorted hardware-friendly formats */ |