Simon Ser
d61ec694b3
output: take wl_event_loop in wlr_output_init()
...
We don't need the whole wl_display here anymore. The wl_event_loop
is enough.
2023-11-23 11:39:25 +00:00
Simon Ser
d23d8ed3ba
output: setup display destroy listener in wlr_output_create_global()
...
The wl_display destroy listener cleans up the global (if any).
wlr_output.display will go away, so setup the listener in
wlr_output_create_global() instead of wlr_output_init().
2023-11-23 11:39:25 +00:00
Simon Ser
5717e27c06
output: take wl_display in wlr_output_create_global()
...
Currently wlr_output holds a wl_display, but it will go away soon.
Instead of relying on that field in wlr_output_create_global(),
make the dependency explicit by taking a wl_display as argument.
2023-11-23 11:39:25 +00:00
Simon Ser
6a7463bb8e
output-layout: take wl_display in constructor
...
The output layout creates and destroys wl_output globals. We will
soon need the wl_display to do so.
2023-11-23 11:39:25 +00:00
Kirill Primak
4c0be5f0a6
Introduce wlr_input_mapper
2023-11-23 14:30:00 +03:00
Simon Ser
63792b38e4
backend/session: take wl_event_loop instead of wl_display
...
wl_display holds a lot more than wlr_session needs: wlr_session
only needs to wait for a FD to become readable, but wl_display
provides full access to the Wayland client and protocol objects.
Switch to wl_event_loop to better reflect the above.
2023-11-23 11:15:07 +00:00
Kirill Primak
179d6efb19
input-device: add addons
2023-11-23 14:05:54 +03:00
novenary
f1762f428b
xwm: ensure stack list only contains mapped managed surfaces
2023-11-23 10:41:41 +00:00
novenary
720e8ac26b
xwm: avoid restacking managed surfaces above OR surfaces
...
This is consistent with other X11 window managers (checked against i3
and mutter).
2023-11-23 10:41:41 +00:00
Simon Ser
2eb225236e
util/transform: add wlr_output_transform_coords()
...
We hand-roll this in multiple places.
2023-11-23 11:07:34 +01:00
Simon Ser
9e702e9cfe
util/transform: move over wl_output_transform helpers
...
These aren't really tied to wlr_output.
2023-11-23 11:03:57 +01:00
Manuel Stoeckl
a3d22dbe97
xdg-toplevel: check that title provided actually is UTF-8
...
While the xdg-shell protocol requires this, it does not yet have
a dedicated error code for invalid titles; this commit makes
wlroots send a generic error instead.
2023-11-22 22:03:00 +03:00
Simon Ser
41494244df
render: drop legacy rendering API
2023-11-22 11:43:05 +01:00
Simon Ser
b2aac3390d
render/vulkan: drop legacy rendering API
2023-11-22 11:36:17 +01:00
Simon Ser
514caea437
render/pixman: drop legacy rendering API
2023-11-22 11:34:32 +01:00
Simon Ser
4635717d82
render/gles2: drop legacy rendering API
2023-11-22 11:33:10 +01:00
Simon Ser
0c83c331ca
output/cursor: drop legacy rendering API
2023-11-22 11:30:14 +01:00
Simon Ser
40633ae7fd
render: drop legacy render pass
...
All built-in renderers now implement the new API.
2023-11-22 00:55:56 +01:00
Kirill Primak
5dd614b9ad
input-inhibitor: drop
...
wlr_input_inhibitor.h has been marked as deprecated in 0.17.0.
2023-11-21 20:10:18 +03:00
Simon Ser
3b4d7d2a92
build: bump version to 0.18.0-dev
2023-11-21 17:28:06 +01:00
Simon Ser
fe53ec6937
tinywl: fix wlroots dependency constraint in Makefile
2023-11-21 17:22:02 +01:00
Simon Ser
767eedd3cb
build: bump version to 0.17.0
2023-11-21 17:06:13 +01:00
Manuel Stoeckl
dbe7fb7027
render/vulkan: undo alpha premult for 8-bpc ARGB/ABGR
...
When a texel from the Vulkan format VK_FORMAT_B8G8R8A8_SRGB is read,
the sRGB to linear conversion is applied independently to the R, G,
and B channels; the A channel has no influence on this. However,
DRM_FORMAT_ARGB8888 buffers are, per Wayland protocol, not encoded
in this fashion; one must first unpremultiply the color channels
before doing sRGB to linear conversion. This commit switches to
handling ARGB8888 and ABGR8888 formats using the general fragment
shader conversion from electrical to optical values.
2023-11-21 11:08:55 +00:00
Simon Ser
fe6a432299
linux-dmabuf-v1: skip import check on split render/display SoCs
...
Unfortunately we have no way to get back the proper render node in
that case. This will be fixed with [1]: with that Mesa patch, the
wlr_renderer will return the proper render node and the existing
logic will work fine.
[1]: https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24825
Closes: https://gitlab.freedesktop.org/wlroots/wlroots/-/issues/3757
2023-11-20 19:54:16 +01:00
Alexander Orzechowski
515681503e
screencopy: Use box size instead for shm copy
...
This doesn't change functionality, both the values are the same. Less
confusing to use the box size.
2023-11-20 11:33:11 -05:00
Alexander Orzechowski
7a22030071
screencopy: Move frame bounds sanity check into common code
2023-11-20 11:33:11 -05:00
Alexander Orzechowski
c8861a2865
screencopy: Define proper destination for dmabuf copy
...
Leaving this empty would have it filled in with the size of the source
texture, but we want the destination size.
Fixes : #3758
2023-11-20 11:33:10 -05:00
Simon Ser
bd18d5ccfc
backend/drm: drop unnecessary flags in legacy interface
...
drm_crtc_commit() already ensures that atomic-only flags are
disallowed.
2023-11-19 15:32:30 +01:00
Simon Ser
8c44e86077
backend/drm: add wlr_drm_connector_state.nonblock
...
Instead of having this condition checked in multiple places,
centralize it so that they don't go out-of-sync.
2023-11-19 15:32:30 +01:00
Simon Ser
f47b6e3fce
backend/drm: fix pending page-flip check
...
This chunk of code was moved by mistake.
Fixes: 3b53d1cbf1 ("backend/drm: introduce page-flip tracking struct")
2023-11-19 15:14:22 +01:00
Kirill Primak
c6b498528c
xcursor: don't store NULL xcursors
2023-11-19 15:33:39 +03:00
Kirill Primak
e16b0068a7
xcursor: fix NULL deref on malloc() fail
2023-11-19 15:33:39 +03:00
Alexander Orzechowski
b06d58fa8b
backend/drm: Destroy page flips on backend destroy
...
When we destroy the backend, page flips will no longer be invoked meaning
those won't clean up the page flips for us.
2023-11-17 14:34:32 -05:00
Alexander Orzechowski
3aed24b8d4
backend/drm: Track page flips in list
2023-11-17 13:49:18 -05:00
Simon Ser
3b53d1cbf1
backend/drm: introduce page-flip tracking struct
...
Introduce a per-page-flip tracking struct passed to the kernel
when we request a page-flip event for an atomic commit. The kernel
will pass us back this pointer when delivering the event.
This eliminates any risk of mixing up events together. In particular,
if two events are pending, or if the CRTC of a connector is swapped,
we no longer blow up in the page-flip event handler.
Closes: https://gitlab.freedesktop.org/wlroots/wlroots/-/issues/3753
2023-11-17 16:59:04 +00:00
sunzhguy
c9c9dd6a5b
backend/drm: free fb later
...
since 4932e0d347f("backend/drm: ensure plane surfaces are cleaned up on shutdown")
at finish_drm_resources called drm_plane_finsh_surface has already free the fb
Signed-off-by: zhoulei zhoulei@kylinos.cn
Signed-off-by: sunzhguy <sunzhigang1@kylinos.cn>
2023-11-17 12:38:21 +08:00
mfk530
92dabc3a01
xwayland: fix user_event_handler
...
Don't break and free event as the commont says:
wlr-xwayland will free the event.
2023-11-17 02:33:18 +00:00
Alexander Orzechowski
303f23d7dd
wlr_scene: Update outputs if subpixel status changes
...
This is important for buffers that are meant to render any sort of
text.
2023-11-15 18:42:12 -05:00
Alexander Orzechowski
50446fe75e
wlr_scene: Update outputs when primary output is changed
...
Helpers care about the primary output. They need to know when it changes
even if intersection status has not changed necessarily.
2023-11-15 18:42:12 -05:00
Alexander Orzechowski
889c5ed5ff
wlr_scene: Update outputs when output scale/transform changes
...
We want to call the outputs updated signal when an output scale or transform
changes. Otherwise helpers like the scene surface helpers will not be
notified of scale changes and not pass them to clients.
2023-11-15 18:38:12 -05:00
Simon Ser
b0bd86285f
backend/drm: leave CRTCs on when shutting down
...
This avoids a black screen during multiple seconds on shutdown.
To fully allow for flicker-free transitions between DRM masters,
we will also need [1].
[1]: https://gitlab.freedesktop.org/wlroots/wlroots/-/merge_requests/4394
Closes: https://gitlab.freedesktop.org/wlroots/wlroots/-/issues/3497
2023-11-15 01:37:59 +00:00
Simon Ser
4932e0d347
backend/drm: ensure plane surfaces are cleaned up on shutdown
...
Right now this is done "by chance" because we disable all CRTCs
on shutdown. However, we'll stop doing this. Plus, if disabling
a CRTC fails, we don't cleanup properly.
2023-11-15 01:37:59 +00:00
Kirill Primak
86b2cac921
Add missing type declarations in headers
2023-11-14 18:44:53 +00:00
Alexander Orzechowski
3d3cca9164
wlr_scene: Introduce wlr_scene_subsurface_tree_set_clip
2023-11-14 17:27:08 +00:00
Alexander Orzechowski
d1ddd4ca3a
wlr_scene_surface: Introduce scene_surface_set_clip
2023-11-14 17:27:08 +00:00
Alexander Orzechowski
c6d356648c
set_buffer_with_surface_state: Take whole surface struct
2023-11-14 17:27:08 +00:00
Alexander Orzechowski
1c0b10b61a
wlr_scene_subsurface_tree: Addon to scene
...
We will need this later so that we can determine the subsurface tree
that owns any given scene node.
2023-11-14 17:27:08 +00:00
Alexander Orzechowski
33b437d574
wlr_scene: Amend scene_buffer.point_accepts_input to take coordinate pointers
...
The pointers mean that we can mutate them. This will be useful later
so we can hide details from the compositor when we clip subsurface trees.
2023-11-14 17:27:08 +00:00
Kirill Primak
6cf0bb4b19
tinywl: don't use "I"/"my" in docs
2023-11-14 19:46:04 +03:00
Kirill Primak
73a387d3b6
tinywl: fix xdg_toplevel_destroy() docs
2023-11-14 19:40:26 +03:00