Isaac Freund

Results 24 issues of Isaac Freund

In particular, the current implementation only works for the root surface in an xdg surface tree or xwayland surfaces (which have no surface tree). This is highlighted by the usage...

enhancement

I ran out of time to implement this today and don't really need it for anything I'm personally working towards yet. We should probably implement parent events though to better...

enhancement
contributor friendly

This ack sequence eliminates the race between a client creating a new layer surface and the compositor rendering the first frame of a new output. This race is especially important...

needs implementation

This function (added in zig 0.8.0) will allow us to work around the issues regarding comptime function memoization when using slice parameters and is also simply better for this use-case.

The transaction timeout is how long river will wait for clients to respond to configure events before giving up on frame perfection and rendering an imperfect frame. I think 200ms...

enhancement

This is the tracking issue for river 0.3.0. New features: - Finely-grained damage tracking leveraging the wlroots scene graph API. - Interactive resize of windows with the cursor from all...

organization

River now supports most of the input-method-v2 protocol. It does not however support popups yet. Other popular compositors such as sway don't support input method popups yet either so this...

enhancement

### Zig Version 0.11.0-dev.168+b2ffe113d ### Steps to Reproduce and Observed Behavior ```zig const c = struct { pub usingnamespace @cImport({ @cInclude("stdlib.h"); }); }; test { _ = c; } ```...

bug
frontend
miscompilation

Currently if the preferred_optimize_mode is set when calling standardOptimizeOption() then --release={safe,fast,small} will be silently ignored in favor of the preffered optimize mode. This patch changes this behavior to honor the...

Example code: ``` i = '👨‍👨‍👦‍👦c'.indexChar('c') print 'Found char at {i}.' -- Found char at 7. ``` Indexing strings based on codepoint doesn't really make sense with regards to how...