aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include/alMain.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2009-08-16 00:54:08 -0700
committerChris Robinson <[email protected]>2009-08-16 00:54:08 -0700
commit0b7eb9f118a259f4bc666140093b6be7dcf01158 (patch)
tree808f71536e3df4b38d0b9e9eae76e25a372ef33d /OpenAL32/Include/alMain.h
parentdc26261065a7ff78657ac79accc993c78069deca (diff)
Add in-progress working extension AL_EXTX_sample_buffer_object
Diffstat (limited to 'OpenAL32/Include/alMain.h')
-rw-r--r--OpenAL32/Include/alMain.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h
index 78128c90..a375f6d1 100644
--- a/OpenAL32/Include/alMain.h
+++ b/OpenAL32/Include/alMain.h
@@ -201,6 +201,10 @@ struct ALCdevice_struct
struct ALfilter *FilterList;
ALuint FilterCount;
+ // Linked List of Databuffers for this device
+ struct ALdatabuffer *Databuffers;
+ ALuint DatabufferCount;
+
// Context created on this device
ALCcontext *Context;
@@ -231,6 +235,9 @@ struct ALCcontext_struct
struct ALeffectslot *AuxiliaryEffectSlot;
ALuint AuxiliaryEffectSlotCount;
+ struct ALdatabuffer *SampleSource;
+ struct ALdatabuffer *SampleSink;
+
ALenum LastError;
ALboolean InUse;