summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary
diff options
context:
space:
mode:
authorChristian König <deathsimple@vodafone.de>2011-09-01 18:36:21 +0200
committerChristian König <deathsimple@vodafone.de>2011-09-01 19:20:46 +0200
commit23f01fd31c11720caaff74a68bcde60bfbd23a6b (patch)
tree4faed840ac66715b5d76cbbf7944fbfc19a78096 /src/gallium/auxiliary
parent8612235bbfbaafbe364f62e9355ffd683128e04b (diff)
downloadexternal_mesa3d-23f01fd31c11720caaff74a68bcde60bfbd23a6b.zip
external_mesa3d-23f01fd31c11720caaff74a68bcde60bfbd23a6b.tar.gz
external_mesa3d-23f01fd31c11720caaff74a68bcde60bfbd23a6b.tar.bz2
gallium: add R8A8 and A8R8 UNORM formats
They are mostly used for menu overlay in video decoding. Signed-off-by: Christian König <deathsimple@vodafone.de>
Diffstat (limited to 'src/gallium/auxiliary')
-rw-r--r--src/gallium/auxiliary/util/u_format.csv2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/u_format.csv b/src/gallium/auxiliary/util/u_format.csv
index d94d635..6c008cc 100644
--- a/src/gallium/auxiliary/util/u_format.csv
+++ b/src/gallium/auxiliary/util/u_format.csv
@@ -269,3 +269,5 @@ PIPE_FORMAT_NV21 , other, 1, 1, x8 , x8 , x8 , x8 , xyzw, y
# Usually used to implement IA44 and AI44 formats in video decoding
PIPE_FORMAT_R4A4_UNORM , plain, 1, 1, un4 , un4 , , , y00x, rgb
PIPE_FORMAT_A4R4_UNORM , plain, 1, 1, un4 , un4 , , , x00y, rgb
+PIPE_FORMAT_R8A8_UNORM , plain, 1, 1, un8 , un8 , , , x00y, rgb
+PIPE_FORMAT_A8R8_UNORM , plain, 1, 1, un8 , un8 , , , y00x, rgb