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 #include "SkBlitRow.h" 9 #include "SkUtilsArm.h" 10 11 #include "SkBlitRow_opts_arm_neon.h" 12 13 extern const SkBlitRow::Proc32 sk_blitrow_platform_32_procs_arm[] = { 14 nullptr, nullptr, nullptr, nullptr, 15 }; 16 17 SkBlitRow::Proc32 SkBlitRow::PlatformProcs32(unsigned flags) { 18 return SK_ARM_NEON_WRAP(sk_blitrow_platform_32_procs_arm)[flags]; 19 } 20