-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AuxiliaryEffect function is not exported #23
Comments
EDIT: I just built openal-soft from source (using visual studio community 2017) instead of downloading and using the pre-built binaries from the site... Then it "just worked" -- cargo build without a hiccup. Also, commenting out the offending rust code worked as well (but building openal-soft from source is the better option, of course, since that allows me to include the reverb code and I can ensure it's compiled with sse2/3/4.1). Not sure what's up with the prebuilt openal-soft files -- but it looks like they were built with mingw because it includes a .def file, and those 7 functions were missing for whatever reason. MY ORIGINAL RESPONSE:
I did test using the gnu toolchain (following the directions from the main page), and it does work that way -- I'd just rather stick with the msvc toolchain. I may just try commenting out the code that references those 7 functions since it just looks like it's for effects. |
It seem that AuxiliaryEffect function is not exported by OpenAL?
In the example code of OpenAL,we can see:
So,these functions are dynamic called?
The text was updated successfully, but these errors were encountered: