projects
/
platform
/
upstream
/
pixman.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7fa668f
)
Eliminate duplicate case values that were breaking the compilation.
author
Carl Worth
<cworth@cworth.org>
Wed, 26 Mar 2008 02:43:40 +0000
(19:43 -0700)
committer
Carl Worth
<cworth@cworth.org>
Wed, 26 Mar 2008 02:43:40 +0000
(19:43 -0700)
pixman/pixman-utils.c
patch
|
blob
|
history
diff --git
a/pixman/pixman-utils.c
b/pixman/pixman-utils.c
index d4e4c7726944a494582b8fa3d6195a124de9cb85..9cba7937745755939c11a5e805bed9321868c65e 100644
(file)
--- a/
pixman/pixman-utils.c
+++ b/
pixman/pixman-utils.c
@@
-450,8
+450,12
@@
pixman_format_supported_destination (pixman_format_code_t format)
case PIXMAN_c8:
case PIXMAN_g8:
case PIXMAN_x4a4:
+ /* Collides with PIXMAN_c8
case PIXMAN_x4c4:
+ */
+ /* Collides with PIXMAN_g8
case PIXMAN_x4g4:
+ */
/* 4bpp formats */
case PIXMAN_a4:
case PIXMAN_r1g2b1:
@@
-514,8
+518,12
@@
pixman_format_supported_source (pixman_format_code_t format)
case PIXMAN_c8:
case PIXMAN_g8:
case PIXMAN_x4a4:
+ /* Collides with PIXMAN_c8
case PIXMAN_x4c4:
+ */
+ /* Collides with PIXMAN_g8
case PIXMAN_x4g4:
+ */
/* 4bpp formats */
case PIXMAN_a4:
case PIXMAN_r1g2b1: