aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALu.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2012-09-24 14:47:06 -0700
committerChris Robinson <[email protected]>2012-09-24 14:47:06 -0700
commit12327da4fefe5aafb9d28d8db232ebd8f6ac93c3 (patch)
treea287c65ac7f7bf729649ed0a09dfd375b05dc8d8 /Alc/ALu.c
parent52d403b0d18fa65b976d5e430b9f4c3adc749ac7 (diff)
Remove SSE resamplers. They aren't gaining us much this way.
Diffstat (limited to 'Alc/ALu.c')
-rw-r--r--Alc/ALu.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/Alc/ALu.c b/Alc/ALu.c
index 97a4e55b..7f906232 100644
--- a/Alc/ALu.c
+++ b/Alc/ALu.c
@@ -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 */