英文:
How to convert XAudio2 I3DL2 Model to OpenAL effects?
问题
我目前正在一个测试程序中实现声音。我默认使用OpenAL,因为它在我所有的目标平台上都能工作。在Windows上,我决定使用XAudio2。
对于XAudio2中的混响效果,你需要提供一个I3DL2模型,并通过ReverbConvertI3DL2ToNative将其转换为本机XAudio2模型。现在我的问题是:是否有办法将I3DL2转换为OpenAL效果设置?
英文:
I am currently implementing sound in a test program. I am using OpenAL by default because its working an all target platforms I have. On Windows I decided to go with XAudio2.
For reverb effects in XAudio2 you provide a I3DL2 model an convert it a
native XAudio2 model via ReverbConvertI3DL2ToNative. Now my question is: Is there any way to convert an I3DL2 to OpenAL effect settings?
答案1
得分: 1
所有的"I3DL2预设"都包括在efx-presets.h中,这与XAudio2支持的预设相匹配。
英文:
All the "I3DL2 presets are included in efx-presets.h which match the presets supported by XAudio2.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论