Sam Clegg
Sam Clegg
The `ws2_32` and `winmm` looks like windows-specific libraries so should not be added the link line when building with emscripten. I would take a look at your `CMakeList.txt` files(s) and...
Do you think it will be possible to implement most of this withing the existing WebSockets APIs that emscripten has, or would it need to be completely new API? From...
I was talking about WebSockets. Emscripten already an API for using WebSockets: https://emscripten.org/docs/porting/networking.html. I'm not saying that the WebTransport should or should not try to build on this layer, but...
One other motivation for removing this is that it is one of the slower ports to build, coming it at 8x slower than musl/libc (16 seconds vs 2 seconds on...
Closing for now. @kripken pointed out that the regal build actually provides a quite a bit of test coverage for our GLES implementation.
How hard do you think it would be to make a module that works in both of these environments? Is it worth adding yet anther setting or should we just...
@fs-eire as a workaround are you able to link your project N times in order to get N different wasm/js files? i.e. are you just looking to speed up the...
I guess my question is really, can you ship 4 different wasm files to go along with your 4 different js files?
> It doesn't work because the ASM_CONSTS table (and other build time generated things) may be different for each build. There is a step that using `wasm-opt` to strip the...
Yes that is what I mean. Sharing a single wasm file between different JS files built with different settings is not supported, so as a fallback I think can ship...