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_sse41 | 10 #define SK_OPTS_NS sk_sse41 |
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
225 srcover_srgb_srgb = sk_sse41::srcover_srgb_srgb; | 225 srcover_srgb_srgb = sk_sse41::srcover_srgb_srgb; |
226 | 226 |
227 #ifndef SK_SUPPORT_LEGACY_X86_BLITS | 227 #ifndef SK_SUPPORT_LEGACY_X86_BLITS |
228 blit_row_color32 = sk_sse41_new::blit_row_color32; | 228 blit_row_color32 = sk_sse41_new::blit_row_color32; |
229 blit_mask_d32_a8 = sk_sse41_new::blit_mask_d32_a8; | 229 blit_mask_d32_a8 = sk_sse41_new::blit_mask_d32_a8; |
230 #endif | 230 #endif |
231 blit_row_s32a_opaque = sk_sse41::blit_row_s32a_opaque; | 231 blit_row_s32a_opaque = sk_sse41::blit_row_s32a_opaque; |
232 | 232 |
233 color_xform_RGB1_srgb_to_2dot2 = sk_sse41::color_xform_RGB1_srgb_to_2do
t2; | 233 color_xform_RGB1_srgb_to_2dot2 = sk_sse41::color_xform_RGB1_srgb_to_2do
t2; |
234 color_xform_RGB1_2dot2_to_2dot2 = sk_sse41::color_xform_RGB1_2dot2_to_2d
ot2; | 234 color_xform_RGB1_2dot2_to_2dot2 = sk_sse41::color_xform_RGB1_2dot2_to_2d
ot2; |
| 235 color_xform_RGB1_srgb_to_srgb = sk_sse41::color_xform_RGB1_srgb_to_srg
b; |
| 236 color_xform_RGB1_2dot2_to_srgb = sk_sse41::color_xform_RGB1_2dot2_to_sr
gb; |
235 } | 237 } |
236 } | 238 } |
OLD | NEW |