diff options
author | Chris Robinson <[email protected]> | 2007-12-17 21:00:52 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2007-12-17 21:00:52 -0800 |
commit | fc43a139278474c8de159cc87e8138dc101bff50 (patch) | |
tree | db7c05568964c206fbad3441de0863ffb0744c0d /OpenAL32 | |
parent | 28f80fa113be3488e98abb9fd6863277d2b94180 (diff) |
Implement basic lowpass filter path
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/Include/alSource.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenAL32/Include/alSource.h b/OpenAL32/Include/alSource.h index 1107bfd9..d210ae9b 100644 --- a/OpenAL32/Include/alSource.h +++ b/OpenAL32/Include/alSource.h @@ -62,6 +62,9 @@ typedef struct ALsource_struct ALfilter DirectFilter; + ALfloat LastDrySample; + ALfloat LastWetSample; + // Index to itself ALuint source; |