diff options
author | Siarhei Siamashka <siarhei.siamashka@nokia.com> | 2009-11-04 17:08:09 +0200 |
---|---|---|
committer | Siarhei Siamashka <siarhei.siamashka@nokia.com> | 2009-11-11 18:12:56 +0200 |
commit | e89b4f8105beaa27b6098a5dc7dfec62879ebd1d (patch) | |
tree | dd825409639c9328b4e75108c7b5621f2c948f98 | |
parent | 2d54ed46fb7428aa1d9f114450554fc33acff2c4 (diff) |
ARM: enabled 'neon_composite_src_8888_0565' fast path
-rw-r--r-- | pixman/pixman-arm-neon.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pixman/pixman-arm-neon.c b/pixman/pixman-arm-neon.c index 7ff8fe1f..612967a2 100644 --- a/pixman/pixman-arm-neon.c +++ b/pixman/pixman-arm-neon.c @@ -296,6 +296,10 @@ static const pixman_fast_path_t arm_neon_fast_path_array[] = { { PIXMAN_OP_SRC, PIXMAN_r5g6b5, PIXMAN_null, PIXMAN_r5g6b5, neon_composite_src_0565_0565, 0 }, { PIXMAN_OP_SRC, PIXMAN_b5g6r5, PIXMAN_null, PIXMAN_b5g6r5, neon_composite_src_0565_0565, 0 }, + { PIXMAN_OP_SRC, PIXMAN_a8r8g8b8, PIXMAN_null, PIXMAN_r5g6b5, neon_composite_src_8888_0565, 0 }, + { PIXMAN_OP_SRC, PIXMAN_x8r8g8b8, PIXMAN_null, PIXMAN_r5g6b5, neon_composite_src_8888_0565, 0 }, + { PIXMAN_OP_SRC, PIXMAN_a8b8g8r8, PIXMAN_null, PIXMAN_b5g6r5, neon_composite_src_8888_0565, 0 }, + { PIXMAN_OP_SRC, PIXMAN_x8b8g8r8, PIXMAN_null, PIXMAN_b5g6r5, neon_composite_src_8888_0565, 0 }, { PIXMAN_OP_NONE }, }; |