Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-02-01 | compositor: drop wlr_surface.external_damage | Kirill Primak | |
2024-01-31 | render/pixel-format: Move has_alpha into it's own array | Leo Li | |
Some opaque pixel formats (nv12, p010) require per-plane bytes_per_block info. However, it doesn't make sense to store them in wlr_pixel_format_info, as they will never be useful (currently, this info is used for shm, which doesn't have a concept of multi-planar buffers.) Let's define a separate array and function for determining whether a pixel format has alpha. | |||
2024-01-31 | Create & implement transient seat protocol | Andri Yngvason | |
2024-01-31 | linux-dmabuf-v1: switch to stable | Simon Ser | |
The protocol is no longer unstable. | |||
2024-01-31 | linux-dmabuf-v1: fix include guard name | Simon Ser | |
2024-01-29 | wlr_damage_ring: Replace wlr_damage_ring_rotate_buffer with original list impl | Alexander Orzechowski | |
The seq based implementation is complex to reason about and doesn't even work. | |||
2024-01-27 | compositor: don't get buffer from pending buffer resource too early | Kirill Primak | |
Fixes: https://gitlab.freedesktop.org/wlroots/wlroots/-/issues/3795 | |||
2024-01-27 | scene: release shm buffers once uploaded | Simon Ser | |
Once a shm buffer is uploaded there's no reason for wlr_scene_buffer to keep it locked any further. Allow the compositor to re-use it. | |||
2024-01-27 | compositor: introduce wlr_surface_reject_pending() | Kirill Primak | |
2024-01-25 | backend: take wl_event_loop instead of wl_display in wlr_backend_autocreate() | Simon Ser | |
2024-01-25 | backend/multi: take wl_event_loop instead of wl_display | Simon Ser | |
2024-01-25 | backend/drm: drop wl_display argument | Simon Ser | |
We can grab the event loop from the wlr_session instead. | |||
2024-01-25 | backend/x11: take wl_event_loop instead of wl_display | Simon Ser | |
2024-01-25 | backend/wayland: take wl_event_loop instead of wl_display | Simon Ser | |
2024-01-25 | backend/libinput: drop wl_display argument | Simon Ser | |
We can grab the event loop from the wlr_session instead. | |||
2024-01-25 | backend/headless: take wl_event_loop instead of wl_display | Simon Ser | |
2024-01-25 | xwayland: add support for _NET_WM_WINDOW_TYPE_DESKTOP atom | Grigory Kirillov | |
2024-01-25 | backend: destroy multi backend when primary backend is | Simon Ser | |
This makes it easy for compositors to handle situations where the DRM or libinput backend becomes unavailable. Compositors can listen the destroy event of the multi backend returned by wlr_backend_autocreate() and decide what to do. | |||
2024-01-24 | output: Drop pending state | Alexander Orzechowski | |
2024-01-23 | backend/wayland: populate pointer axis relative direction | Simon Ser | |
2024-01-23 | seat/pointer: add support for axis_relative_direction event | Simon Ser | |
2024-01-23 | pointer: add support for axis relative direction | Simon Ser | |
2024-01-17 | keyboard: fix type of wlr_keyboard_modifiers.group | Isaac Freund | |
This isn't a breaking change since both of these typedefs are uint32_t but this should make things a bit less confusing for readers. | |||
2024-01-07 | fix outdated comment in wlr_output.h | MaxVerevkin | |
2024-01-03 | wl_drm: add deprecation notice | Simon Ser | |
2024-01-03 | region: add docs for wlr_region_scale_xy() and wlr_region_confine() | Simon Ser | |
2023-12-30 | backend/drm: save current refresh rate | Simon Ser | |
wlr_output.refresh is populated by core wlr_output, and thus will be zero for a custom mode with an unset refresh rate. Save the refresh rate from the drmModeModeInfo in wlr_drm_connector instead. Closes: https://gitlab.freedesktop.org/wlroots/wlroots/-/issues/3791 | |||
2023-12-27 | scene: drop wlr_scene_set_presentation() | Simon Ser | |
2023-12-27 | presentation-time: drop wlr_presentation arg | Simon Ser | |
There can only be a single presentation-time global advertised to clients, this it's unnecessary to pass around the wlr_presentation pointer. | |||
2023-12-25 | tearing-control-v1: synchronize state with surface | Simon Ser | |
2023-12-25 | session-lock-v1: use wlr_surface_synced | Simon Ser | |
2023-12-25 | pointer-constraints-v1: use wlr_surface_synced | Simon Ser | |
2023-12-25 | layer-shell-v1: use wlr_surface_synced | Simon Ser | |
2023-12-25 | xdg-decoration: use wlr_surface_synced for toplevel | Simon Ser | |
2023-12-25 | subcompositor: use wlr_surface_synced | Simon Ser | |
2023-12-25 | xdg-shell: use wlr_surface_synced for popups | Simon Ser | |
2023-12-25 | xdg-shell: use wlr_surface_synced for toplevel | Simon Ser | |
2023-12-25 | xdg-shell: use wlr_surface_synced for wlr_xdg_surface | Simon Ser | |
2023-12-25 | compositor: add wlr_surface_role.client_commit | Simon Ser | |
2023-12-25 | compositor: add wlr_surface_synced | Simon Ser | |
A lot of protocols extend the wl_surface state. Such protocols need to synchronize their extended state with wl_surface.commit and cached states. Add a new utility for this purpose. | |||
2023-12-25 | compositor: add wlr_surface_state_has_buffer() | Simon Ser | |
2023-12-25 | compositor: fix wlr_surface_has_buffer() doc comment | Simon Ser | |
The function does not check whether the upload succeeded: it does not check the wlr_client_buffer. | |||
2023-12-25 | compositor: remove unnecessary wlr_surface.has_buffer | Simon Ser | |
No need to store this bit, we can infer it from buffer_width and buffer_height. | |||
2023-12-25 | pointer-constraints-v1: add cursor_hint.enabled | Simon Ser | |
This allows compositors to check whether the cursor hint is set. | |||
2023-12-12 | backend/drm: add wlr_drm_backend_get_parent() | Simon Ser | |
Allows compositors to figure out whether a DRM backend is secondary on a multi-GPU setup. | |||
2023-12-11 | render/pixman: add wlr_pixman_renderer_get_buffer_image() | Roman Gilg | |
This is similar to wlr_pixman_texture_get_image and can be useful for compositors to access the rendering data. | |||
2023-12-05 | render/gles2: add wlr_gles2_renderer_get_buffer_fbo() | Simon Ser | |
Replacement for wlr_gles2_renderer_get_current_fbo(). Wayfire uses it for instance. | |||
2023-12-04 | compositor: drop surface precommit event | Simon Ser | |
This is unused. | |||
2023-12-04 | render/vulkan: use _SRGB image view when possible | Manuel Stoeckl | |
This is the last of a set of commits which ensures that both textures and render buffers can be accessed through _UNORM and _SRGB image views. While _UNORM image views are not yet used for 8-bpc image formats, they will be needed in the future to support color transforms for both textures and render buffers. | |||
2023-12-04 | render/vulkan: constify vulkan_format_props_find_modifier | Manuel Stoeckl | |