Commit graph

483 commits

Author SHA1 Message Date
Simon Ser
53cd10ae77 xdg-shell: forbid loops in set_parent
These don't make sense. Add a protocol error for this case.

Signed-off-by: Simon Ser <contact@emersion.fr>
Closes: https://gitlab.freedesktop.org/wayland/wayland-protocols/-/issues/105
2022-09-17 08:49:35 +02:00
Jonas Ådahl
83866f19d3 build: Bump version to 1.26
Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
2022-07-07 16:28:55 +02:00
Simon Ser
3f90354eb5 single-pixel-buffer: new protocol
This protocol allows creating single-pixel buffers. It can be useful
to avoid having to allocate a real buffer just to fill it with the
same pixel value. Some use-cases include drawing background surfaces
or toplevel decorations.

Signed-off-by: Simon Ser <contact@emersion.fr>
2022-07-07 08:35:48 +00:00
Simon Ser
08067aed0f xdg-shell: introduce toplevel wm_capabilities
Some compositors don't implement all of the features of xdg-shell.
This results in UI elements (e.g. buttons) in clients which do
nothing when activated.

Add a wm_capabilities event to allow clients to hide these UI elements
when they don't make sense.

Signed-off-by: Simon Ser <contact@emersion.fr>
Closes: https://gitlab.freedesktop.org/wayland/wayland-protocols/-/issues/64
2022-07-07 08:21:08 +00:00
Peter Hutterer
c96e22a8f4 tablet: fix a copy/paste error
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2022-06-28 07:24:14 +10:00
Simon Ser
7350cbefd8 build: stop using deprecated Meson functions
Fixes the following warning:

    NOTICE: Future-deprecated features used:
     * 0.55.0: {'ExternalProgram.path'}
     * 0.56.0: {'dependency.get_pkgconfig_variable'}

Signed-off-by: Simon Ser <contact@emersion.fr>
2022-06-04 09:57:21 +02:00
Alexandros Frantzis
eb115b3137 readme: Mandate proper use of RFC 2119 keywords
This mandate makes explicit a practice that's already established in
the writing of the protocol descriptions, and officially clarifies the
meaning of the keywords for readers.

Signed-off-by: Alexandros Frantzis <alexandros.frantzis@collabora.com>
2022-06-01 16:49:06 +00:00
Daniel Stone
b06650146e xdg-shell: Delete duplicate paragraph in xdg_popup
This is already covered about three paragraphs above.

Signed-off-by: Daniel Stone <daniels@collabora.com>
2022-06-01 13:36:08 +01:00
Kenny Levinsen
2398378cf7 viewport: Remove mention of wl_surface.attach x/y
This paragraph contains an incomplete definition of how
wl_surface.attach x/y arguments functions, and makes no reference to the
similar wl_surface.offset.

The paragraph states that there is no effect on the behavior of
wl_surface.attach. Rather than elaborating on its definition and adding
wl_surface.offset, remove the paragraph and let their definition be up
to wl_surface itself.

Signed-off-by: Kenny Levinsen <kl@kl.wtf>
2022-04-11 07:35:45 +00:00
Kirill Primak
9b25b514c4 xdg-shell: clarify setting the parent to an unmapped toplevel
Signed-off-by: Kirill Primak <vyivel@eclair.cafe>
2022-04-06 06:33:51 +00:00
Simon Ser
db85bc1467 members: add Simon Zeni for wlroots/Sway
Simon Zeni has stepped up as a member for wlroots/Sway.

Signed-off-by: Simon Ser <contact@emersion.fr>
2022-03-29 10:56:46 +02:00
Carlos Garnacho
37fa0f4a4e text-input: Reword the interpretation of serials to be more specific
Here's a long story. The serial is formerly described as:

  When the client receives a done event with a serial different than the
  number of past commit requests, it must proceed as normal, except it
  should not change the current state of the zwp_text_input_v3 object.

