ARM NEON Compositor  master
Fast SIMD alpha overlay and blending for ARM
All Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
SIMD.h
Go to the documentation of this file.
1 #pragma once
2 
3 #if defined(__ARM_NEON) && !defined(DISABLE_NEON)
4 #include <arm_neon.h>
5 #define ENABLE_NEON 1
6 #elif defined(__x86_64__) && !defined(DISABLE_NEON)
7 #include <NEON_2_SSE.h>
8 #define ENABLE_NEON 1
9 #else
10 #define ENABLE_NEON 0
11 #define ENABLE_SIMD32 0
12 #endif