From feeec3433377d46f71771c3930e5e00bf9834feb Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Mon, 27 May 2013 19:14:02 -0700 Subject: Use ALfilterState for the source direct and send filters --- OpenAL32/Include/alSource.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'OpenAL32/Include/alSource.h') diff --git a/OpenAL32/Include/alSource.h b/OpenAL32/Include/alSource.h index bd1b2931..8766c85e 100644 --- a/OpenAL32/Include/alSource.h +++ b/OpenAL32/Include/alSource.h @@ -61,8 +61,7 @@ typedef struct DirectParams { * target (eg. FrontLeft). Not used with HRTF. */ ALfloat Gains[MaxChannels][MaxChannels]; - /* A low-pass filter, using 2 chained one-pole filters. */ - FILTER Filter[MaxChannels]; + ALfilterState Filter[MaxChannels]; } DirectParams; typedef struct SendParams { @@ -72,8 +71,7 @@ typedef struct SendParams { * output buffer. */ ALfloat Gain; - /* A low-pass filter, using 2 chained one-pole filters. */ - FILTER Filter[MaxChannels]; + ALfilterState Filter[MaxChannels]; } SendParams; -- cgit v1.2.3