From 23f92c20d721aa373d91a949586fd93a92d9f275 Mon Sep 17 00:00:00 2001 From: Marek Olšák Date: Mon, 7 Mar 2011 02:21:58 +0100 Subject: 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. --- src/gallium/include/pipe/p_format.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/gallium/include') 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 }; -- cgit v1.2.3