From 0b7eb9f118a259f4bc666140093b6be7dcf01158 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Sun, 16 Aug 2009 00:54:08 -0700 Subject: Add in-progress working extension AL_EXTX_sample_buffer_object --- OpenAL32/Include/alMain.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'OpenAL32/Include/alMain.h') 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; -- cgit v1.2.3