diff options
author | Chris Robinson <[email protected]> | 2020-09-05 23:53:53 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2020-09-05 23:53:53 -0700 |
commit | 7eb5dfb3f82b6ecd3dd23f8d3747c4f09cc19561 (patch) | |
tree | 21254004fa221efc3ca5f6fbb213c09ff2f17a2f | |
parent | f5163ca98835c09439a87e598d0b0c61f1cf724b (diff) |
Allow querying the new enums and functions
-rw-r--r-- | alc/alc.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/alc/alc.cpp b/alc/alc.cpp index 8a89e8c2..e4db2681 100644 --- a/alc/alc.cpp +++ b/alc/alc.cpp @@ -403,6 +403,11 @@ const struct { DECL(alGetBufferPtrSOFT), DECL(alGetBuffer3PtrSOFT), DECL(alGetBufferPtrvSOFT), + + DECL(alAuxiliaryEffectSlotPlaySOFT), + DECL(alAuxiliaryEffectSlotPlayvSOFT), + DECL(alAuxiliaryEffectSlotStopSOFT), + DECL(alAuxiliaryEffectSlotStopvSOFT), }; #undef DECL @@ -809,6 +814,7 @@ constexpr struct { DECL(AL_UNPACK_AMBISONIC_ORDER_SOFT), DECL(AL_EFFECT_CONVOLUTION_REVERB_SOFT), + DECL(AL_EFFECTSLOT_STATE_SOFT), }; #undef DECL |