From 3e700366ef82f0ecd28014cf873ffd292ad9cdc5 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Tue, 25 Mar 2008 19:43:40 -0700 Subject: [PATCH] Eliminate duplicate case values that were breaking the compilation. --- pixman/pixman-utils.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pixman/pixman-utils.c b/pixman/pixman-utils.c index d4e4c77..9cba793 100644 --- 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: -- 2.7.4