diff options
author | Søren Sandmann Pedersen <ssp@redhat.com> | 2010-08-28 02:41:20 -0400 |
---|---|---|
committer | Søren Sandmann Pedersen <ssp@redhat.com> | 2010-09-16 10:44:27 -0400 |
commit | 4f0f73137cac3b997c383657295397a706ff9074 (patch) | |
tree | eefd8e18cc90cb94ba44306320303ca1148070c3 | |
parent | 838d926066a446e3c92162a455783c16662ac362 (diff) |
Enable bits_image_fetch_bilinear_affine_normal_x8r8g8b8
-rw-r--r-- | pixman/pixman-bits-image.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pixman/pixman-bits-image.c b/pixman/pixman-bits-image.c index 619726e7..47e16dfb 100644 --- a/pixman/pixman-bits-image.c +++ b/pixman/pixman-bits-image.c @@ -953,8 +953,8 @@ MAKE_BILINEAR_FETCHER (normal_a8r8g8b8, a8r8g8b8, PIXMAN_REPEAT_NORMAL); 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); -#if 0 MAKE_BILINEAR_FETCHER (normal_x8r8g8b8, x8r8g8b8, PIXMAN_REPEAT_NORMAL); +#if 0 MAKE_BILINEAR_FETCHER (pad_a8, a8, PIXMAN_REPEAT_PAD); MAKE_BILINEAR_FETCHER (none_a8, a8, PIXMAN_REPEAT_NONE); MAKE_BILINEAR_FETCHER (reflect_a8, a8, PIXMAN_REPEAT_REFLECT); @@ -1191,8 +1191,8 @@ static const fetcher_info_t fetcher_info[] = BILINEAR_AFFINE_FAST_PATH (pad_x8r8g8b8, x8r8g8b8, PAD) BILINEAR_AFFINE_FAST_PATH (none_x8r8g8b8, x8r8g8b8, NONE) BILINEAR_AFFINE_FAST_PATH (reflect_x8r8g8b8, x8r8g8b8, REFLECT) -#if 0 BILINEAR_AFFINE_FAST_PATH (normal_x8r8g8b8, x8r8g8b8, NORMAL) +#if 0 BILINEAR_AFFINE_FAST_PATH (pad_a8, a8, PAD) BILINEAR_AFFINE_FAST_PATH (none_a8, a8, NONE) BILINEAR_AFFINE_FAST_PATH (reflect_a8, a8, REFLECT) |