diff options
Diffstat (limited to 'mp/src/mathlib/sse.h')
| -rw-r--r-- | mp/src/mathlib/sse.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mp/src/mathlib/sse.h b/mp/src/mathlib/sse.h index 72de1d3b..1b49c50c 100644 --- a/mp/src/mathlib/sse.h +++ b/mp/src/mathlib/sse.h @@ -15,9 +15,13 @@ void FASTCALL _SSE_VectorNormalizeFast(Vector& vec); float _SSE_InvRSquared(const float* v); void _SSE_SinCos(float x, float* s, float* c); float _SSE_cos( float x); +#ifdef PLATFORM_WINDOWS_PC32 void _SSE2_SinCos(float x, float* s, float* c); float _SSE2_cos(float x); +#endif +#if 0 void VectorTransformSSE(const float *in1, const matrix3x4_t& in2, float *out1); void VectorRotateSSE( const float *in1, const matrix3x4_t& in2, float *out1 ); +#endif #endif // _SSE_H |