mirror of
https://github.com/love2d/megasource.git
synced 2026-08-17 19:24:09 +02:00
36 lines
1.2 KiB
C++
36 lines
1.2 KiB
C++
#ifndef EAX_X_RAM_INCLUDED
|
|
#define EAX_X_RAM_INCLUDED
|
|
|
|
|
|
#include "AL/al.h"
|
|
|
|
|
|
constexpr auto eax_x_ram_min_size = ALsizei{};
|
|
constexpr auto eax_x_ram_max_size = ALsizei{64 * 1'024 * 1'024};
|
|
|
|
|
|
constexpr auto AL_EAX_RAM_SIZE = ALenum{0x202201};
|
|
constexpr auto AL_EAX_RAM_FREE = ALenum{0x202202};
|
|
|
|
constexpr auto AL_STORAGE_AUTOMATIC = ALenum{0x202203};
|
|
constexpr auto AL_STORAGE_HARDWARE = ALenum{0x202204};
|
|
constexpr auto AL_STORAGE_ACCESSIBLE = ALenum{0x202205};
|
|
|
|
|
|
constexpr auto AL_EAX_RAM_SIZE_NAME = "AL_EAX_RAM_SIZE";
|
|
constexpr auto AL_EAX_RAM_FREE_NAME = "AL_EAX_RAM_FREE";
|
|
|
|
constexpr auto AL_STORAGE_AUTOMATIC_NAME = "AL_STORAGE_AUTOMATIC";
|
|
constexpr auto AL_STORAGE_HARDWARE_NAME = "AL_STORAGE_HARDWARE";
|
|
constexpr auto AL_STORAGE_ACCESSIBLE_NAME = "AL_STORAGE_ACCESSIBLE";
|
|
|
|
/* NOLINTBEGIN(readability-inconsistent-declaration-parameter-name)
|
|
* These functions are defined using macros to forward them in a generic way to
|
|
* implementation functions, which gives the parameters generic names.
|
|
*/
|
|
ALboolean AL_APIENTRY EAXSetBufferMode(ALsizei n, const ALuint *buffers, ALint value) noexcept;
|
|
ALenum AL_APIENTRY EAXGetBufferMode(ALuint buffer, ALint *pReserved) noexcept;
|
|
/* NOLINTEND(readability-inconsistent-declaration-parameter-name) */
|
|
|
|
#endif // !EAX_X_RAM_INCLUDED
|