Upon first reading it might be obvious to interpret "proceed as normal"
as "apply the changes made by the done event" and "not change the current
state" as "do not make requests on it until serial matches with
expectations again". This would turn the serial into a flow control
mechanism to avoid pushing state changes that we know might be stale.

GTK however makes another outlandish interpretation, where "proceed as
normal" means "ignore the changes made by the done event" and "not change
state of the zwp_text_input_v3 object" is "not change client state". This
makes the serial a full synchronization mechanism where IM commands that
are deemed out of sync are symply ignored.

This would seem a misinterpretation of the protocol, and I proceeded to
change the behavior in GTK. Then some deja vu feeling struck me and I found
https://gitlab.gnome.org/GNOME/gtk/-/merge_requests/384#note_344864, this
change was already done and discussed in the past. Not just that, it is
the right interpretation.

However, there's some notable disadvantages, there's 2 easy ways to
completely break the synchronization between compositor and client:
Having the IM push new state too often (i.e. multiple consecutive
.done events), or having the client .commit too often. If any of both
peers gets ahead of the other slightly, the end result is ignored input.
More specifically, IBus has no provision for this kind of transactional
behavior (probably other IMs too), so implementing "emit .done once after
a set of changes" is not quite possible.

Arguably, ignoring IM input is also a bad thing. IMs expect all commands
to be respected and applied in order and might even rely on that in
their own internal state. Since only state changes are flushed on .done
events, partially ignoring IM commands will end up with the client IM state
out of sync.

The usecase described at that GNOME gitlab comment (edited text changes
happening in parallel to IM interaction) trades the handling of an
inherently racy corner case with the worst kind of mishandling (ignoring
user input) if IM/client don't perfectly sync up.

On the other hand, the flow control approach is more lenient with IMs and
clients "getting a step ahead", and more importantly does not punish the
user whenever either IM/client happens to do that. Double down on this
(already intuitively correct) description, and specify further what it
implies.

Signed-off-by: Carlos Garnacho <carlosg@gnome.org>
2022-03-29 07:33:38 +00:00
Simon Ser
39c014cc9d members: say goodbye to Drew DeVault
Drew is no longer involved in Wayland development and has expressed
interest in being removed from the wayland-protocols project.

Thanks for all your contributions throughout the years, Drew!

Signed-off-by: Simon Ser <contact@emersion.fr>
2022-03-25 10:28:24 +01:00
Tadeo Kondrak
1293ff146e staging/drm-lease: Annotate destructor event
Signed-off-by: Tadeo Kondrak <me@tadeo.ca>
2022-02-25 14:22:20 -07:00
Tadeo Kondrak
8498e4c10d linux-explicit-synchronization: Annotate destructor events
Signed-off-by: Tadeo Kondrak <me@tadeo.ca>
2020-06-11 14:22:55 -06:00
Tadeo Kondrak
bbb683eb79 fullscreen-shell: Annotate destructor events
Signed-off-by: Tadeo Kondrak <me@tadeo.ca>
2020-06-11 14:22:39 -06:00
Tadeo Kondrak
cae8a2b6fc presentation-time: Annotate destructor events
Signed-off-by: Tadeo Kondrak <me@tadeo.ca>
2020-06-11 14:22:16 -06:00
Tadeo Kondrak
6a7c97988e build: Bump wayland-scanner version to 1.20.0
Wayland 1.20.0 adds support for the type attribute to mark events as
destructors.

Signed-off-by: Tadeo Kondrak <me@tadeo.ca>
2022-02-25 14:30:39 -07:00
Simon Ser
7e2d9e381e ci: upgrade wayland to 1.20.0
This will be useful to use features introduced in wayland 1.20,
e.g. event destructors.

Signed-off-by: Simon Ser <contact@emersion.fr>
2022-02-23 07:40:03 +00:00
Simon Ser
4cc189f2a0 ci: add meson-logs artifacts
Makes it easier to investigate CI failures.

