diff options
author | Siarhei Siamashka <siarhei.siamashka@nokia.com> | 2009-11-04 17:13:31 +0200 |
---|---|---|
committer | Siarhei Siamashka <siarhei.siamashka@nokia.com> | 2009-11-11 18:12:58 +0200 |
commit | 635f389ff477a0afe82c6038a835e262d5034d99 (patch) | |
tree | a61231a90f2580de636dc606f4df8ce357515062 | |
parent | 7e1bfed6767774a43c288ab780f62a20eccff805 (diff) |
ARM: enabled 'neon_composite_add_8_8_8' 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 46212dd7..7ba62a23 100644 --- a/pixman/pixman-arm-neon.c +++ b/pixman/pixman-arm-neon.c @@ -320,6 +320,7 @@ static const pixman_fast_path_t arm_neon_fast_path_array[] = { PIXMAN_OP_OVER, PIXMAN_a8b8g8r8, PIXMAN_null, PIXMAN_a8b8g8r8, neon_composite_over_8888_8888, 0 }, { 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_NONE }, }; |