aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-07-01wlr_scene: Don't recompute node location during renderingAlexander Orzechowski
We already compute it during the render list creation, we should cache it and re-use the value.
2023-07-01wlr_scene: Simplify direct scanout handlingAlexander Orzechowski
By adding a sent_feedback bool into the list entry that we can mutate we no longer need to maintain this `sent_direct_scanout_feedback` variable. sent_feedback will also be useful for output layers.
2023-07-01wlr_scene: Wrap render_list nodes in structAlexander Orzechowski
We will be able to add more state here
2023-06-30examples/pointer: use wlr_cursor_set_xcursor()Simon Ser
2023-06-30cursor: set image for new outputsSimon Ser
When an output is added to wlr_cursor, update its cursor image. Closes: https://gitlab.freedesktop.org/wlroots/wlroots/-/issues/2119
2023-06-30cursor: add cursor_update_outputs()Simon Ser
Sets the cursor image for each output depending on the wlr_cursor state.
2023-06-30cursor: keep track of XCursor manager and nameSimon Ser
Will be useful to apply the current cursor to new outputs.
2023-06-30cursor: track surface globally, instead of per-outputSimon Ser
Most of the surface-related state does not need to be per-output. Move it to wlr_cursor_state.
2023-06-30cursor: use wlr_cursor_unset_image() in wlr_cursor_set_surface()Simon Ser
2023-06-30cursor: store wlr_cursor inline in wlr_cursor_stateSimon Ser
Removes one allocation, makes this a bit more consistent with the rest of wlroots.
2023-06-30backend/drm: use panel_orientation if it is setClayton Craft
This fixes an issue where the panel_orientation parameter was set but wlroots was ignoring it and returning OUTPUT_TRANSFORM_NORMAL. Fixes 2e12de96
2023-06-30backend/drm: handle output layer damageSimon Ser
2023-06-30backend/wayland: handle output layer damageSimon Ser
2023-06-30output-layer: add wlr_output_layer_state.damageSimon Ser
Closes: https://gitlab.freedesktop.org/wlroots/wlroots/-/issues/3593
2023-06-29contributing: add instructions for forkingSimon Ser
2023-06-29util/log: fix buffer overflowEvyatar Stalinsky
2023-06-27wlr_scene_buffer: Publicize some stateAlexander Orzechowski
The sway scene port relies on this to create a copy of the buffer for saved surface purposes.
2023-06-27backend/headless: leave new outputs disabled by defaultSimon Ser
2023-06-27backend/x11: leave new outputs disabled by defaultSimon Ser
2023-06-27backend/wayland: mark new outputs as disabledSimon Ser
Leave it up to the compositor to enable new outputs (just like the DRM backend does).
2023-06-27examples: enable new outputsSimon Ser
2023-06-27tinywl: enable new outputsSimon Ser
2023-06-27backend/headless: add support for disabled outputsSimon Ser
We have nothing to do when a headless output is enabled/disabled.
2023-06-27backend/headless: only schedule a new frame if buffer was submittedSimon Ser
A no-op commit should not schedule a new frame. This aligns the headless backend with the rest of the backends. This will be important to handle the enabled → disabled transition.
2023-06-27backend/x11: unmap when output is disabledSimon Ser
2023-06-27backend/wayland: unmap when output is disabledSimon Ser
2023-06-27output: Set output mode during main commitAlexander Orzechowski
Removes duplication across all the backends to finally apply the mode to the output.
2023-06-27backend/wayland: Reject non 0 refresh rate mode setsAlexander Orzechowski
2023-06-27backend/x11: Reject non 0 refresh rate mode setsAlexander Orzechowski
2023-06-27backend/drm: Don't add pollute fixed modes list with custom modesAlexander Orzechowski
Nobody remembers why this is done and it isn't that great if people use a lot of custom modes.
2023-06-27wlr_scene: Add opaque region blend mode optimizationAlexander Orzechowski
If we are only rendering within a region of the surface that is advertised as opaque, we can choose no blending
2023-06-26examples/tablet: Don't use new render API and old render API togetherAlexander Orzechowski
We're using both APIs at the same time.
2023-06-26backend/drm: remove duplicate needs_frame() in set_cursor()Simon Ser
wlr_output_update_needs_frame() is called unconditionally at the end of the function already.
2023-06-23fullscreen-shell: set surface roleKirill Primak
2023-06-23output: add wlr_output_state_init()Simon Ser
This changes the semantics of wlr_output_state. Instead of having fields with uninitialized memory when missing from the committed bitflag, all fields are always initialized (and maybe NULL/empty), just like we do in wlr_surface_state. This reduces the chances of footguns when reading a field, and removes the need to check for the committed bitfield everywhere. A new wlr_output_state_init() function takes care of initializing the Pixman region.
2023-06-23compositor: listen to role_resource destroy signalSimon Ser
Call wlr_surface_destroy_role_object() when the role_resource is destroyed.
2023-06-23compositor: replace role_data with role_resourceSimon Ser
This increases type safety, makes it more obvious that role_data must represent the role object, and will allow for automatic cleanup when the resource is destroyed.
2023-06-23input-method-v2: add popup_surface_from_resource()Simon Ser
This checks the resource type before casting its user data pointer.
2023-06-23compositor: don't call role unmap hook without an objectKirill Primak
2023-06-23compositor: introduce wlr_surface_set_role_object()Kirill Primak
2023-06-23compositor: fix wlr_surface_set_role() error messagesKirill Primak
2023-06-22backend/drm: fix libliftoff_plane double-freeSimon Ser
Destroying the liftoff_device invalidates all of the liftoff_planes. Destroy the liftoff_planes before the liftoff_device to fix this.
2023-06-22xwayland: unset wlr_xwayland.server on destroySimon Ser
This fixes a use-after-free in the Sway patch to filter the Xwayland shell [1]. The server is destroyed first, then the shell. The Xwayland process might still be using the shell while running. When the shell is destroyed, libwayland will invoke the global filter (to figure out whether to send a wl_registry.global_remove to clients). Then Sway will compare the client with wlr_xwayland_server.client. However, at that point, the server is gone. Reset the server to NULL so that Sway can check whether the server is still running. [1]: https://github.com/swaywm/sway/pull/7647
2023-06-22cursor: add support for animated XCursorSimon Ser
2023-06-22output/swapchain: fix error return value typesSimon Ser
This function returns a bool, not a pointer.
2023-06-22scene: Use wlr_output_state_copy for direct scanout pathAlexander Orzechowski
2023-06-22output: Introduce wlr_output_state_copy()Alexander Orzechowski
2023-06-21render/vulkan: Don't compute texture.has_alpha until first...Alexander Orzechowski
...texture view is dynamically created
2023-06-21backend/drm: Fix typoAlexander Orzechowski
2023-06-20seat: fix keyboard/pointer/touch resource destroySimon Ser
We need to always unlink the resource, even if it's already inert. seat_client_destroy_*() may be called multiple times on the same resource. Closes: https://gitlab.freedesktop.org/wlroots/wlroots/-/issues/3638