axmol/thirdparty/openal/al/buffer.h

59 lines
1.0 KiB
C
Raw Normal View History

#ifndef AL_BUFFER_H
#define AL_BUFFER_H
#include <atomic>
#include "AL/al.h"
#include "albyte.h"
2021-05-14 10:15:42 +08:00
#include "alc/inprogext.h"
#include "almalloc.h"
#include "atomic.h"
2021-05-14 10:15:42 +08:00
#include "core/buffer_storage.h"
#include "vector.h"
2022-04-25 12:02:45 +08:00
#ifdef ALSOFT_EAX
#include "eax/x_ram.h"
2023-05-03 18:59:33 +08:00
enum class EaxStorage : uint8_t {
Automatic,
Accessible,
Hardware
};
2023-05-03 18:59:33 +08:00
#endif // ALSOFT_EAX
struct ALbuffer : public BufferStorage {
ALbitfieldSOFT Access{0u};
al::vector<al::byte,16> mDataStorage;
ALuint OriginalSize{0};
ALuint UnpackAlign{0};
ALuint PackAlign{0};
ALuint UnpackAmbiOrder{1};
ALbitfieldSOFT MappedAccess{0u};
ALsizei MappedOffset{0};
ALsizei MappedSize{0};
ALuint mLoopStart{0u};
ALuint mLoopEnd{0u};
/* Number of times buffer was attached to a source (deletion can only occur when 0) */
RefCount ref{0u};
/* Self ID */
ALuint id{0};
DISABLE_ALLOC()
2022-04-25 12:02:45 +08:00
#ifdef ALSOFT_EAX
2023-05-03 18:59:33 +08:00
EaxStorage eax_x_ram_mode{EaxStorage::Automatic};
2022-04-25 12:02:45 +08:00
bool eax_x_ram_is_hardware{};
#endif // ALSOFT_EAX
};
#endif