-
Notifications
You must be signed in to change notification settings - Fork 25
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
wrong abi for vulkan functions #170
Labels
Comments
Thanks for filing the issue! |
it works because stdcall doesn't do anything on 64-bit windows. |
Makes sense! Want to make a PR? :) |
not at the moment. Also, all the functions that vulkan api users can directly call need to be |
ping |
Would you want to help out with a PR?
… On Apr 18, 2019, at 04:11, Jacob Lifshay ***@***.***> wrote:
ping
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub, or mute the thread.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
in https://github.com/gfx-rs/portability/blob/master/libportability-icd/src/lib.rs#L15, the ICD functions should be
extern "system"
instead ofextern "C"
since, on 32-bit windows, they arestdcall
. I'm not sure what to do about the hard float requirements when on armv7a android.See https://github.com/KhronosGroup/Vulkan-Headers/blob/master/include/vulkan/vk_platform.h#L49
The text was updated successfully, but these errors were encountered: