Jacob Young
Jacob Young
Calling `gfx_SetTextConfig(gfx_text_clip);` causes print routines to draw both `gfx_SetTransparentColor` and `gfx_SetTextTransparentColor` colors as transparent. For example: ```c #include #include int main(void) { bool clip = false; /* Initialize graphics drawing...
Changing the keypad ports at offsets 4 and 5 always read back the new value, but don't always behave using the new value, and I haven't been able to come...
I think cpu_restore_next can't be called inside port.c -> sched_process_pending_events. Should I move it out or conditionalize it.
### Zig Version 0.10.0-dev.3978+4fd4c733d ### Steps to Reproduce ```zig fn f(comptime _: fn (anytype) void) void {} fn g(_: anytype) void {} test { f(g); } ``` ### Expected Behavior...
This enabled all of the behavior tests for the C backend that were passing and fixed all of the C warnings from the flags `-Wextra -Wall -pedantic` for the behavior...
### Zig Version 0.10.0-dev.4472+a4eb221b9 ### Steps to Reproduce ```sh echo > repro.zig zig test repro.zig echo $? echo 'extern fn this_function_does_not_exist() void; test { this_function_does_not_exist(); }' > repro.zig zig test...
### Zig Version 0.11.0-dev.12+ebf9ffd34 ### Steps to Reproduce ```zig export fn entry() void { var a: ?u32 = 1234; var b: u32 = 2000; var c = if (a) |d|...
* Add `tagName` to `Value` which behaves like `@tagName`. * Add `hashUncoerced` to `Value` as an alternative to hash when we want to produce the same hash for value that...
### Zig Version 0.11.0-dev.1977+db450bcad ### Steps to Reproduce and Observed Behavior Example link invocation when building zig: ``` lld-link -ERRORLIMIT:0 -NOLOGO -DEBUG -PDB:\o\fa3f0a308c6878f003bddb65e7295e69\zig.pdb -PDBALTPATH:\o\fa3f0a308c6878f003bddb65e7295e69\zig.pdb -STACK:33554432 -MACHINE:X64 -INCLUDE:_tls_index -OUT:\o\fa3f0a308c6878f003bddb65e7295e69\zig.exe -IMPLIB:\o\fa3f0a308c6878f003bddb65e7295e69\zig.lib \o\fa3f0a308c6878f003bddb65e7295e69\zig.exe.obj...
I opted to not spend too much time thinking about naming and syntax and just implement some badly needed debugging functionality. This is specifically needed for debugging the current non-determinism...