diff options
author | Chris Robinson <[email protected]> | 2012-09-14 02:14:29 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-09-14 02:14:29 -0700 |
commit | 0f3a575a09fd3fa77564fd58d526aef14e8ef22a (patch) | |
tree | e2d05fc8095ff1a4879f2b6b6954a4950f519dc7 /OpenAL32/Include/alu.h | |
parent | ec74fb9ba2eaf0b75685f6c88cd96270408c1da6 (diff) |
Don't include alu.h in alMain.h
Diffstat (limited to 'OpenAL32/Include/alu.h')
-rw-r--r-- | OpenAL32/Include/alu.h | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/OpenAL32/Include/alu.h b/OpenAL32/Include/alu.h index ece99b21..6e29e7bf 100644 --- a/OpenAL32/Include/alu.h +++ b/OpenAL32/Include/alu.h @@ -100,46 +100,6 @@ enum Resampler { ResamplerMax, }; -enum Channel { - FrontLeft = 0, - FrontRight, - FrontCenter, - LFE, - BackLeft, - BackRight, - BackCenter, - SideLeft, - SideRight, - - MaxChannels, -}; - -enum DistanceModel { - InverseDistanceClamped = AL_INVERSE_DISTANCE_CLAMPED, - LinearDistanceClamped = AL_LINEAR_DISTANCE_CLAMPED, - ExponentDistanceClamped = AL_EXPONENT_DISTANCE_CLAMPED, - InverseDistance = AL_INVERSE_DISTANCE, - LinearDistance = AL_LINEAR_DISTANCE, - ExponentDistance = AL_EXPONENT_DISTANCE, - DisableDistance = AL_NONE, - - DefaultDistanceModel = InverseDistanceClamped -}; - - -/* Size for temporary storage of buffer data, in ALfloats. Larger values need - * more stack, while smaller values may need more iterations. The value needs - * to be a sensible size, however, as it constrains the max stepping value used - * for mixing, as well as the maximum number of samples per mixing iteration. - * The mixer requires being able to do two samplings per mixing loop. A 16KB - * buffer can hold 512 sample frames for a 7.1 float buffer. With the cubic - * resampler (which requires 3 padding sample frames), this limits the maximum - * step to about 508. This means that buffer_freq*source_pitch cannot exceed - * device_freq*508 for an 8-channel 32-bit buffer. - */ -#ifndef BUFFERSIZE -#define BUFFERSIZE 4096 -#endif #define FRACTIONBITS (14) #define FRACTIONONE (1<<FRACTIONBITS) |