diff options
author | Chris Robinson <[email protected]> | 2017-05-04 12:17:50 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2017-05-04 12:27:10 -0700 |
commit | b639bc99132015217ff173680e1a43f44fad2ce3 (patch) | |
tree | e437b8aad0d56b719dceb5baf4da4efcad86e838 /OpenAL32/Include/alu.h | |
parent | 7829ad8fc9802442759b80014a695d7425fdf6de (diff) |
Add a property to force source spatialization on or off
Diffstat (limited to 'OpenAL32/Include/alu.h')
-rw-r--r-- | OpenAL32/Include/alu.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenAL32/Include/alu.h b/OpenAL32/Include/alu.h index 168a754f..cccc9719 100644 --- a/OpenAL32/Include/alu.h +++ b/OpenAL32/Include/alu.h @@ -40,6 +40,12 @@ struct ALvoice; struct ALeffectslot; +enum SpatializeMode { + SpatializeOff, + SpatializeOn, + SpatializeAuto +}; + enum Resampler { PointResampler, LinearResampler, @@ -189,6 +195,7 @@ struct ALvoiceProps { enum DistanceModel DistanceModel; enum Resampler Resampler; ALboolean DirectChannels; + enum SpatializeMode SpatializeMode; ALboolean DryGainHFAuto; ALboolean WetGainAuto; |