Boscop
Boscop
Any update on this? :) Or is there another crate that supports simd that is optimized for 4x4 matrices?
It seems like the only dependency that's not working on Windows is [leveldb](https://github.com/google/leveldb/issues/519), libsodium and openssl both work on Windows (MSVC and GCC). So we only have to wait for...
Any update on this? :)
@ndarilek I'm in the same position, I want to port my app from Polymer to yew. Which issues were you facing with yew? :)
Any update on this? :)
Will the auto generation of Web API bindings also work for async/callback stuff like Geolocation?
@Pauan @Diggsey I tried to implement Geolocation support for Yew but I'm running into this issue https://github.com/koute/stdweb/issues/262#issuecomment-414921589: Converting the `Value` into an instance of my `Position` struct with `try_into()` fails...
@Diggsey Does this also work for callback based APIs like Geolocation? https://w3c.github.io/geolocation-api/#idl-index (I really want Geolocation in stdweb/yew..) Btw, here is how the FFI for the Geolocation API is defined...
@Diggsey Is your Web IDL bindings generator available in its own crate somewhere?
When I do this, it logs the position object in the console correctly (both times) but fails to convert it: ```rust pub fn get_current_position(&self, success_cb: Callback, error_cb: Callback, options: PositionOptions)...