summaryrefslogtreecommitdiff
path: root/render
diff options
context:
space:
mode:
authorEric Anholt <anholt@FreeBSD.org>2006-06-21 09:34:55 -0700
committerEric Anholt <anholt@FreeBSD.org>2006-06-23 13:56:20 -0700
commitc7ac485a59709572307b9a4a9abacc52c7021b65 (patch)
tree979dbc66d9dc1bab11bd044bd9475a81c2f98df3 /render
parent2cf1f39ca974c81a2f52d2f7509aa3d098a87176 (diff)
Remove the default case from fbcompose.c switches which should cover all cases.
Instead, stick the NULL return default case afterwards, so that the compiler can warn us when we've got unimplemented cases. Removes some unimplemented and unused 8bpp, depth 4 picture format names.
Diffstat (limited to 'render')
-rw-r--r--render/picture.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/render/picture.h b/render/picture.h
index e7d86ac39..8184c02c0 100644
--- a/render/picture.h
+++ b/render/picture.h
@@ -102,10 +102,6 @@ typedef enum _PictFormatShort {
PICT_g8 = PICT_FORMAT(8,PICT_TYPE_GRAY,0,0,0,0),
PICT_x4a4 = PICT_FORMAT(8,PICT_TYPE_A,4,0,0,0),
- PICT_x4r1g2b1 = PICT_FORMAT(8,PICT_TYPE_ARGB,0,1,2,1),
- PICT_x4b1g2r1 = PICT_FORMAT(8,PICT_TYPE_ABGR,0,1,2,1),
- PICT_x4a1r1g1b1 = PICT_FORMAT(8,PICT_TYPE_ARGB,1,1,1,1),
- PICT_x4a1b1g1r1 = PICT_FORMAT(8,PICT_TYPE_ABGR,1,1,1,1),
PICT_x4c4 = PICT_FORMAT(8,PICT_TYPE_COLOR,0,0,0,0),
PICT_x4g4 = PICT_FORMAT(8,PICT_TYPE_GRAY,0,0,0,0),