summaryrefslogtreecommitdiffstats
path: root/src/gallium/include
diff options
context:
space:
mode:
authorIlia Mirkin <[email protected]>2014-07-22 19:58:00 -0400
committerIlia Mirkin <[email protected]>2014-08-12 19:21:04 -0400
commit43c038f4a621b081a9f85ab3b1b7f1264e4e2377 (patch)
treebc177d45496db14b976b45e6604a116ad36a3674 /src/gallium/include
parent82903acf5ebe0354fbff9d697a9df7731078ed11 (diff)
gallium: add basic support for BPTC formats
Signed-off-by: Ilia Mirkin <[email protected]> Reviewed-by: Marek Olšák <[email protected]> Reviewed-by: Brian Paul <[email protected]> Reviewed-by: Roland Scheidegger <[email protected]>
Diffstat (limited to 'src/gallium/include')
-rw-r--r--src/gallium/include/pipe/p_format.h5
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 a7fdcd0f4a7..1b048840ff8 100644
--- a/src/gallium/include/pipe/p_format.h
+++ b/src/gallium/include/pipe/p_format.h
@@ -344,6 +344,11 @@ enum pipe_format {
PIPE_FORMAT_B5G6R5_SRGB = 254,
+ PIPE_FORMAT_BPTC_RGBA_UNORM = 255,
+ PIPE_FORMAT_BPTC_SRGBA = 256,
+ PIPE_FORMAT_BPTC_RGB_FLOAT = 257,
+ PIPE_FORMAT_BPTC_RGB_UFLOAT = 258,
+
PIPE_FORMAT_COUNT
};