Simon Ser
508d8c9a01
compositor: handle renderer destroy
...
Don't leave a stale renderer pointer behind.
9 months ago
Alexander Orzechowski
8da93e5936
wlr_scene: Add support for custom swapchains
9 months ago
Vaxry
50eae512d9
xwayland: add wlr_xwayland_get_xwm_connection
...
Allows the compositors to get the xwm connection
9 months ago
Simon Ser
edbf8bf2ce
input-device: drop wlr_input_device.{vendor,product}
...
These aren't super useful without the bus type. Compositors can
fish back this information from the libinput device if they want to.
Closes: https://gitlab.freedesktop.org/wlroots/wlroots/-/issues/3818
9 months ago
Simon Ser
e21b975f5d
tablet-tool: add usb_vendor_id and usb_product_id to wlr_tablet
9 months ago
Isaac Freund
22178451f7
cursor-shape-v1: expose tablet tool in event
...
This allows compositors which use a separate cursor per tablet tool to
support setting tablet tool cursors individually using this protocol.
9 months ago
Isaac Freund
2a897af7dc
wlr_tablet_v2: fix destroy listener name
9 months ago
Isaac Freund
b821be5749
input-device: unconfuse tablet naming
...
WLR_INPUT_DEVICE_TABLET_TOOL is renamed to WLR_INPUT_DEVICE_TABLET
The input device corresponds to wlr_tablet, not wlr_tablet_tool.
9 months ago
Simon Ser
cfd605705f
input-device: fix WLR_INPUT_DEVICE_TABLET_TOOL doc comment
...
wlr_tablet_tool is not a wlr_input_device.
The name is confusing, but changing it would be a breaking change.
Let's fix the docs as a first step.
9 months ago
Simon Ser
488a23c169
pointer: drop enum wlr_axis_orientation
...
Instead, use enum wl_pointer_axis from the Wayland protocol.
9 months ago
Simon Ser
ec5263e6b7
pointer: drop enum wlr_axis_relative_direction
...
Instead, use enum wl_pointer_axis_relative_direction from the
Wayland protocol.
9 months ago
Simon Ser
812451cd8f
pointer: use enum wl_pointer_button_state
9 months ago
Simon Ser
9f4cf242d9
pointer: drop enum wlr_axis_source
...
Instead, use enum wl_pointer_axis_source from the Wayland protocol.
9 months ago
Simon Ser
c45e97f3a5
input-device: add doc comments
9 months ago
John Lindgren
2521fba37c
xwayland: add map_request signal
...
For XWayland surfaces that start maximized, it's best to send an initial
Configure event to set the size of the surface before mapping it. This
reduces visual glitches since the application sees the correct maximized
size when performing its initial layout and drawing.
wlroots surfaces emit their first "map" event after the XWayland window
has already been mapped and the first frame has been drawn & committed.
This is too late to send the initial Configure event.
So, add a new "map_request" event which is emitted immediately before
telling XWayland to map the window. Compositors can connect to this
event to send the initial Configure event to an XWayland app based on
its requested maximized (or fullscreen) state.
Compositors should not place anything visually on the screen at this
point but rather wait until the "map" event as before.
9 months ago
columbarius
9e426e70e6
ext-foreign-toplevel-list-v1: new protocol implementation
...
This implements the new ext-foreign-toplevel-list-v1 protocol [1].
Implemented analog to the zwlr-foreign-toplevel-management-v1 implementation.
The additional _ext_ in the names was added to avoid name collisions.
[1]: https://gitlab.freedesktop.org/wayland/wayland-protocols/-/merge_requests/187
Co-authored-by: Leon Henrik Plickat <leonhenrik.plickat@stud.uni-goettingen.de>
10 months ago
Austin Shafer
4cd556ea20
linux_dmabuf_v1: allow callbacks for checking dmabuf import
10 months ago
Kirill Primak
811ca199c4
xdg-shell: drop automatic surface configuration
...
Compositors now are expected to wait for an initial commit by checking
wlr_xdg_surface.initial_commit on every surface commit and send
(schedule) configure events manually.
10 months ago
Simon Ser
a8aeadeab2
switch: add docs
10 months ago
Simon Ser
967e788bc8
backend/session: add docs
10 months ago
Kirill Primak
7dfbd87771
compositor: drop wlr_surface.external_damage
10 months ago
Andri Yngvason
3a91dc1b48
Create & implement transient seat protocol
10 months ago
Simon Ser
6991f03767
linux-dmabuf-v1: switch to stable
...
The protocol is no longer unstable.
10 months ago
Simon Ser
ba3c1ae065
linux-dmabuf-v1: fix include guard name
10 months ago
Alexander Orzechowski
8dff1bb9bd
wlr_damage_ring: Replace wlr_damage_ring_rotate_buffer with original list impl
...
The seq based implementation is complex to reason about and doesn't even
work.
10 months ago
Kirill Primak
4688a371e0
compositor: don't get buffer from pending buffer resource too early
...
Fixes: https://gitlab.freedesktop.org/wlroots/wlroots/-/issues/3795
10 months ago
Simon Ser
4ec901bb33
scene: release shm buffers once uploaded
...
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.
10 months ago
Kirill Primak
0052078bd3
compositor: introduce wlr_surface_reject_pending()
10 months ago
Simon Ser
d1b39b5843
backend: take wl_event_loop instead of wl_display in wlr_backend_autocreate()
10 months ago
Simon Ser
f27808b8d9
backend/multi: take wl_event_loop instead of wl_display
10 months ago
Simon Ser
54f9944b48
backend/drm: drop wl_display argument
...
We can grab the event loop from the wlr_session instead.
10 months ago
Simon Ser
b62ac611c8
backend/x11: take wl_event_loop instead of wl_display
10 months ago
Simon Ser
ed0bba581b
backend/wayland: take wl_event_loop instead of wl_display
10 months ago
Simon Ser
f5e8fa48f3
backend/libinput: drop wl_display argument
...
We can grab the event loop from the wlr_session instead.
10 months ago
Simon Ser
682dbf36e5
backend/headless: take wl_event_loop instead of wl_display
10 months ago
Simon Ser
4ad6e6c298
backend: destroy multi backend when primary backend is
...
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.
10 months ago
Alexander Orzechowski
cca2bfbe92
output: Drop pending state
10 months ago
Simon Ser
00bb1b0f84
seat/pointer: add support for axis_relative_direction event
10 months ago
Simon Ser
88b16bac54
pointer: add support for axis relative direction
10 months ago
Isaac Freund
7129eaa1f2
keyboard: fix type of wlr_keyboard_modifiers.group
...
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.
10 months ago
MaxVerevkin
48721bca65
fix outdated comment in wlr_output.h
11 months ago
Simon Ser
d0da76fbf6
wl_drm: add deprecation notice
11 months ago
Simon Ser
57d7d79982
region: add docs for wlr_region_scale_xy() and wlr_region_confine()
11 months ago
Simon Ser
ab924064f2
scene: drop wlr_scene_set_presentation()
11 months ago
Simon Ser
d68ba9d6c2
presentation-time: drop wlr_presentation arg
...
There can only be a single presentation-time global advertised to
clients, this it's unnecessary to pass around the wlr_presentation
pointer.
11 months ago
Simon Ser
1968ada213
tearing-control-v1: synchronize state with surface
11 months ago
Simon Ser
0ea6b6e2cc
session-lock-v1: use wlr_surface_synced
11 months ago
Simon Ser
90e12fb978
pointer-constraints-v1: use wlr_surface_synced
11 months ago
Simon Ser
a6122c3ec5
layer-shell-v1: use wlr_surface_synced
11 months ago
Simon Ser
0e3d2222c2
xdg-decoration: use wlr_surface_synced for toplevel
11 months ago
Simon Ser
96aec06b0a
subcompositor: use wlr_surface_synced
11 months ago
Simon Ser
4b3553409a
xdg-shell: use wlr_surface_synced for popups
11 months ago
Simon Ser
9201431c29
xdg-shell: use wlr_surface_synced for toplevel
11 months ago
Simon Ser
69d9a4e2cb
xdg-shell: use wlr_surface_synced for wlr_xdg_surface
11 months ago
Simon Ser
7e1ae5548c
compositor: add wlr_surface_role.client_commit
11 months ago
Simon Ser
d847516765
compositor: add wlr_surface_synced
...
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.
11 months ago
Simon Ser
34d5af4172
compositor: add wlr_surface_state_has_buffer()
11 months ago
Simon Ser
43734f7c62
compositor: fix wlr_surface_has_buffer() doc comment
...
The function does not check whether the upload succeeded: it does
not check the wlr_client_buffer.
11 months ago
Simon Ser
66b6c349e7
compositor: remove unnecessary wlr_surface.has_buffer
...
No need to store this bit, we can infer it from buffer_width and
buffer_height.
11 months ago
Simon Ser
85f44f3684
pointer-constraints-v1: add cursor_hint.enabled
...
This allows compositors to check whether the cursor hint is set.
11 months ago
Simon Ser
fc7a0b93dd
backend/drm: add wlr_drm_backend_get_parent()
...
Allows compositors to figure out whether a DRM backend is
secondary on a multi-GPU setup.
12 months ago
Roman Gilg
3531007b75
render/pixman: add wlr_pixman_renderer_get_buffer_image()
...
This is similar to wlr_pixman_texture_get_image and can be useful for
compositors to access the rendering data.
12 months ago
Simon Ser
1f64f3925c
render/gles2: add wlr_gles2_renderer_get_buffer_fbo()
...
Replacement for wlr_gles2_renderer_get_current_fbo(). Wayfire uses
it for instance.
12 months ago
Simon Ser
6a2ff0dffe
compositor: drop surface precommit event
...
This is unused.
12 months ago
Alexander Orzechowski
06d301bf1a
wlr_scene: Track output damage separately
...
The damage ring is only supposed to keep track of damage within
the swapchain
12 months ago
Alexander Orzechowski
6e03d3015e
swapchain: Add wlr_swapchain_has_buffer
12 months ago
Alexander Orzechowski
d3a339a03e
renderer: Drop buffer binding
1 year ago
Alexander Orzechowski
3ed1268f64
render: Nuke old read pixels API
...
Sadly, the new API is not backwards compatible with the old API. Since
we have already switched all users in wlroots to the new API compositors
are already practically mandated to implement the new API. Let's get rid
of the old one since there is no point.
1 year ago
Alexander Orzechowski
57b18d26d0
wlr_texture: Introduce wlr_texture_preferred_read_format
1 year ago
Alexander Orzechowski
e85e8bc324
wlr_texture: Introduce wlr_texture_read_pixels_options helpers
1 year ago
Alexander Orzechowski
4c6caa7c48
wlr_texture: Introduce wlr_texture_read_pixels
1 year ago
Simon Ser
a165261f7f
output: replace wlr_render_timer arg with wlr_buffer_pass_options
...
This scales better when more render pass options are added.
1 year ago
Simon Ser
e8b187cc92
render/gles2: save/restore context when creating/submitting a render pass
...
This is useful for e.g. lazily blitting a texture for readback
purposes while rendering.
1 year ago
Simon Ser
1208ba6c28
render/gles2: document EGL context gotchas
1 year ago
Simon Ser
c31ca04264
output: drop stale references to wlr_output_attach_render()
...
It turns out we forgot about the function declaration in the header.
Also some docs were still referring to that function.
Move the wlr_output_attach_render() docs to
wlr_output_begin_render_pass().
1 year ago
Alexander Orzechowski
d7ecdad4e0
render: Drop rendering_with_buffer
...
This is always true now that we can only render with a buffer.
1 year ago
Alexander Orzechowski
7702a19739
output: Drop back_buffer
1 year ago
Alexander Orzechowski
fc6000251c
output: Drop wlr_output_attach_render
1 year ago
Alexander Orzechowski
3faf9883dc
renderer: Drop wlr_renderer_begin
1 year ago
Simon Ser
2093564616
damage_ring: add wlr_damage_ring_rotate_buffer()
...
This adds an alternate way to use wlr_damage_ring without the
concept of buffer age. Buffer age is a concept inherited from EGL
but there is no real reason why we should continue to use that in
wlroots. Instead, use wlr_buffer pointers.
Eventually, we should be able to remove the buffer age based
functions.
1 year ago
Kirill Primak
87346b3393
Revert "subcompositor: emit new_subsurface immediately"
...
new_subsurface emitted immediately isn't actually that useful. Revert the change
and document that this event is special.
This reverts commit 504b9491f0
.
1 year ago
Simon Ser
36cc698bc5
matrix: deprecate
...
Compositors should no longer need matrix operations to render:
the old rendering API has been removed, and the new API doesn't
take matrices as input.
1 year ago
Kirill Primak
7661ab2bf1
compositor: deprecate wlr/types/wlr_region.h
...
The only function in that header is now also declared in
wlr/types/wlr_compositor.h.
1 year ago
Alexander Orzechowski
26158d0718
output: Drop transform matrix
1 year ago
Kirill Primak
e841366068
layer-shell: emit new_surface event at the proper time
1 year ago
Kirill Primak
c85838892d
xdg-{shell,decoration}: improve events
...
This commit changes the behavior of `new_*` signals to better match
their names (see https://gitlab.freedesktop.org/wlroots/wlroots/-/issues/3608 ).
wlr_xdg_shell.events.new_surface is now emitted when an xdg_surface is
created, and wlr_xdg_shell.events.new_{toplevel,popup} events are
introduced to get notified when an xdg_{toplevel,popup} is created.
Same applies to
`wlr_xdg_decoration_manager_v1.events.new_toplevel_decoration`. As a
result, wlr_xdg_surface.added and wlr_xdg_toplevel_decoration_v1.added
are removed, as we no longer need to track whether the corresponding
event was emitted.
Additionally, this commit changes the behavior of
wlr_xdg_surface.events.destroy: it is now emitted when the xdg_surface
is destroyed, as the name suggests.
wlr_xdg_{toplevel,popup}.events.destroy events are added to get
notified when an xdg_{toplevel,popup} is destroyed.
1 year ago
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.
1 year ago
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.
1 year ago
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.
1 year ago
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.
1 year ago
Simon Ser
2eb225236e
util/transform: add wlr_output_transform_coords()
...
We hand-roll this in multiple places.
1 year ago
Simon Ser
9e702e9cfe
util/transform: move over wl_output_transform helpers
...
These aren't really tied to wlr_output.
1 year ago
Simon Ser
41494244df
render: drop legacy rendering API
1 year ago
Kirill Primak
5dd614b9ad
input-inhibitor: drop
...
wlr_input_inhibitor.h has been marked as deprecated in 0.17.0.
1 year ago
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
1 year ago
Kirill Primak
86b2cac921
Add missing type declarations in headers
1 year ago
Alexander Orzechowski
3d3cca9164
wlr_scene: Introduce wlr_scene_subsurface_tree_set_clip
1 year ago
Alexander Orzechowski
d1ddd4ca3a
wlr_scene_surface: Introduce scene_surface_set_clip
1 year ago
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.
1 year ago
Simon Ser
319e4125ab
xdg-shell: add wlr_xdg_{toplevel,popup}_try_from_wlr_surface()
...
Convenience helpers for compositors. Saves them the trouble of
manually checking the role (and if they forget to do so, prevents
an invalid cast).
1 year ago