| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
| |
This effectively inverts the DevChannels array
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
AL_SEC_OFFSET_LATENCY_SOFT
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
This allows apps to include "al.h", "alc.h", etc, like with Creative's SDK and
CMake's FindOpenAL module, or as "AL/al.h" and "AL/alc.h" like before.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
Note that some properties (e.g. AL_BUFFER, AL_DIRECT_FILTER) actually take
unsigned int values, and so are checked against the unsigned range even though
they eventually get casted to an int. The int handler casts them back as
needed.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
Note that currently the int64 setters do not range check before being passed to
the int setters, erroneously chopping off the upper bits.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|