diff options
author | Siarhei Siamashka <siarhei.siamashka@nokia.com> | 2009-11-04 17:14:14 +0200 |
---|---|---|
committer | Siarhei Siamashka <siarhei.siamashka@nokia.com> | 2009-11-11 18:12:58 +0200 |
commit | abefe68ae2a422fecf315f17430c0cda5561be66 (patch) | |
tree | 6e759f5ffd90da3985a8b9c8a3a5917e83d6f2c7 | |
parent | 635f389ff477a0afe82c6038a835e262d5034d99 (diff) |
ARM: enabled 'neon_composite_add_8000_8000' fast path
-rw-r--r-- | pixman/pixman-arm-neon.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pixman/pixman-arm-neon.c b/pixman/pixman-arm-neon.c index 7ba62a23..94317a49 100644 --- a/pixman/pixman-arm-neon.c +++ b/pixman/pixman-arm-neon.c @@ -321,6 +321,7 @@ static const pixman_fast_path_t arm_neon_fast_path_array[] = { PIXMAN_OP_OVER, PIXMAN_a8b8g8r8, PIXMAN_null, PIXMAN_x8b8g8r8, neon_composite_over_8888_8888, 0 }, { PIXMAN_OP_ADD, PIXMAN_solid, PIXMAN_a8, PIXMAN_a8, neon_composite_add_n_8_8, 0 }, { PIXMAN_OP_ADD, PIXMAN_a8, PIXMAN_a8, PIXMAN_a8, neon_composite_add_8_8_8, 0 }, + { PIXMAN_OP_ADD, PIXMAN_a8, PIXMAN_null, PIXMAN_a8, neon_composite_add_8000_8000, 0 }, { PIXMAN_OP_NONE }, }; |