diff options
author | Chris Robinson <[email protected]> | 2020-04-16 01:47:33 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2020-04-16 01:47:33 -0700 |
commit | dc41f276d8a7c6c870aebe6123b25e3de4a32545 (patch) | |
tree | 48b837e1cf5a233ab6921cb34867fd07464990ff /alc/voice.cpp | |
parent | 5214a7210a2da6003d811a0f9707f417f8a7cbc5 (diff) |
Get rid of the specialized MixRow_ methods
Diffstat (limited to 'alc/voice.cpp')
-rw-r--r-- | alc/voice.cpp | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/alc/voice.cpp b/alc/voice.cpp index 1f8523c5..6e16f586 100644 --- a/alc/voice.cpp +++ b/alc/voice.cpp @@ -81,7 +81,6 @@ static_assert((INT_MAX>>FRACTIONBITS)/MAX_PITCH > BUFFERSIZE, Resampler ResamplerDefault{Resampler::Linear}; MixerFunc MixSamples{Mix_<CTag>}; -RowMixerFunc MixRowSamples{MixRow_<CTag>}; namespace { @@ -107,19 +106,6 @@ inline MixerFunc SelectMixer() 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>; -} - inline HrtfMixerFunc SelectHrtfMixer() { #ifdef HAVE_NEON @@ -189,7 +175,6 @@ void aluInitMixer() } MixSamples = SelectMixer(); - MixRowSamples = SelectRowMixer(); MixHrtfBlendSamples = SelectHrtfBlendMixer(); MixHrtfSamples = SelectHrtfMixer(); } |