diff options
author | Chris Robinson <[email protected]> | 2020-03-25 22:24:09 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2020-03-25 22:24:09 -0700 |
commit | e8149ec509b9ab71b03b2e5059b6a44fcdc42c40 (patch) | |
tree | 24d1dd9f5416ecafc860a879414572064eadc1e1 /alc/alu.cpp | |
parent | a27096dd6305bbbdc470371ce8807e1e1bf331c1 (diff) |
Move some setup to a more logical place
Diffstat (limited to 'alc/alu.cpp')
-rw-r--r-- | alc/alu.cpp | 33 |
1 files changed, 1 insertions, 32 deletions
diff --git a/alc/alu.cpp b/alc/alu.cpp index 13e57a09..f50815ae 100644 --- a/alc/alu.cpp +++ b/alc/alu.cpp @@ -122,9 +122,6 @@ const ALfloat ConeScale{InitConeScale()}; /* Localized Z scalar for mono sources */ const ALfloat ZScale{InitZScale()}; -MixerFunc MixSamples{Mix_<CTag>}; -RowMixerFunc MixRowSamples{MixRow_<CTag>}; - namespace { struct ChanMap { @@ -133,33 +130,7 @@ struct ChanMap { ALfloat elevation; }; -HrtfDirectMixerFunc MixDirectHrtf = MixDirectHrtf_<CTag>; - -inline MixerFunc SelectMixer() -{ -#ifdef HAVE_NEON - if((CPUCapFlags&CPU_CAP_NEON)) - return Mix_<NEONTag>; -#endif -#ifdef HAVE_SSE - if((CPUCapFlags&CPU_CAP_SSE)) - return Mix_<SSETag>; -#endif - return Mix_<CTag>; -} - -inline RowMixerFunc SelectRowMixer() -{ -#ifdef HAVE_NEON - if((CPUCapFlags&CPU_CAP_NEON)) - return MixRow_<NEONTag>; -#endif -#ifdef HAVE_SSE - if((CPUCapFlags&CPU_CAP_SSE)) - return MixRow_<SSETag>; -#endif - return MixRow_<CTag>; -} +HrtfDirectMixerFunc MixDirectHrtf{MixDirectHrtf_<CTag>}; inline HrtfDirectMixerFunc SelectHrtfMixer(void) { @@ -256,8 +227,6 @@ inline ResamplerFunc SelectResampler(Resampler resampler, ALuint increment) void aluInit(void) { - MixSamples = SelectMixer(); - MixRowSamples = SelectRowMixer(); MixDirectHrtf = SelectHrtfMixer(); } |