Skip to content
Snippets Groups Projects
  1. Apr 05, 2021
  2. Mar 31, 2021
    • Simon Ser's avatar
      linux-dmabuf: clarify what mixed valid/INVALID modifiers mean · 3683a5eb
      Simon Ser authored
      This commit makes it clear that compositors can send valid modifiers and
      DRM_FORMAT_MOD_INVALID for a given format. This means that the compositor
      supports both implicit and explicit modifiers. See the warning further
      down:
      
      > Warning: It should be an error if the format/modifier pair was not
      > advertised with the modifier event. This is not enforced yet because
      > some implementations always accept DRM_FORMAT_MOD_INVALID. Also
      > version 2 of this protocol does not have the modifier event.
      
      Xwayland already requires compositors to send DRM_FORMAT_MOD_INVALID
      for importing buffers with an implicit modifier [1].
      
      In a future protocol version, it would be nice to make it a protocol
      error (or at least a soft failure) to use any format/modifier pair that
      wasn't advertised. A use-case for this is Vulkan compositors: the Vulkan
      DMA-BUF extensions require an explicit modifier and cannot import
      buffers which have an implicit modifier.
      
      [1]: https://gitlab.freedesktop.org/xorg/xserver/-/blob/6c51818a0f55282cbe5a870f58ca82ca45ee472d/hw/xwayland/xwayland-glamor-gbm.c#L328
      
      
      
      Signed-off-by: Simon Ser's avatarSimon Ser <contact@emersion.fr>
      3683a5eb
    • Jonas Ådahl's avatar
      ci: Make the FDO_UPSTREAM_REPO variable global · 42da2294
      Jonas Ådahl authored
      ci-fairy doesn't know how to to look at $CI_MERGE_REQUEST_PROJECT_PATH
      right now, so if we don't manually set $FDO_UPSTREAM_REPO, ci-fairy will
      (without verbose logging turned on) silently fall back on the source
      repository project path for finding the branch point. This might fail if
      the owner of the source repository hasn't updated the `master` branch of
      their fork.
      
      Related: freedesktop/ci-templates#32
      
      
      
      Signed-off-by: default avatarJonas Ådahl <jadahl@gmail.com>
      42da2294
  3. Mar 26, 2021
  4. Feb 16, 2021
    • Pekka Paalanen's avatar
      linux-dmabuf: no buffer errors on device disappearance · f899eff0
      Pekka Paalanen authored
      This was prompted by the discussion from
      https://lists.freedesktop.org/archives/dri-devel/2020-May/266611.html
      
      
      which is not the final wording.
      
      When a DRM device is hot-unplugged, particularly if it is the Wayland
      compositor's compositing GPU, EGL may start returning errors from trying to use
      the client's dmabuf. Or, if the client is rendering on another GPU which gets
      hot-unplugged, the dmabuf the compositor already has may start failing.
      
      Hot-unplug is an abrupt global action, and there is no way a client or a
      compositor could ensure they clean up before things start failing. It is not
      the client's fault, so the client should not get disconnected if already
      existing wl_buffer objects start failing. This patch add the wording to the
      protocol to this effect.
      
      The intention is that the compositor replaces the failed buffers with some
      placeholder content. There is no way this could be glitch-free. In its own pace
      the client should discover the DRM device is gone, clean up, and perhaps use
      something else. How exactly that should happen depends on the rendering API the
      client is using.
      
      This is a tiny step towards making DRM device hot-unplug not crash
      applications that wish to handle the unplug gracefully.
      
      Signed-off-by: default avatarPekka Paalanen <pekka.paalanen@collabora.com>
      f899eff0
  5. Jan 05, 2021
  6. Jan 03, 2021
  7. Nov 03, 2020
    • Bhushan Shah's avatar
      text-input: document behavior regarding multiple text-inputs · 4ed0cafe
      Bhushan Shah authored and Bhushan Shah's avatar Bhushan Shah committed
      
      Currently protocol does not specify what should happen if multiple
      text-inputs are created by same client, which is why this is more or
      less undefined behavior currently in compositor implementations.
      
      If client has created more than one text-input objects and surface owned
      by the client is focused, then compositor must send enter event to all
      text-input objects, in case of enable request however only one
      text-input must be enabled per client per seat.
      
      Signed-off-by: default avatarBhushan Shah <bshah@kde.org>
      4ed0cafe
  8. Oct 15, 2020
  9. Oct 14, 2020
  10. Jun 19, 2020
  11. Apr 07, 2020
  12. Feb 29, 2020
    • Jonas Ådahl's avatar
    • Jonas Ådahl's avatar
      Makefile.am: Also distribute README.md, GOVERNANCE.md and MEMBERS.md · 035ffedd
      Jonas Ådahl authored
      
      README was distributed by default due to implicit autotools rules, so
      when we renamed to README.md, it stopped being included. While at it,
      also add the two other new files.
      
      Signed-off-by: default avatarJonas Ådahl <jadahl@gmail.com>
      035ffedd
    • Jonas Ådahl's avatar
    • Jonas Ådahl's avatar
      xdg-shell: Add support for explicit popup repositioning · 26f494ed
      Jonas Ådahl authored
      
      This commit adds protocol additions making it possible to request that a
      popup should be repositioned according to a new xdg_positioner object.
      
      Explicit popup moving is done using a new request on xdg_popup:
      xdg_popup.reposition. What it does is change the parameters used for
      positioning a popup by providing a new xdg_positioner object. This
      request is coupled with a new event; xdg_popup.repositioned, sent
      together with the configure events (xdg_popup.configure and
      xdg_surface.configure) to notify about the completion of the reposition
      request. The reposition request also takes a token that is later passed
      via the repositioned event; this is done so that a client may determine
      for which reposition request the compositor has sent configure events.
      
      Synchronization between surfaces to avoid state application race
      condition are deliberately left out, and should be handled by an
      external protocol.
      
      To brief the compositor of the future dimension of the parent that the
      compositor should position the popup against, a
      xdg_positioner.set_parent_size request is added.
      
      Lastly, a request to couple a xdg_positioner object with a parent
      configure event is added (xdg_positioner.set_parent_configure) in
      order for a compositor to pair a popup reposition request with a pending
      configure event, and it's resulting window geometry. This is necessary
      to, for example, properly constrain a popup given a future parent state.
      An example of when this may be necessary is an interactive resize where
      both the toplevel position and the relative popup position changes.
      
      Signed-off-by: default avatarJonas Ådahl <jadahl@gmail.com>
      Reviewed-by: default avatarMike Blumenkrantz <michael.blumenkrantz@gmail.com>
      Reviewed-by: Simon Ser's avatarSimon Ser <contact@emersion.fr>
      26f494ed
    • Jonas Ådahl's avatar
      xdg-shell: Add support for implicit popup repositioning · ebbad29e
      Jonas Ådahl authored
      
      This commit adds protocol additions making it possible to implicitly
      reposition an already mapped popup if the conditions for the constraint
      changed (e.g. toplevel moved).
      
      Implicit popup moving is done by setting a adjustment flag on the
      positioner used to create it that will cause the compositor to adjust
      the position as the conditions used to constrain it change.
      
      These changes may include, for example, changes in the position of the
      parent window or the geometry of the work area. To allow the client to
      update its content in response to the updated position, the client must
      ack the configure event, optionally with new content. Until the client
      acks this configure event, the existing positioner will continue to be
      used.
      
      Implicit repositioning by itself is racy regarding inter-surface
      synchronization of applied state. Inter-surface synchronization is
      deliberately left out of xdg-shell, and left to be handled externally.
      
      Signed-off-by: default avatarJonas Ådahl <jadahl@gmail.com>
      Reviewed-by: default avatarMike Blumenkrantz <michael.blumenkrantz@gmail.com>
      Reviewed-by: Simon Ser's avatarSimon Ser <contact@emersion.fr>
      ebbad29e
    • Jonas Ådahl's avatar
      xdg-shell: Remove left-over paragraph from pre positioner versions · 2b0c87ea
      Jonas Ådahl authored
      
      It mentioned the now removed x, y parameters of xdg_surface.get_popup.
      The xdg_positioner now has the relevant documentation that was
      previously documented by the now removed paragraph.
      
      Signed-off-by: default avatarJonas Ådahl <jadahl@gmail.com>
      Reviewed-by: Simon Ser's avatarSimon Ser <contact@emersion.fr>
      2b0c87ea
  13. Feb 25, 2020
  14. Jan 22, 2020
  15. Dec 18, 2019
    • Simon Ser's avatar
      Convert plaintext documents to Markdown · 733de762
      Simon Ser authored
      
      This converts GOVERNANCE, MEMBERS and README to Markdown documents.
      These are only cosmetic changes, the actual contents and wording have
      been retained.
      
      GitLab pretty-prints Markdown and adds anchors. We can now add links
      from one document to another.
      
      Unfortunately GOVERNANCE lettered lists have been converted to numbered
      lists, because Markdown doesn't support the former.
      
      Signed-off-by: Simon Ser's avatarSimon Ser <contact@emersion.fr>
      Closes: wayland/wayland-protocols#3
      733de762
  16. Nov 21, 2019
  17. Nov 20, 2019
  18. Sep 06, 2019
  19. Jul 25, 2019
  20. Jul 17, 2019
    • Jan-Marek Glogowski's avatar
      xdg-shell: use case to change the app ID at runtime · e0d6ad1d
      Jan-Marek Glogowski authored and Jonas Ådahl's avatar Jonas Ådahl committed
      
      LibreOffice is one big binary with explicit brandings for different
      application modules. This is represented in X11 by a different
      WM_CLASS setting for a window. The WM_CLASS is changed based on the
      loaded document at runtime. As a result LibreOffice already offers
      multiple desktop files with different icons, StartupWMClass
      entries and application names.
      
      This amendment of the set_app_id request just explicitly specifies
      the use case to change a surfaces' app ID at runtime, so a compositor
      implementor is made aware of it. Just as the WM_CLASS, a change of
      the app ID should result in an update of the propertes of a surface
      depending on the app ID, like the window icon specified in the
      desktop file or a re-grouping of the surfaces in a task manager.
      
      Signed-off-by: default avatarJan-Marek Glogowski <glogow@fbihome.de>
      Reviewed-by: default avatarJonas Ådahl <jadahl@gmail.com>
      Reviewed-by: Simon Ser's avatarSimon Ser <contact@emersion.fr>
      e0d6ad1d
    • Simon Ser's avatar
      pointer-gestures: add a release request · b9d427db
      Simon Ser authored and Jonas Ådahl's avatar Jonas Ådahl committed
      
      This allows clients to destroy a gesture object before they disconnect.
      
      The request isn't named "destroy", as this would conflict with
      wayland-scanner's auto-generated destructor (which just destroys the
      client-side object without sending any request).
      
      Signed-off-by: Simon Ser's avatarSimon Ser <contact@emersion.fr>
      Reviewed-by: default avatarJonas Ådahl <jadahl@gmail.com>
      b9d427db
    • Simon Ser's avatar
      xdg-output: deprecate the xdg_output.done event · 962dd535
      Simon Ser authored and Jonas Ådahl's avatar Jonas Ådahl committed
      This commit makes it so a wl_output.done event is guaranteed to be sent with a
      xdg_output.done event.
      
      This protocol change has been discussed in a recent xorg-devel discussions [1].
      
      First let's recap why a change is needed: Xwayland listens to both wl_output and
      xdg_output changes. When an output's properties change, Xwayland expects to
      receive both a wl_output.done event and an xdg_output.done event. If that's not
      the case, Xwayland doesn't update its state (so old state is still exposed to
      X11 clients).
      
      Most of the time, both objects will be updated at the same time (e.g. the
      current mode is changed, so both wl_output.mode and xdg_output.logical_size are
      sent) so this won't be an issue. However in some situations only one of
      wl_output or xdg_output changes. For instance:
      
      - The mode is changed at the same time as the scale, resulting in the same
        logical_size.
      - The compositor doesn't expose the outputs' position via wl_output, so whenever
        the position changes only xdg_output is updated.
      
      Both KDE [2] and wlroots [3] have experienced this issue.
      
      For this reason, I'd like to update the xdg-output protocol to make it mandatory
      to always send a wl_output.done event after xdg_output changes. This effectively
      makes wl_output.done atomically apply all output state (including the state of
      add-on objects like xdg_output). This approach is pretty similar to
      wl_surface.commit: this request will atomically apply surface state including
      the state of e.g. the xdg_surface object tied to the wl_surface.
      
      To update the protocol to reflect this new requirement we can either:
      
      - **Bump xdg_output version**. The current protocol doesn't specify that
        wl_output.done must be sent, adding this new requirement would be a breaking
        change. We need to fix Xwayland for the current xdg_output version (maybe make
        it non-atomic for the current version, atomic for the new one?). Should we
        deprecate xdg_output.done in the new version?
      - **Don't bump xdg_output version**. This clarifies what is expected in practice
        by Xwayland, a major xdg_output consumer, and what is currently implemented by
        all compositors.
      
      There's one issue with the "don't bump" approach: indeed in practice compositors
      always send wl_output.done and xdg_output.done in pairs, however the ordering
      between those two events is not guaranteed. This means some compositors might
      send this sequence:
      
          wl_output.geometry(…)
          wl_output.done()
          xdg_output.logical_position(…)
          xdg_output.done()
      
      In this case the wl_output.done event fails to atomically apply the xdg_output
      state.
      
      For this reason, I think bumping the version is a better approach.
      
      This commit also deprecates xdg_output.done, which doesn't have any purpose
      anymore.
      
      [1]: https://lists.x.org/archives/xorg-devel/2019-April/058148.html
      [2]: https://phabricator.kde.org/D19253
      [3]: https://github.com/swaywm/sway/issues/4064
      
      
      
      Signed-off-by: Simon Ser's avatarSimon Ser <contact@emersion.fr>
      Reviewed-by: default avatarOlivier Fourdan <ofourdan@redhat.com>
      Reviewed-by: default avatarJonas Ådahl <jadahl@gmail.com>
      962dd535
Loading