Signed-off-by: Simon Ser <contact@emersion.fr>
2022-02-23 07:40:03 +00:00
Jonas Ådahl
d324986823 build: Bump version to 1.25
Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
2022-01-26 15:54:02 +01:00
Isaac Freund
220efff93a xdg-shell: add invalid_resize_edge error value
The protocol states that the edges parameter of the resize request must
be one of the values of the resize_edge enum but does not provide a
protocol error value to handle the case where it is not. This commit
adds that error value.

Signed-off-by: Isaac Freund <mail@isaacfreund.com>
2022-01-19 20:20:06 +00:00
Jonas Ådahl
344048614a xdg-shell: Add toplevel "bounds" configure event
This aims to communicate the maximum size a surface should be created
with, and loosely corresponds to the concept of "work area" in the X11
world.

Closes: https://gitlab.freedesktop.org/wayland/wayland-protocols/-/issues/17

Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
Reviewed-by: Simon Ser <contact@emersion.fr>
2022-01-19 09:54:22 +01:00
Simon Ser
c2ceb5f14d linux-dmabuf: fix typo in dev_t example code
dev_t is not a struct, it's a typedef.

Signed-off-by: Simon Ser <contact@emersion.fr>
2022-01-17 14:54:49 +00:00
Isaac Freund
a52b8f025a
ext-session-lock-v1: new protocol
This protocol allows for a privileged Wayland client to lock the
session and display arbitrary graphics while the session is locked.

The client is responsible for performing authentication and informing
the compositor when the session should be unlocked. If the client
dies while the session is locked the session remains locked, possibly
permanently depending on compositor policy.

Signed-off-by: Isaac Freund <mail@isaacfreund.com>
Reviewed-by: Simon Ser <contact@emersion.fr>
2021-12-28 17:23:03 +00:00
Max Ihlenfeldt
0aaf12157e xdg-shell: clarify conditions for remapping unmapped surfaces
Signed-off-by: Max Ihlenfeldt <mihlenfeldt@igalia.com>
2021-11-24 13:10:49 +01:00
Jonas Ådahl
bb7b3985ed build: Bump version to 1.24
Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
2021-11-23 10:10:40 +01:00
Simon Ser
c62be976d7 linux-dmabuf: send protocol error on invalid format/modifier
Now that compositors must send INVALID to advertise support for
implicit modifiers, we can make it a protocol error to add a
DMA-BUF plane with an unsupported format + modifier pair.

Signed-off-by: Simon Ser <contact@emersion.fr>
Reviewed-by: Daniel Stone <daniels@collabora.com>
2021-11-23 09:52:53 +01:00
Simon Ser
8a5cd28a0e unstable/linux-dmabuf: add wp_linux_dmabuf_feedback
On multi-GPU setups, multiple devices can be used for rendering. Clients
need feedback about the device in use by the compositor. For instance,
if they render on another GPU, then they need to make sure the memory is
accessible between devices and that their buffers are not placed in
hidden memory.

This commit introduces a new wp_linux_dmabuf_feedback object. This
object advertises a preferred main device, a set of preferred
formats/modifiers and target devices.

Each object is bound to a wl_surface and can dynamically update its
feedback parameters. This enables fine-grained per-surface
optimizations. For instance, when a surface is scanned out on a GPU the
compositor isn't compositing with, the target device can be set to this
GPU to avoid unnecessary roundtrips.

A feedback object can also be standalone for clients that don't support
per-surface feedback.

Signed-off-by: Simon Ser <contact@emersion.fr>
Signed-off-by: Leandro Ribeiro <leandro.ribeiro@collabora.com>
Reviewed-by: Daniel Stone <daniels@collabora.com>
Closes: https://gitlab.freedesktop.org/wayland/wayland/issues/59
2021-11-23 09:47:24 +01:00
Demi Marie Obenour
e5d63e9a3c Improve tiled_* enum summary
No change in behavior, just a doc fix.

