diff options
-rw-r--r-- | al/source.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/al/source.cpp b/al/source.cpp index 7cddb53a..9be79e9a 100644 --- a/al/source.cpp +++ b/al/source.cpp @@ -3396,6 +3396,17 @@ START_API_FUNC END_API_FUNC +AL_API void AL_APIENTRY alSourceQueueBufferLayersSOFT(ALuint, ALsizei, const ALuint*) +START_API_FUNC +{ + ContextRef context{GetContextRef()}; + if UNLIKELY(!context) return; + + context->setError(AL_INVALID_OPERATION, "alSourceQueueBufferLayersSOFT not supported"); +} +END_API_FUNC + + ALsource::ALsource() { Direct.Gain = 1.0f; |