iacore

Results 421 comments of iacore

@Quantumplation @Conduitry Can you change the title of this issue, since its scope is larger than the original problem? Change to something like "Support for syntax for binding to arbitrary...

So, about making `$` as an operator. The dot (`.`) always has the highest precedence, so the semantic of `$foo.bar` would change from `($foo).bar` to `$(foo.bar)`. This change will make...

I gave up on this due to complexity. libebpf (C library) has changed a bit since this Zig fork was made.

CIELUV. https://www.hsluv.org/ https://www.kuon.ch/post/2020-03-08-hsluv/ https://gist.github.com/denis-bz/ec601823dc52666812a3e27b88772a84 I vaguely remember porting the conversion code between sRGB and HSLuv from d3.js (Javascript) to Rust or C, but I cannot find the code. I can...

I have ported [ok_color.h](https://github.com/godotengine/godot/blob/master/thirdparty/misc/ok_color.h) to C. -> branch `ok_color` This branch can't build because the color space conversion code is used at compile time. Can't call into C code at...

One idea is to generate the palette at the start of run-time instead of at compile-time. You can do this in `dvui.init()`. Edit: I forgot to push the `ok_color` branch...

I can't #68. Either `zig c-translate` produced invalid code, or the original algorithm is buggy. Hopefully dvui won't need Okhsl, ever.

~~Where did you get hsluv.c? If it's the ok_color branch, that's by me (I ported it from C++ to C).~~ It seems to be from https://github.com/hsluv/hsluv-c/blob/master/src/hsluv.c.

Distribution doesn't matter, probably. The X11/SDL cursor shapes should be the same across all. The resize seems to be "wrong" (unconventional). https://github.com/david-vanderson/dvui/assets/74560659/3d40369a-bd1b-43f7-a854-3ebb163d9c3b Also, the "drag" cursor is not a hand....