diff options
Diffstat (limited to 'alc/device.h')
-rw-r--r-- | alc/device.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/alc/device.h b/alc/device.h index 4798d422..e4eb76ea 100644 --- a/alc/device.h +++ b/alc/device.h @@ -18,6 +18,10 @@ #include "intrusive_ptr.h" #include "vector.h" +#if ALSOFT_EAX +#include "al/eax_x_ram.h" +#endif // ALSOFT_EAX + struct ALbuffer; struct ALeffect; struct ALfilter; @@ -106,6 +110,10 @@ struct ALCdevice : public al::intrusive_ref<ALCdevice>, DeviceBase { std::mutex FilterLock; al::vector<FilterSubList> FilterList; +#if ALSOFT_EAX + ALsizei eax_x_ram_free_size{eax_x_ram_max_size}; +#endif // ALSOFT_EAX + ALCdevice(DeviceType type); ~ALCdevice(); |