all repos — mgba @ 7b12516df45ac2bfc0597d6a584e80f8b4721255

mGBA Game Boy Advance Emulator

include/mgba-util/arm-algo.h (view raw)

 1/* Copyright (c) 2013-2015 Jeffrey Pfau
 2 *
 3 * This Source Code Form is subject to the terms of the Mozilla Public
 4 * License, v. 2.0. If a copy of the MPL was not distributed with this
 5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
 6#ifndef ARM_ALGO_H
 7#define ARM_ALGO_H
 8
 9#ifdef __arm__
10#if defined(__ARM_NEON)
11void _neon2x(void* dest, void* src, int width, int height);
12void _neon4x(void* dest, void* src, int width, int height);
13#endif
14#endif
15
16#endif