diff options
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(); } |