diff options
author | Marek Olšák <maraeo@gmail.com> | 2011-03-07 02:21:58 +0100 |
---|---|---|
committer | Marek Olšák <maraeo@gmail.com> | 2011-03-08 23:52:37 +0100 |
commit | 23f92c20d721aa373d91a949586fd93a92d9f275 (patch) | |
tree | b9b362dd13ad463e87a7e8e2af0457550105dd7e /src/gallium/include/pipe | |
parent | 69f16accd0aa3b8d414092a5e52ccc99649da01a (diff) |
gallium/util: add LATC support
Again, a lot of code is shared with RGTC.
The layout is UTIL_FORMAT_LAYOUT_RGTC, because LATC is just swizzled RGTC.
Diffstat (limited to 'src/gallium/include/pipe')
-rw-r--r-- | src/gallium/include/pipe/p_format.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gallium/include/pipe/p_format.h b/src/gallium/include/pipe/p_format.h index c8904d4f16..d53af598e7 100644 --- a/src/gallium/include/pipe/p_format.h +++ b/src/gallium/include/pipe/p_format.h @@ -206,6 +206,11 @@ enum pipe_format { PIPE_FORMAT_A16_UNORM = 141, PIPE_FORMAT_I16_UNORM = 142, + PIPE_FORMAT_LATC1_UNORM = 143, + PIPE_FORMAT_LATC1_SNORM = 144, + PIPE_FORMAT_LATC2_UNORM = 145, + PIPE_FORMAT_LATC2_SNORM = 146, + PIPE_FORMAT_COUNT }; |