Emi

Results 458 comments of Emi

Likely fixed in this version: * Windows `error: unable to create temporary directory 'C:\Users\runneradmin\AppData\Local\zig\tmp\8d000056b441f1d4': Unexpected` https://github.com/ziglang/zig/pull/18637 * Transitive macOS framework dep linking issue: https://github.com/ziglang/zig/pull/18677

@Srekel we'll nominate 2024.03 soon, probably getting started on it in a few days

## Tips on updating No major notes

Is this something you'd like to work on? My intention is for Mach to only expose a C API (libmach, as you found) and bindings for a single other language...

For Dawn / mach-gpu, we follow Dawn's API definitions (webgpu.h and dawn.json) which have `Buffer.BindingLayout.type`'s default value as `undefined`. https://github.com/hexops/dawn/blob/generated-2023-08-10.1691685418/dawn.json#L276 For sysgpu we will document the defaults better, but for...

> Are Dawn's defaults not simply the zero-values? Zero-values are ofc the "default" in a C API yeah, that's `undefined` (which is an enum name assigned zero value in basically...

Hi there, it hasn't been published yet. It will be in the future

Show me a usage of it that we can remove :) I already removed a ton of them, the ones that remain we can't remove for various reasons - or...

Worth keeping open for the few that do remain for sure.

@xdBronch that's fair and worth considering.. however one could do that on their own just the same? something like: ``` const MyApp = struct { foo: bool, bar: int, };...