Signed-off-by: Demi Marie Obenour <demiobenour@gmail.com>
2021-11-17 11:21:45 -05:00
Simon Ser
40cb7d47e6 linux-dmabuf: add note about pre-multiplied alpha
Add a note about pre-multiplied alpha for all DRM formats.
Include an escape hatch in the spec to allow other protocol
extensions to override this.

Essentially the same as [1].

[1]: https://gitlab.freedesktop.org/wayland/wayland/-/merge_requests/187

Signed-off-by: Simon Ser <contact@emersion.fr>
2021-11-10 15:01:34 +00:00
Simon Ser
61038f8a19 Drop autotools
It's been a few releases that we ship Meson support, we should be
able to drop the old autotools build system now.

Signed-off-by: Simon Ser <contact@emersion.fr>
2021-11-09 13:45:33 +01:00
Demi Marie Obenour
ce82f16624 Use “software” instead of “user space”
On Genode, graphics drivers run in user space.  It is also theoretically
possible for a Wayland compositor to run in kernel space.  Therefore,
the phrase “user space” should be avoided in a Wayland protocol
specification.

Signed-off-by: Demi Marie Obenour <demiobenour@gmail.com>
2021-10-13 10:37:26 -04:00
Alex Richardson
82c89e8fe7 tests: check whether -Wl,--unresolved-symbols=ignore-all is supported
When linking for macOS, this linker flag is rejected. Instead of
always passing it, we can check whether it is supported first.

Signed-off-by: Alex Richardson <Alexander.Richardson@cl.cam.ac.uk>
Reviewed-by: Simon Ser <contact@emersion.fr>
2021-10-11 11:13:31 +01:00
Alex Richardson
78f654ed95 tests: allow cross-compiling the tests
I am trying to cross-compile from macOS for FreeBSD and this is currently
failing since the tests attempt to build a native binary that links
against the wayland-client and wayland-server libraries for the FreeBSD
system. I believe we should be building them for the target system and
not the current host (especially since there is no way to build
wayland-client and wayland-server for macOS, but I do want to check that
the files build correctly for FreeBSD).

Signed-off-by: Alex Richardson <Alexander.Richardson@cl.cam.ac.uk>
Reviewed-by: Simon Ser <contact@emersion.fr>
2021-10-04 10:24:23 +01:00
Fabrice Fontaine
80e97bd00b meson.build: wayland-scanner is only needed for tests
wayland-scanner is only needed for tests so don't require it if tests
are disabled

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
2021-09-19 11:31:59 +02:00
Jonas Ådahl
cd15394361 build: Bump version to 1.23
Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
2021-09-15 14:50:30 +02:00
Peter Hutterer
824cea61e6 pointer-gestures: add hold gestures
Hold gestures merely denote "there are fingers on the touchpad but they are
not moving". As touchpad touches are generally fully abstracted, a client
cannot currently know when a user is interacting with the touchpad without
moving - no motion events will be sent in this case.

The two use-cases here are:
- hold-to-interact: where a hold gesture is active for some time
  a menu could pop up, or some object is selected, etc.
- hold-to-cancel: where e.g. kinetic scrolling is currently active, the start
  of a hold gesture can be used to stop the scroll

Since hold gestures by definition do not have movement, there is no need for
an "update" stage in the gesture.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2021-09-13 09:07:46 +00:00
David Edmundson
37c6035167 Set Vlad Zahorodnii as kwin maintainer
Signed-off-by: David Edmundson <davidedmundson@kde.org>
Signed-off by: Eike Hein <hein@kde.org>
2021-09-09 13:07:55 +01:00
Jonas Ådahl
b631f502b7 build: Bump version to 1.22
Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
2021-09-01 09:45:32 +02:00
Simon Ser
e9a88a2e6c build: only require C/C++ compilers for host
We use the no-op executables in test() directives, so these will be
run on the host. This fixes the following warning:

    tests/meson.build:23: WARNING: add_languages is missing native:, assuming
    languages are wanted for both host and build.

