| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2006 The Android Open Source Project | 2 * Copyright 2006 The Android Open Source Project |
| 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 #ifndef SkTypes_DEFINED | 8 #ifndef SkTypes_DEFINED |
| 9 #define SkTypes_DEFINED | 9 #define SkTypes_DEFINED |
| 10 | 10 |
| 11 // IWYU pragma: begin_exports | 11 // IWYU pragma: begin_exports |
| 12 #include "SkPreConfig.h" | 12 #include "SkPreConfig.h" |
| 13 #include "SkUserConfig.h" | 13 #include "SkUserConfig.h" |
| 14 #include "SkPostConfig.h" | 14 #include "SkPostConfig.h" |
| 15 #include <stddef.h> | 15 #include <stddef.h> |
| 16 #include <stdint.h> | 16 #include <stdint.h> |
| 17 | 17 |
| 18 #ifndef SK_SUPPORT_LEGACY_PATHEFFECT_PTR | |
| 19 #define SK_SUPPORT_LEGACY_PATHEFFECT_PTR | |
| 20 #endif | |
| 21 | |
| 22 #if defined(SK_ARM_HAS_NEON) | 18 #if defined(SK_ARM_HAS_NEON) |
| 23 #include <arm_neon.h> | 19 #include <arm_neon.h> |
| 24 #elif SK_CPU_SSE_LEVEL >= SK_CPU_SSE_LEVEL_SSE2 | 20 #elif SK_CPU_SSE_LEVEL >= SK_CPU_SSE_LEVEL_SSE2 |
| 25 #include <immintrin.h> | 21 #include <immintrin.h> |
| 26 #endif | 22 #endif |
| 27 // IWYU pragma: end_exports | 23 // IWYU pragma: end_exports |
| 28 | 24 |
| 29 #include <string.h> | 25 #include <string.h> |
| 30 | 26 |
| 31 /** | 27 /** |
| (...skipping 674 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 706 | 702 |
| 707 void* fPtr; | 703 void* fPtr; |
| 708 size_t fSize; // can be larger than the requested size (see kReuse) | 704 size_t fSize; // can be larger than the requested size (see kReuse) |
| 709 uint32_t fStorage[kSize >> 2]; | 705 uint32_t fStorage[kSize >> 2]; |
| 710 }; | 706 }; |
| 711 // Can't guard the constructor because it's a template class. | 707 // Can't guard the constructor because it's a template class. |
| 712 | 708 |
| 713 #endif /* C++ */ | 709 #endif /* C++ */ |
| 714 | 710 |
| 715 #endif | 711 #endif |
| OLD | NEW |