1 /*
2  * Copyright 2012 The Android Open Source Project
3  *
4  * Use of this source code is governed by a BSD-style license that can be
5  * found in the LICENSE file.
6  */
7 
8 #ifndef SkUtilsArm_DEFINED
9 #define SkUtilsArm_DEFINED
10 
11 #include "SkTypes.h"
12 
13 #if defined(SK_ARM_HAS_NEON)
14     #define SK_ARM_NEON_WRAP(x) (x ## _neon)
15 #else
16     #define SK_ARM_NEON_WRAP(x) (x)
17 #endif
18 
19 #endif // SkUtilsArm_DEFINED
20