From: Søren Sandmann Pedersen Date: Sat, 28 Aug 2010 06:40:16 +0000 (-0400) Subject: Enable bits_image_fetch_bilinear_affine_normal_a8r8g8b8 X-Git-Tag: pixman-0.19.4~18 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c59584cb862ef8774a2ef1eabb87fef18506d10f;p=platform%2Fupstream%2Fpixman.git Enable bits_image_fetch_bilinear_affine_normal_a8r8g8b8 --- diff --git a/pixman/pixman-bits-image.c b/pixman/pixman-bits-image.c index 1b6b84d..0f33421 100644 --- a/pixman/pixman-bits-image.c +++ b/pixman/pixman-bits-image.c @@ -949,8 +949,8 @@ convert_r5g6b5 (const uint8_t *row, int x) MAKE_BILINEAR_FETCHER (pad_a8r8g8b8, a8r8g8b8, PIXMAN_REPEAT_PAD); MAKE_BILINEAR_FETCHER (none_a8r8g8b8, a8r8g8b8, PIXMAN_REPEAT_NONE); MAKE_BILINEAR_FETCHER (reflect_a8r8g8b8, a8r8g8b8, PIXMAN_REPEAT_REFLECT); -#if 0 MAKE_BILINEAR_FETCHER (normal_a8r8g8b8, a8r8g8b8, PIXMAN_REPEAT_NORMAL); +#if 0 MAKE_BILINEAR_FETCHER (pad_x8r8g8b8, x8r8g8b8, PIXMAN_REPEAT_PAD); MAKE_BILINEAR_FETCHER (none_x8r8g8b8, x8r8g8b8, PIXMAN_REPEAT_NONE); MAKE_BILINEAR_FETCHER (reflect_x8r8g8b8, x8r8g8b8, PIXMAN_REPEAT_REFLECT); @@ -1187,8 +1187,8 @@ static const fetcher_info_t fetcher_info[] = BILINEAR_AFFINE_FAST_PATH (pad_a8r8g8b8, a8r8g8b8, PAD) BILINEAR_AFFINE_FAST_PATH (none_a8r8g8b8, a8r8g8b8, NONE) BILINEAR_AFFINE_FAST_PATH (reflect_a8r8g8b8, a8r8g8b8, REFLECT) -#if 0 BILINEAR_AFFINE_FAST_PATH (normal_a8r8g8b8, a8r8g8b8, NORMAL) +#if 0 BILINEAR_AFFINE_FAST_PATH (pad_x8r8g8b8, x8r8g8b8, PAD) BILINEAR_AFFINE_FAST_PATH (none_x8r8g8b8, x8r8g8b8, NONE) BILINEAR_AFFINE_FAST_PATH (reflect_x8r8g8b8, x8r8g8b8, REFLECT)