diff options
author | Chris Robinson <[email protected]> | 2010-01-11 05:37:20 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-01-11 05:37:20 -0800 |
commit | 705849ca7371176d4e645b92898cb9a235602f9f (patch) | |
tree | bd6f3825bc2f84d1dff371a73c4e36baeafd2d26 /OpenAL32/Include/alSource.h | |
parent | 1a57f095e8970f11edccd6f122b7a87391b04166 (diff) |
Add an option for point resampling
Diffstat (limited to 'OpenAL32/Include/alSource.h')
-rw-r--r-- | OpenAL32/Include/alSource.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenAL32/Include/alSource.h b/OpenAL32/Include/alSource.h index 3889c85c..de746c61 100644 --- a/OpenAL32/Include/alSource.h +++ b/OpenAL32/Include/alSource.h @@ -22,6 +22,14 @@ extern "C" { #endif +typedef enum { + POINT = 0, + LINEAR, + + RESAMPLER_MAX +} resampler_t; +extern resampler_t DefaultResampler; + typedef struct ALbufferlistitem { struct ALbuffer *buffer; @@ -47,6 +55,8 @@ typedef struct ALsource ALboolean bLooping; ALenum DistanceModel; + resampler_t Resampler; + ALenum state; ALuint position; ALuint position_fraction; |