aboutsummaryrefslogtreecommitdiffstats
path: root/alc/mixer
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2019-08-20 09:20:18 -0700
committerChris Robinson <[email protected]>2019-08-20 09:20:18 -0700
commita7f078927d76b91ee01dece2852c6a55b23aeb22 (patch)
tree1a1b79e371275dfa0c57984e68eb4c020bbb14c6 /alc/mixer
parent0961f4eb00782df66e3ada75b4055b44a28240f3 (diff)
Fix MixRow definition for NEON
Diffstat (limited to 'alc/mixer')
-rw-r--r--alc/mixer/mixer_neon.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/alc/mixer/mixer_neon.cpp b/alc/mixer/mixer_neon.cpp
index 53b2fe8d..9a3722ab 100644
--- a/alc/mixer/mixer_neon.cpp
+++ b/alc/mixer/mixer_neon.cpp
@@ -271,8 +271,8 @@ void Mix_<NEONTag>(const al::span<const float> InSamples, const al::span<FloatBu
}
template<>
-void MixRow_<NEONTag>(const al::span<ALfloat> OutBuffer, const al::span<const ALfloat> Gains,
- const ALfloat *InSamples, const ALsizei InStride)
+void MixRow_<NEONTag>(const al::span<float> OutBuffer, const al::span<const float> Gains,
+ const float *InSamples, const size_t InStride)
{
for(const ALfloat gain : Gains)
{