aboutsummaryrefslogtreecommitdiffstats
path: root/alc/alu.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2020-04-16 02:05:07 -0700
committerChris Robinson <[email protected]>2020-04-16 02:05:07 -0700
commit3cb12da7657f856ae8acb734d36521eb69777a92 (patch)
treed10828deb5a6d8e0d23e07cf748fe8b414fcbfbe /alc/alu.h
parentdc41f276d8a7c6c870aebe6123b25e3de4a32545 (diff)
Move a type to where it's used
Diffstat (limited to 'alc/alu.h')
-rw-r--r--alc/alu.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/alc/alu.h b/alc/alu.h
index 7587a9b2..0f9c2bba 100644
--- a/alc/alu.h
+++ b/alc/alu.h
@@ -21,9 +21,6 @@ struct ALeffectslot;
using MixerFunc = void(*)(const al::span<const float> InSamples,
const al::span<FloatBufferLine> OutBuffer, float *CurrentGains, const float *TargetGains,
const size_t Counter, const size_t OutPos);
-using HrtfDirectMixerFunc = void(*)(FloatBufferLine &LeftOut, FloatBufferLine &RightOut,
- const al::span<const FloatBufferLine> InSamples, float2 *AccumSamples, DirectHrtfState *State,
- const size_t BufferSize);
extern MixerFunc MixSamples;