OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2015 Google Inc. | 2 * Copyright 2015 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #include "SkOpts.h" | 8 #include "SkOpts.h" |
9 | 9 |
10 #define SK_OPTS_NS sk_neon | 10 #define SK_OPTS_NS sk_neon |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 | 45 |
46 color_cube_filter_span = sk_neon::color_cube_filter_span; | 46 color_cube_filter_span = sk_neon::color_cube_filter_span; |
47 | 47 |
48 matrix_translate = sk_neon::matrix_translate; | 48 matrix_translate = sk_neon::matrix_translate; |
49 matrix_scale_translate = sk_neon::matrix_scale_translate; | 49 matrix_scale_translate = sk_neon::matrix_scale_translate; |
50 matrix_affine = sk_neon::matrix_affine; | 50 matrix_affine = sk_neon::matrix_affine; |
51 | 51 |
52 RGBA_to_BGRA = sk_neon::RGBA_to_BGRA; | 52 RGBA_to_BGRA = sk_neon::RGBA_to_BGRA; |
53 RGBA_to_rgbA = sk_neon::RGBA_to_rgbA; | 53 RGBA_to_rgbA = sk_neon::RGBA_to_rgbA; |
54 RGBA_to_bgrA = sk_neon::RGBA_to_bgrA; | 54 RGBA_to_bgrA = sk_neon::RGBA_to_bgrA; |
| 55 RGB_to_RGB1 = sk_neon::RGB_to_RGB1; |
| 56 RGB_to_BGR1 = sk_neon::RGB_to_BGR1; |
55 } | 57 } |
56 } | 58 } |
OLD | NEW |