aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-06-15cursor: add wlr_cursor_set_xcursor()Simon Ser
This keeps track of the last set XCursor. If it hasn't changed, skip the texture upload. In the future, support for animated XCursors can be added. Closes: https://gitlab.freedesktop.org/wlroots/wlroots/-/issues/3436
2023-06-15wlr_scene: Clear damage ring on transform changeAlexander Orzechowski
2023-06-15wlr_scene: Clear damage ring on scale changeAlexander Orzechowski
If we were trying to change the scale in wlr_scene_output_build_state, we would be using incorrect damage
2023-06-15wlr_scene: Reset damage ring bounds every frameAlexander Orzechowski
This fixes damage issues when a output state attempts to change the transformed size in some way
2023-06-15wlr_damage_ring_set_bounds: Ignore duplicate size requestsAlexander Orzechowski
2023-06-15wlr_scene: Fix transforms with non 1 scaleAlexander Orzechowski
wlr_region_transform / wlr_box_transform want unscaled coordinates here
2023-06-15output: add documentation for wlr_output_stateAlexander Orzechowski
2023-06-14build: drop proto_incSimon Ser
protocol/meson.build adds protocol header files to wlr_files. No need to add them via include dirs.
2023-06-14examples: drop unnecessary include_directoriesSimon Ser
wlr_inc is already pulled in via the wlroots dep. proto_inc is already pulled in because extra_src contains these headers.
2023-06-14compositor: add wlr_surface_role.no_objectKirill Primak
This commit allows to make a role as not represented by an object, which fixes calling role commit handlers for roles like cursor surfaces. Fixes: 099b9de752f9cc212140533a8a2e20b31aa9028f
2023-06-14backend/libinput: use struct initializers for eventsSimon Ser
This is more readable and consistent with the rest of wlroots.
2023-06-14backend/libinput: ignore multiple events for same pointer buttonSimon Ser
If the same button is pressed on two devices on the same seat, ignore the second event. This is also what Mutter does. Closes: https://gitlab.freedesktop.org/wlroots/wlroots/-/issues/3665
2023-06-13output: add wlr_output_state_set_layers()Simon Ser
2023-06-13tinywl: Drop usage of wlr_output.pendingAlexander Orzechowski
2023-06-13examples: Drop usage of wlr_output.pendingAlexander Orzechowski
2023-06-12wlr_scene: Don't use direct scanout if trying to commit a new render_formatAlexander Orzechowski
Found by inspection.
2023-06-12examples/output-layers: fix layers not included in commitSimon Ser
wlr_output_set_layers() attaches layers to the output's pending state, but then uses a detached wlr_output_state in wlr_output_state_commit(). This results in layers being left out of the committed state. Fixes: 8e81b4bb4237 ("examples: convert to new rendering API")
2023-06-12backend/drm: clip FB damageSimon Ser
The kernel complains when the damage exceeds the FB bounds: [73850.448326] i915 0000:00:02.0: [drm:drm_atomic_check_only] [PLANE:31:plane 1A] invalid damage clip 0 0 2147483647 2147483647 Make the DRM backend behave like the Wayland one and allow compositors to damage (0, 0, INT32_MAX, INT32_MAX) to repaint everything without needing to know the exact buffer size. Closes: https://github.com/swaywm/sway/issues/7632
2023-06-12wlr_output_state: Consider gamma_lut uninitialized if not committedAlexander Orzechowski
2023-06-12wlr_output_state: Consider buffer uninitialized if not committedAlexander Orzechowski
2023-06-12seat: remove a TODO comment about simulating keyboard eventsKirill Primak
2023-06-12cursor: only reset the cursor when the surface changesSimon Ser
If the set_cursor request is used with the same surface, don't call cursor_output_cursor_reset_image(). That function sends wl_surface.leave and can cause an infinite feedback loop with some clients (submitting a LoDPI cursor when the surface leaves an HiDPI output). Closes: https://gitlab.freedesktop.org/wlroots/wlroots/-/issues/3669
2023-06-12scene: introduce wlr_scene_output_build_state()Alexander Orzechowski
2023-06-12scene: Don't rely on output current state during renderingAlexander Orzechowski
In the next commit, state such as scale, transform, width/height that we gather from the output might be outdated and incorrect.
2023-06-12output: introduce wlr_output_state_set_damage()Alexander Orzechowski
2023-06-12render/vulkan: rename tex_usage to shm_tex_usageSimon Ser
Same motivation as fdb199a43c44 ("render/vulkan: rename tex_features to shm_tex_features").
2023-06-08gamma-control-v1: stop applying gamma LUTs implicitlySimon Ser
Make the compositor responsible for doing that, so that they can properly integrate with their output commit sequence.
2023-06-08gamma-control-v1: add wlr_gamma_control_v1_send_failed_and_destroy()Simon Ser
2023-06-08gamma-control-v1: add wlr_gamma_control_v1_apply()Simon Ser
2023-06-08output: add wlr_output_state_set_gamma_lut()Simon Ser
2023-06-08gamma-control-v1: add wlr_gamma_control_manager_v1_get_control()Simon Ser
2023-06-08gamma-control-v1: introduce set_gamma eventSimon Ser
2023-06-08compositor: improve role-specific documentationKirill Primak
2023-06-08subcompositor: set role_data with wlr_surface_set_role()Kirill Primak
2023-06-08drag: don't set icon's role_dataKirill Primak
Currently, an icon surface's role_data is set manually to a struct wlr_drag_icon, which is hacky, incorrect (as role_data is supposed to be the surface's role object, and drag icons don't have them), and will be disallowed by future changes.
2023-06-07render/vulkan: reset scissor before post-blend subpassSimon Ser
Otherwise only the last command's area will be copied over.
2023-06-07render/vulkan: fix blend subpass matrixSimon Ser
renderer->render_{width,height} are unused with the render pass API.
2023-06-07render/vulkan: fix bound pipeline check for output_pipeSimon Ser
renderer->bound_pipe is legacy, pass->bound_pipeline is used for the render pass API code-path. Closes: https://gitlab.freedesktop.org/wlroots/wlroots/-/issues/3657
2023-06-07render/vulkan: require format info for shmSimon Ser
We use the format info to check the stride and need it to perform the texture upload.
2023-06-07render/vulkan: de-duplicate texture VkImageView initSimon Ser
The logic is the same for both shm and DMA-BUF.
2023-06-07render/vulkan: split off YCbCr texture featuresSimon Ser
Avoids repeating the common bits between dma_tex_features and dma_tex_ycbcr_features, and we will need just the YCbCr-related flags for shm YCbCr support soon.
2023-06-07render/vulkan: rename tex_features to shm_tex_featuresSimon Ser
These features are required for shm only: the TRANSFER stuff is for texture upload. We don't need these for DMA-BUFs. Make this clearer by changing the name. Also re-order the definitions to group all texture-related features together.
2023-06-07cursor: fix applying hotspot offsetKirill Primak
"On surface.attach requests to the pointer surface, hotspot_x and hotspot_y are _decremented_ by the x and y parameters passed to the request."
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