brent hartshorn

Results 5 comments of brent hartshorn

I was also confused by the memory offset at first, this example has a funny way of wrapping and sharing memory. The script below is perhaps a simpler way to...

![Peek 2024-10-29 10-34](https://github.com/user-attachments/assets/a2290450-198c-403f-b59c-c9887d6e5f06) you can now attach C3 scripts to blender objects from the UI, or from Python like this: ```python MY_C3_SCRIPT = ''' rotateY( self.matrix, self.my_prop ); ''' a...

With emcc -Oz the output wasm does not have: `target_features+mutable-globals+sign-ext`

![Screenshot from 2024-11-18 06-48-42](https://github.com/user-attachments/assets/b4205705-295c-429f-87fc-a592137bf0de)

![Screenshot from 2024-11-18 08-38-07](https://github.com/user-attachments/assets/5b293270-d0dc-4385-a444-e36d8d1899ee) confirmed that zig 0.13 and 0.13 and emcc 3.1.6 do not add `target_features+mutable-globals+sign-ext` looking online i found: https://reviews.llvm.org/D88506 """ wasm-ld --features=mutable-globals --export-all Note that this will...