Plasma Engine  2.0
Loading...
Searching...
No Matches
SimdTypes.h
1#pragma once
2
3#include <Foundation/Math/Math.h>
4
6{
7 enum Enum
8 {
9 FULL,
10 BITS_23,
11 BITS_12
12 };
13};
14
15#if PL_SIMD_IMPLEMENTATION == PL_SIMD_IMPLEMENTATION_SSE
16# include <Foundation/SimdMath/Implementation/SSE/SSETypes_inl.h>
17#elif PL_SIMD_IMPLEMENTATION == PL_SIMD_IMPLEMENTATION_FPU
18# include <Foundation/SimdMath/Implementation/FPU/FPUTypes_inl.h>
19#elif PL_SIMD_IMPLEMENTATION == PL_SIMD_IMPLEMENTATION_NEON
20# include <Foundation/SimdMath/Implementation/NEON/NEONTypes_inl.h>
21#else
22# error "Unknown SIMD implementation."
23#endif
Definition SimdTypes.h:6