aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-07-28xwayland: avoid calling xwm_get_atom_name() when debug logs are offSimon Ser
xwm_get_atom_name() performs a roundtrip to the X11 server. Avoid calling this blocking function if debug logs are turned off.
2023-07-27types/wlr_drm_lease_v1: downgrade DRM backend error message to debugSimon Zeni
Downgrades the error message printed out when no DRM backend is given from `WLR_ERROR` to `WLR_DEBUG`
2023-07-27render/vulkan: use renamed glslang binary by defaultq234rty
glslang 12.3.0 renamed glslangValidator to glslang, use that by default and use the old name as a fallback. References: https://github.com/KhronosGroup/glslang/blob/main/CHANGES.md?plain=1#L14
2023-07-26compositor: add "mapped" flag docKirill Primak
2023-07-26Unmap wlr_surface before making its role object inertKirill Primak
2023-07-26xwayland/shell: don't listen to wlr_surface.events.destroyKirill Primak
The wlr_xwayland_surface_v1 will be destroyed automatically from xwl_surface_role_destroy().
2023-07-26backend/drm: restore custom modesSimon Ser
We were only restoring fixed modes here. The DRM backend no longer creates fixed modes when the compositor sets a custom mode, so we need to handle this situation when restoring. Closes: https://gitlab.freedesktop.org/wlroots/wlroots/-/issues/3698
2023-07-26wlr_output: add comments for signal parametersrewine
2023-07-23xdg-shell: add support for v6Leonardo Hernández Hernández
This adds the suspended toplevel state
2023-07-24cursor-shape-v1: new protocol implementationSimon Ser
References: https://gitlab.freedesktop.org/wayland/wayland-protocols/-/merge_requests/194
2023-07-22wlr_scene: Don't damage when setting opaque regionAlexander Orzechowski
Opaque region is a optimization hint, (bugs outstanding) it will not change the output contents, therefore damage does not need to be submitted. However, we still need to update the visibility state of the other nodes in the tree. To do this call scene_update_region() by ourselves but not `scene_node_update()` which will damage the outputs.
2023-07-22wlr_scene: Fix damage tracking with non atomic opaque region configurationAlexander Orzechowski
We need to intersect the opaque region with the node size or else we'll get damage tracking effects with compositors attempting to use wlr_scene_buffer_set_opaque_region() along with resizing the buffer at the same time in a certain order. Consider this: I have a new buffer that I want to commit to my scene buffer that is smaller than the old one. However, I still have the old opaque region that is the size of the old larger buffer, so that means that for the small moment between when we reconfigure the opaque region for the new buffer the opaque region will be oversized. Scene logic will then try to apply occluding optimizations outside of the node boundaries causing damage artifacts.
2023-07-21session-lock: add missing lock_surface_destroyRouven Czerwinski
Add the missing lock_surface_destroy which was removed in dc7686c114f8 ("session-lock: don't remove inert role resource"). Otherwise we never remove the surface from our internal state, leading to us killing the locking daemon with a protocol error that is totally our fault.
2023-07-21wlr_idle_inhibit_manager_v1: add comments for signal parametersrewine
2023-07-18backend/x11: log output test failure reasonsBrett Ernst
2023-07-18backend/wayland: log output test failure reasonsBrett Ernst
2023-07-18export-dmabuf, screencopy: schedule_frame -> needs_frameRose Hudson
needs_frame is for backends to trigger frames for reasons that compositors couldn't see coming. schedule_frame is freaky and I want to remove it. These protocols aren't backends but in this case they're close enough, so switch to needs_frame. CC #3664
2023-07-17data-device: remove undefined grab interface declsKirill Primak
2023-07-17xdg-shell: update stale docsKirill Primak
2023-07-17cursor, output: apply viewport to cursorSimon Ser
Instead of passing the scale, pass the source and destination boxes. Closes: https://gitlab.freedesktop.org/wlroots/wlroots/-/issues/3676
2023-07-17wlr_gamma_control: add missing forward declarationsJohn Lindgren
Fixes an error seen in labwc CI builds with -Werror: ../subprojects/wlroots/include/wlr/types/wlr_gamma_control_v1.h:44:16: error: ‘struct wlr_output_state’ declared inside parameter list will not be visible outside of this definition or declaration [-Werror] 44 | struct wlr_output_state *output_state); | ^~~~~~~~~~~~~~~~
2023-07-16scene: apply rounding when translating buffer damageRonan Pigott
Without a round in this case the damage region is translated to truncated coordinates, potentially misplacing it relative to the actual position of that region in the output buffer.
2023-07-15scene: send wl_surface.preferred_buffer_scaleLeonardo Hernández Hernández
2023-07-14backend/drm: stop checking for wlr_client_bufferSimon Ser
wlr_client_buffer is a bad indicator for direct scan-out. Compositors might use the underlying wlr_buffer instead.
2023-07-14presentation-time: add separate helper for zero-copySimon Ser
The backend is not able to tell whether a surface is being presented via direct scan-out or not. The backend will set ZERO_COPY if the buffer submitted via the output commit was presented in a zero-copy fashion, but will no know whether the buffer comes from the compositor or the client.
2023-07-14scene: add wlr_scene_output_sample_eventSimon Ser
This contains the output and a bool indicating direct scan-out.
2023-07-14scene: rename output_present event to output_sampleSimon Ser
Using "present" is confusing here: the event is emitted when the buffer is being sampled to be displayed on an output, not when it's being presented on-screen. Rename to match the presentation-time terminology.
2023-07-12wlr_scene: Fix buffer damage for output stateAlexander Orzechowski
We would transform the damage based on output state which might be out of date.
2023-07-12add minimalist cairo exampleBrett Ernst
2023-07-12render/gles2: wrap timer setup in push_gles2_debug()Simon Ser
With this, errors should be properly wrapped in the debug scope.
2023-07-11render: document wlr_buffer_pass_options.timerSimon Ser
2023-07-11render: constify struct wlr_buffer_pass_optionsSimon Ser
Let's not allow renderer implementations to mutate the passed in options.
2023-07-11Use wl_container_of() instead of castsSimon Ser
This slightly improves type safety. The culprits were found with: git grep -E '\([a-z0-9_ ]+ \*\)\W?[a-z]'
2023-07-11render/gles2: drop unnecessary castSimon Ser
We can just refer to the struct field here.
2023-07-10scene_output: optionally record and report timingsRose Hudson
2023-07-10input-method-v2: don't remove inert role resourceKirill Primak
2023-07-10xwayland-shell: don't remove inert role resourceKirill Primak
2023-07-10session-lock: don't remove inert role resourceKirill Primak
2023-07-10layer-shell: don't remove inert role resourceKirill Primak
2023-07-10subcompositor: don't remove inert role resourceKirill Primak
Now that role objects are stored as resources, we can distinguish the inert object case from it being destroyed by the client: - When the resource is destroyed by the client, role_resource == NULL - When the resource is made inert, role_resource != NULL but its user_data is NULL
2023-07-09xwayland: pass NULL as event dataSimon Ser
This is more extensible: in the future we can introduce event structs if we need to.
2023-07-09xwayland: use initializer for struct wlr_xwayland_resize_eventSimon Ser
Ensures there are no fields with uninitialized memory. Also remove an outdated TODO: Xwayland only supports a single seat.
2023-07-09xwayland: document event dataSimon Ser
2023-07-09xwayland: drop struct wlr_xwayland_move_eventSimon Ser
This only contains the xsurface, which isn't particularly useful.
2023-07-09xwayland: document associate/dissociate eventsSimon Ser
2023-07-07Use struct initializers instead of memset()Simon Ser
This is a bit more type-safe.
2023-07-07viewporter: check for an existing viewportKirill Primak
2023-07-05license: add copyright line for all contributorsSimon Ser
Recently it has come up that someone wants to re-use part of wlroots in their own project. The standard procedure is to copy over the license text and copyright lines. Let's make it clear that the wlroots copyright is held by all wlroots contributors, and that the license file comes from the wlroots project. See [1] for more details. [1]: https://www.linuxfoundation.org/blog/blog/copyright-notices-in-open-source-software-projects
2023-07-03output: drop wlr_output_cursor_set_image()Simon Ser
This function takes a pointer to memory with a hardcoded format and many parameters to describe the pixel buffer. wlr_output_cursor_set_buffer() can be used instead.
2023-07-03cursor: remove usage of wlr_output_cursor_set_image()Simon Ser
Stop using wlr_output_cursor_set_image() because it's getting dropped. Instead, use wlr_output_cursor_set_buffer(). This mirrors what wlr_output_cursor_set_image() is doing under-the-hood.