Felix Maier
Felix Maier
An option would be to use a own fork of WebKit. I'm currently researching on this
Exposing the monitor's refresh rate allows more fine-grained draw loops in window-mode. In OSR-mode, the refresh rated shouldn't be exposed as it's up to the user's implementation.
So I successfully converted most of ``mat4`` to Wasm, but discovered a few problems on my road. E.g. ``mat4.create()`` returns an ``Float32Array``, but we cannot send arrays to Wasm directly...
I'm currently working on a project which requires to work with 3x4 matrices (example [here](https://github.com/maierfelix/tiny-rtx/blob/master/main.mjs#L33-L36)). Since full 3x4 matrix support is probably too much, @stefnotch do you think the `mat4`...
Hi there, I'm searching for an UI solution for [this](https://github.com/maierfelix/nvk) project. Is there a way to get imgui's pixel data?
When passing ``-O`` to ``cli/compiler`` I'm getting in the compiled module: ``LinkError: WebAssembly Instantiation: Import #3 module="env" function="memset" error: function import requires a callable at `` I'm using malloc in...
I've made a Ray-tracing [implementation](https://github.com/maierfelix/dawn-ray-tracing) for the D3D12 (using *DXR*) and Vulkan (using *VK_KHR_ray_tracing*) backend of Dawn. To demonstrate usage: - [Chromium RT Build](https://github.com/maierfelix/chromium-ray-tracing) - [JS example](https://github.com/maierfelix/webgpu-examples/blob/master/ray-tracing/index.mjs) - [C example](https://github.com/maierfelix/dawn-ray-tracing/blob/master/examples/RayTracing.cpp)...
I'm currently porting a library to Wasm and it's users rely on synchronous instantiation. The goal is that users can just embed the library in a ``script`` tag and directly...
The current parser only supports basic pointers and function pointers. TODO: - Arrays - Type specifiers/qualifiers, storage specifiers, abstract declarators - E.g. types like ``char * const (*(* const bar)[5])(int...
Add JavaScript as a second compilation target