You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just discovered that I'm not properly handling byval passing of structs of floats (and possibly) small ints.
structs like struct { float a,b, c; } need to be expanded to <vector 2x float>, float in order to be passed to a C function.
There are similar cases for other types.
DragonEgg&Clang might be helpful resources
The text was updated successfully, but these errors were encountered:
I just discovered that I'm not properly handling byval passing of structs of floats (and possibly) small ints.
structs like
struct { float a,b, c; }
need to be expanded to<vector 2x float>, float
in order to be passed to a C function.There are similar cases for other types.
DragonEgg&Clang might be helpful resources
The text was updated successfully, but these errors were encountered: