diff options
author | Chris Robinson <[email protected]> | 2012-09-24 14:47:06 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-09-24 14:47:06 -0700 |
commit | 12327da4fefe5aafb9d28d8db232ebd8f6ac93c3 (patch) | |
tree | a287c65ac7f7bf729649ed0a09dfd375b05dc8d8 /Alc/ALu.c | |
parent | 52d403b0d18fa65b976d5e430b9f4c3adc749ac7 (diff) |
Remove SSE resamplers. They aren't gaining us much this way.
Diffstat (limited to 'Alc/ALu.c')
-rw-r--r-- | Alc/ALu.c | 8 |
1 files changed, 0 insertions, 8 deletions
@@ -60,16 +60,8 @@ static ResamplerFunc SelectResampler(enum Resampler Resampler, ALuint increment) case PointResampler: return Resample_point32_C; case LinearResampler: -#ifdef HAVE_SSE - if((CPUCapFlags&CPU_CAP_SSE)) - return Resample_lerp32_SSE; -#endif return Resample_lerp32_C; case CubicResampler: -#ifdef HAVE_SSE - if((CPUCapFlags&CPU_CAP_SSE)) - return Resample_cubic32_SSE; -#endif return Resample_cubic32_C; case ResamplerMax: /* Shouldn't happen */ |