diff options
author | Siarhei Siamashka <siarhei.siamashka@nokia.com> | 2009-11-04 17:11:32 +0200 |
---|---|---|
committer | Siarhei Siamashka <siarhei.siamashka@nokia.com> | 2009-11-11 18:12:57 +0200 |
commit | f449364849b2cc75a48cc3b35d2a373d38b71c09 (patch) | |
tree | 5465d334d0945b3904cc0d4c9320aed7350f0a37 | |
parent | 2dfbf6c4a520da4647bb480a124dfe5cbece225b (diff) |
ARM: enabled 'neon_composite_over_8888_0565' fast path
-rw-r--r-- | pixman/pixman-arm-neon.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pixman/pixman-arm-neon.c b/pixman/pixman-arm-neon.c index 6c3cce3b..08d14219 100644 --- a/pixman/pixman-arm-neon.c +++ b/pixman/pixman-arm-neon.c @@ -313,6 +313,8 @@ static const pixman_fast_path_t arm_neon_fast_path_array[] = { PIXMAN_OP_OVER, PIXMAN_solid, PIXMAN_a8, PIXMAN_x8b8g8r8, neon_composite_over_n_8_8888, 0 }, { PIXMAN_OP_OVER, PIXMAN_a8r8g8b8, PIXMAN_a8, PIXMAN_a8r8g8b8, neon_composite_over_8888_n_8888, NEED_SOLID_MASK }, { PIXMAN_OP_OVER, PIXMAN_a8r8g8b8, PIXMAN_a8, PIXMAN_x8r8g8b8, neon_composite_over_8888_n_8888, NEED_SOLID_MASK }, + { PIXMAN_OP_OVER, PIXMAN_a8r8g8b8, PIXMAN_null, PIXMAN_r5g6b5, neon_composite_over_8888_0565, 0 }, + { PIXMAN_OP_OVER, PIXMAN_a8b8g8r8, PIXMAN_null, PIXMAN_b5g6r5, neon_composite_over_8888_0565, 0 }, { PIXMAN_OP_NONE }, }; |