Nikolas

Results 19 comments of Nikolas

Should be possible, at least with some hacks. Raylib currently uses emscripten for web apps iirc. I'll check on this when I get back from vacation later this week.

The way mousegame works around the issue indeed seems to be the only way at the moment. For raylib 3.0 there is the `workaround` branch, but since struct parameters are...

Ngl I kinda left this fork to just be some waypoint on how a possible x86 backend could look. With the addition `load_base_ptr()`, `establish_stack_frame()`, and `end_stack_frame()` into the IR I...

Just saw this: using `libgit` instead of the `git` command could make stuff a lot easier, considering the library can be linked statically while the command has to be present...

@letmutx What exactly did you have in mind? I could write some tests up

With https://github.com/ziglang/zig/issues/1481 being closed, could you check this again?

https://github.com/ziglang/zig/issues/13830 and by extension https://github.com/ziglang/zig/issues/14262 are closed. Could you check this again?

Good note. Once 0.11 is released I'll update the binding accordingly and all this will hopefully work

Currently not possible, since raylib's `build.zig` only offers support for Windows, Linux, macOS and *BSD. I have created an issue on its repository: https://github.com/raysan5/raylib/issues/2884

raylib now has support for building for emscripten since https://github.com/raysan5/raylib/pull/2901 was merged, but Zig can't generate the required extra files that create the required JS functions (for OpenGL etc.) so...