MatthieuMv
MatthieuMv
Thank you for this fast answer @dancazarin. It would be great if at least user functions/classes have a small description about its usage and parameters. For example, let's consider the...
This can also be a waste of performance in case of a multi-threaded audio processor. For example, if one generates audio blocks of 2048 samples, the audio callback is called...
> You should be able to define implicit bindings for any `std::vector` using custom marshalling. Something like this: > > ``` > namespace emscripten { > namespace internal { >...
> @MatthieuMv > > > The issue with this approach is that it breaks typescript generation because the vector is now recognised as an 'any' type. It would be very...
This non-constant representation is very annoying and there is currently no work around to generate typescript enums. Is there any plan on developing such a feature or should I try...
@brendandahl I ended up writing a python script that parses my C++ headers, and generate definitions for them. Using ```EMSCRIPTEN_DECLARE_VAL_TYPE``` to generate a type, ```emscripten::register_type``` to register a generated enum...