aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-06-06presentation-time: constify wlr_presentation_feedback_send_presented()Simon Ser
We don't need to mutate the event in this function.
2023-06-06subcompositor: simplify subsurface_consider_map(), call on addKirill Primak
Fixes: 49e9be62ae92382eddca600082785489c82ea487
2023-06-06Clear input regions if they're ignoredKirill Primak
2023-06-06compositor: add a note about ignored input regionsKirill Primak
2023-06-06wlr_tablet_v2_tool: Tablet tool surfaces are always mappedAlexander Orzechowski
2023-06-06wlr_seat_pointer: cursor surfaces are always mappedAlexander Orzechowski
2023-06-06render/gles2: Handle NULL timerAlexander Orzechowski
2023-06-06renderer: Don't pass NULL optionsAlexander Orzechowski
2023-06-05Add some missing includes/declarationsKirill Primak
2023-06-05examples/multi-pointer: dropSimon Ser
We already have another very similar example which demonstrates wlr_cursor: "pointer".
2023-06-05render/gles2: implement timer APIRose Hudson
2023-06-05add render timer APIRose Hudson
Based on five calls: wlr_render_timer_create - creates a timer which can be reused across frames on the same renderer wlr_renderer_begin_buffer_pass - now takes a timer so that backends can record when the rendering starts and finishes wlr_render_timer_get_time - should be called as late as possible so that queries can make their way back from the GPU wlr_render_timer_destroy - self-explanatory The timer is exposed as an opaque `struct wlr_render_timer` so that backends can store whatever they want in there.
2023-06-05util: add timespec_to_nsecRose Hudson
2023-06-05compositor: unmap subsurfaces too on unmapKirill Primak
Similar to 49e9be62ae92382eddca600082785489c82ea487.
2023-06-05backend/wayland: add support for cropping output layersSimon Ser
2023-06-05backend/wayland: add scaling support for output layersSimon Ser
Use the viewporter protocol to scale output layers.
2023-06-05examples: Drop quadsAlexander Orzechowski
This example is incomparable with the new rendering API. The old one which we will drop one day.
2023-06-05gamma-control: Read ramps using preadKenny Levinsen
read advances the file description offset, and requires the client to ensure that it is reset appropriately before the next gamma ramp submission. As there is no event to indicate that wlroots finished processing the new gamma ramp, this can result in a race between the client seeking in the file and wlroots reading its content. Use pread with a fixed offset instead. Fixes: https://gitlab.freedesktop.org/wlroots/wlroots/-/issues/3655
2023-06-03compositor: notify subsurfaces about a commit in the rendering orderKirill Primak
This is the default order used across wlroots unless the reversed order specifically is required (e.g. in wlr_surface_surface_at()).
2023-06-03subcompositor: consider mapping on parent mapKirill Primak
Fixes: https://gitlab.freedesktop.org/wlroots/wlroots/-/issues/3654
2023-06-03virtual-keyboard: Handle inert seatsVäinö Mäkelä
2023-06-03virtual-pointer: Handle inert seatsVäinö Mäkelä
Inert seats are handled like inert outputs, so they work as if the wanted seat was NULL. The seat argument is only a suggestion, so this is okay.
2023-06-03xdg-popup: Handle inert seatsVäinö Mäkelä
According to the protocol text, the popup will be immediately dismissed when the grab is rejected. Because the grab can't be executed with a destroyed seat, the popup is dismissed when one is provided.
2023-06-03text-input: Handle inert seatsVäinö Mäkelä
2023-06-03primary-selection: Handle inert seatsVäinö Mäkelä
2023-06-03keyboard-shortcuts-inhibit: Handle inert seatsVäinö Mäkelä
2023-06-03input-method: Handle inert seatsVäinö Mäkelä
2023-06-03wlr_idle: Handle inert seatsVäinö Mäkelä
2023-06-03tablet: Handle inert seatsVäinö Mäkelä
2023-06-03data-control: Handle inert seatsVäinö Mäkelä
2023-06-03data-device: Handle inert seatsVäinö Mäkelä
2023-06-03seat: Allow binding to inert seatsVäinö Mäkelä
If a seat is destroyed while a client is trying to bind it, wlroots needs to create an inert seat resource instead of crashing.
2023-06-02output/cursor: fix scale and transformSimon Ser
Many issues here: - wlr_output_cursor_set_buffer() takes a buffer already scaled for the output, not a buffer with scale=1. - wlr_output_cursor.{width,height,hotspot_x,hotspot_y} are in output buffer coordinates. - render_cursor_buffer() had hardcoded no-ops for scale and transform, instead of using the cursor surface's. Fixes: b64e7e88bfb8 ("output: add output_cursor_set_texture()")
2023-06-02cursor: fix wl_pointer.set_cursor hotspot updatesSimon Ser
A client might update the cursor with the same wl_surface as before, but with a different hotspot. Don't ignore such updates. Fixes: 9c9e3f626350 ("cursor: ignore wlr_cursor_set_surface() with same surface")
2023-06-02session-lock: fix buffer checkKirill Primak
If the first commit has no buffer, the unmap hook won't catch it. Check in the commit hook instead.
2023-06-02session-lock: remove unused wlr_session_lock_surface_v1.events.mapKirill Primak
2023-06-02xwm: check for a buffer before mappingKirill Primak
2023-06-02compositor: remove wlr_surface_role.precommitKirill Primak
It was previously used to handle unmapping properly but is obsolete now.
2023-06-02xwm: use unified map logicKirill Primak
2023-06-02drag: use unified map logicKirill Primak
2023-06-02input-method: use unified map logicKirill Primak
2023-06-02session-lock: use unified map logicKirill Primak
2023-06-02layer-shell: use unified map logicKirill Primak
2023-06-02xdg-shell: use unified map logicKirill Primak
2023-06-02subcompositor: use unified map logicKirill Primak
2023-06-02compositor: introduce unified map logicKirill Primak
2023-06-02cursor: unset wlr_output_cursor.texture on surface destroySimon Ser
When the surface is destroyed, its current wlr_texture is about to get destroyed as well. Reset wlr_output_cursor.texture to prevent use-after-free. Closes: https://gitlab.freedesktop.org/wlroots/wlroots/-/issues/3652
2023-06-02cursor: ignore wlr_cursor_set_surface() with same surfaceSimon Ser
Avoids damaging the output and rendering the cursor again if it hasn't changed.
2023-06-02xwm: introduce associate/dissociate eventsKirill Primak
We'll soon introduce a unified wlr_surface map event. Up until now, compositors have been using wlr_xwayland_surface's map event to setup various wlr_surface related listeners (e.g. commit). This will no longer be possible when that event is moved over to wlr_surface. Introduce new events where the compositor can add/remove wlr_surface event listeners.
2023-06-02Revert "xwm: emit new_surface/destroy on associate/dissociate"Kirill Primak
Firing new_surface when a wlr_surface is associated to the X11 window is too late: the X11 client might've sent configure events before that. This reverts commit 039cca8a51ed0783d45fb7a5215e9ae83e4e02e2. Fixes: https://gitlab.freedesktop.org/wlroots/wlroots/-/issues/3606