Signed-off-by: Simon Ser <contact@emersion.fr>
2021-09-01 09:26:17 +02:00
Simon Ser
9bc93d3ad2 build: fix indentation in tests/meson.build
The rest of the file uses tabs, not spaces.

Signed-off-by: Simon Ser <contact@emersion.fr>
2021-09-01 07:15:50 +00:00
Simon Ser
26843d6155 build: declare dependency for use as a subproject
This allows clients and compositors to easily use wayland-protocols
as a Meson subproject.

Signed-off-by: Simon Ser <contact@emersion.fr>
2021-09-01 07:14:00 +00:00
Daniel Stone
62e862fac4 tests: Include libwayland cflags/ldflags
When we're building C++ test executables, make sure we pull in the
correct libwayland headers, to avoid trying to compile against a version
different from the scanner we built it against.

Signed-off-by: Daniel Stone <daniels@collabora.com>
2021-08-28 20:54:26 +01:00
Simon Ser
7dffa6f346 readme: fix unformatted label references
The newlines prevent the labels from being properly formatted.
Additionally, the second label reference has a typo (extra "s").

Signed-off-by: Simon Ser <contact@emersion.fr>
2021-08-06 09:08:56 +02:00
Xaver Hugl
aa3df4084a staging/drm-lease: DRM lease protocol support
DRM leasing is a feature which allows the DRM master to "lease" a subset
of its DRM resources to another DRM master via drmModeCreateLease, which
returns a file descriptor for the new DRM master. We use this protocol
to negotiate the terms of the lease and transfer this file descriptor to
clients.

In less DRM-specific terms: this protocol allows Wayland compositors to
give over their GPU resources (like displays) to a Wayland client to
exclusively control.

The primary use-case for this is Virtual Reality headsets, which via the
non-desktop DRM property are generally not used as desktop displays by
Wayland compositors, and for latency reasons (among others) are most
useful to games et al if they have direct control over the DRM resources
associated with it. Basically, these are peripherals which are of no use
to the compositor and may be of use to a client, but since they are tied
up in DRM we need to use DRM leasing to get them into client's hands.

Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
Signed-off-by: Drew DeVault <sir@cmpwn.com>
Signed-off-by: Xaver Hugl <xaver.hugl@gmail.com>
Reviewed-by: Simon Ser <contact@emersion.fr>
Signed-off-by: David Edmundson <davidedmundson@kde.org>
Reviewed-by: Jonas Ådahl <jadahl@gmail.com>
2021-08-06 07:03:19 +00:00
Roman Gilg
7460f79e4b xdg-activation: rewrite and move description of token forwarding
After a requesting client receives a new token, the client usually forwards the
token string to another client by a different process, which then uses the
token in an activate request. For that the token string must be transferred to
the other process.

Two default ways of doing that were described in the done event, but the
description had some issues and it makes more sense to describe them in the
protocol description itself, which talks about the protocol in a more general
way. Therefore rewrite the paragraphs about token forwarding between clients
and place them in the protocol description.

Signed-off-by: Roman Gilg <subdiff@gmail.com>
2021-08-04 15:20:35 +00:00
Roman Gilg
855786de91 xdg-activation: correct sequence when X11 client spawns Wayland client
The Wayland client requests surface activation directly using the token
that it received from the X11 client.

Signed-off-by: Roman Gilg <subdiff@gmail.com>
2021-08-04 15:20:35 +00:00
Roman Gilg
e7183fb762 xdg-activation: use rst inline code
rst requires two backticks to format text as inline code.

Signed-off-by: Roman Gilg <subdiff@gmail.com>
2021-08-04 15:20:35 +00:00
Roman Gilg
7391c8e42f xdg-activation: use rst link
Instead of writing the link in brackets use the rst link functionality.

Signed-off-by: Roman Gilg <subdiff@gmail.com>
2021-08-04 15:20:35 +00:00