| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2014 ARM Ltd. | 2 * Copyright 2014 ARM Ltd. |
| 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 "SkUtils.h" | 8 #include "SkUtils.h" |
| 9 #include "SkUtilsArm.h" | 9 #include "SkUtilsArm.h" |
| 10 | 10 |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 return memset32_neon; | 44 return memset32_neon; |
| 45 } else { | 45 } else { |
| 46 return arm_memset32; | 46 return arm_memset32; |
| 47 } | 47 } |
| 48 #elif SK_ARM_NEON_IS_ALWAYS | 48 #elif SK_ARM_NEON_IS_ALWAYS |
| 49 return memset32_neon; | 49 return memset32_neon; |
| 50 #else | 50 #else |
| 51 return arm_memset32; | 51 return arm_memset32; |
| 52 #endif | 52 #endif |
| 53 } | 53 } |
| 54 |
| 55 SkMemcpy32Proc SkMemcpy32GetPlatformProc() { |
| 56 return NULL; |
| 57 } |
| OLD | NEW |