aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkUtilsArm.h
blob: 0d35193e0407c125d1a1845b41274a085fa1891d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * Copyright 2012 The Android Open Source Project
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef SkUtilsArm_DEFINED
#define SkUtilsArm_DEFINED

#include "SkTypes.h"

#if defined(SK_ARM_HAS_NEON)
    #define SK_ARM_NEON_WRAP(x) (x ## _neon)
#else
    #define SK_ARM_NEON_WRAP(x) (x)
#endif

#endif // SkUtilsArm_DEFINED