aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2012-10-14 11:21:52 -0700
committerChris Robinson <[email protected]>2012-10-14 11:21:52 -0700
commita852669dcebf7ff80a0698ca8afe6c8400480202 (patch)
treea190d8cb692f7e21e29b30283b7709b0cd957cbe /OpenAL32
parent3240894cd5ee4d3bae6798b6d480ef2dfacc403a (diff)
Store the output buffers in the DirectParams struct
Diffstat (limited to 'OpenAL32')
-rw-r--r--OpenAL32/Include/alSource.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenAL32/Include/alSource.h b/OpenAL32/Include/alSource.h
index 1a4410e4..8c231d8b 100644
--- a/OpenAL32/Include/alSource.h
+++ b/OpenAL32/Include/alSource.h
@@ -47,6 +47,10 @@ typedef struct HrtfParams {
} HrtfParams;
typedef struct DirectParams {
+ ALfloat (*OutBuffer)[BUFFERSIZE];
+ ALfloat *ClickRemoval;
+ ALfloat *PendingClicks;
+
HrtfParams Hrtf;
HrtfState *hrtfState;