Software:Wayland (display server protocol)

From HandWiki
Short description: Display system intended to replace X11
Wayland
Wayland Logo.svg
Weston 10.0 screenshot.png
Weston, the reference implementation of a Wayland server.
Original author(s)Kristian Høgsberg
Developer(s)freedesktop.org et al.
Initial release30 September 2008; 15 years ago (2008-09-30)[1]
Stable release
Wayland: 1.20,[2] Weston: 10.0[3] / 9 December 2021; 2 years ago (2021-12-09)
Written inC
Operating systemOfficial: Linux
Unofficial: NetBSD, FreeBSD, DragonFly BSD[4]
Type
LicenseMIT License[5][6][7]
Websitewayland.freedesktop.org

Wayland is a communication protocol that specifies the communication between a display server and its clients, as well as a C library implementation of that protocol.[8] A display server using the Wayland protocol is called a Wayland compositor, because it additionally performs the task of a compositing window manager.

Wayland is developed by a group of volunteers initially led by Kristian Høgsberg as a free and open-source community-driven project with the aim of replacing the X Window System with a modern, secure[9][10][11][12] simpler windowing system in Linux and other Unix-like operating systems.[8][13] The project's source code is published under the terms of the MIT License, a permissive free software licence.[13][5]

As part of its efforts, the Wayland project also develops a reference implementation of a Wayland compositor called Weston.[8]

Overview

  1. The evdev module of the Linux kernel gets an event and sends it to the Wayland compositor.
  2. The Wayland compositor looks through its scenegraph to determine which window should receive the event. The scenegraph corresponds to what is on screen and the Wayland compositor understands the transformations that it may have applied to the elements in the scenegraph. Thus, the Wayland compositor can pick the right window and transform the screen coordinates to window local coordinates, by applying the inverse transformations. The types of transformation that can be applied to a window is only restricted to what the compositor can do, as long as it can compute the inverse transformation for the input events.
  3. As in the X case, when the client receives the event, it updates the UI in response. But in the Wayland case, the rendering happens by the client via EGL, and the client just sends a request to the compositor to indicate the region that was updated.
  4. The Wayland compositor collects damage requests from its clients and then re-composites the screen. The compositor can then directly issue an ioctl to schedule a pageflip with KMS.

The Wayland Display Server project was started by Red Hat developer Kristian Høgsberg in 2008.[14]

Beginning around 2010, Linux desktop graphics have moved from having "a pile of rendering interfaces... all talking to the X server, which is at the center of the universe" towards putting the Linux kernel and its components (i.e. Direct Rendering Infrastructure (DRI), Direct Rendering Manager (DRM)) "in the middle", with "window systems like X and Wayland ... off in the corner". This will be "a much-simplified graphics system offering more flexibility and better performance".[15]

Høgsberg could have added an extension to X as many recent projects have done, but preferred to "[push] X out of the hotpath between clients and the hardware" for reasons explained in the project's FAQ:[13]

What’s different now is that a lot of infrastructure has moved from the X server into the kernel (memory management, command scheduling, mode setting) or libraries (cairo, pixman, freetype, fontconfig, pango, etc.), and there is very little left that has to happen in a central server process. ... [An X server has] a tremendous amount of functionality that you must support to claim to speak the X protocol, yet nobody will ever use this. ... This includes code tables, glyph rasterization and caching, XLFDs (seriously, XLFDs!), and the entire core rendering API that lets you draw stippled lines, polygons, wide arcs and many more state-of-the-1980s style graphics primitives. For many things we've been able to keep the X.org server modern by adding extension such as XRandR, XRender and COMPOSITE ... With Wayland we can move the X server and all its legacy technology to an optional code path. Getting to a point where the X server is a compatibility option instead of the core rendering system will take a while, but we'll never get there if [we] don’t plan for it.

Wayland consists of a protocol and a reference implementation named Weston. The project is also developing versions of GTK and Qt that render to Wayland instead of to X. Most applications are expected to gain support for Wayland through one of these libraries without modification to the application.

Initial versions of Wayland have not provided network transparency, though Høgsberg noted in 2010 that network transparency is possible.[16] It was attempted as a Google Summer of Code project in 2011, but was not successful.[17] Adam Jackson has envisioned providing remote access to a Wayland application by either "pixel-scraping" (like VNC) or getting it to send a "rendering command stream" across the network (as in RDP, SPICE or X11).[18] As of early 2013, Høgsberg is experimenting with network transparency using a proxy Wayland server which sends compressed images to the real compositor.[19][20] In August 2017, GNOME saw the first such pixel-scraping VNC server implementation under Wayland.[21]

Software architecture

Protocol architecture

In the Wayland protocol architecture, a client and a compositor communicate through the Wayland protocol using the reference implementation libraries.

The Wayland protocol follows a client–server model in which clients are the graphical applications requesting the display of pixel buffers on the screen, and the server (compositor) is the service provider controlling the display of these buffers.

The Wayland reference implementation has been designed as a two-layer protocol:[22]

  • A low-level layer or wire protocol that handles the inter-process communication between the two involved processes‍—‌client and compositor‍—‌and the marshalling of the data that they interchange. This layer is message-based and usually implemented using the kernel IPC services, specifically Unix domain sockets in the case of Linux and Unix-like operating systems.[23]:9
  • A high-level layer built upon it, that handles the information that client and compositor need to exchange to implement the basic features of a window system. This layer is implemented as "an asynchronous object-oriented protocol".[23]:9

While the low-level layer was written manually in C, the high-level layer is automatically generated from a description of the elements of the protocol stored in XML format.[24] Every time the protocol description of this XML file changes, the C source code that implements such protocol can be regenerated to include the new changes, allowing a very flexible, extensible and error-proof protocol.

The reference implementation of Wayland protocol is split in two libraries: a library to be used by Wayland clients called libwayland-client and a library to be used by Wayland compositors called libwayland-server.[23]:57

Protocol overview

The Wayland protocol is described as an "asynchronous object-oriented protocol".[23]:9 Object-oriented means that the services offered by the compositor are presented as a series of objects living on the same compositor. Each object implements an interface which has a name, a number of methods (called requests) as well as several associated events. Every request and event has zero or more arguments, each one with a name and a data type. The protocol is asynchronous in the sense that requests do not have to wait for synchronized replies or ACKs, avoiding round-trip delay time and achieving improved performance.

The Wayland clients can make a request (a method invocation) on some object if the object's interface supports that request. The client must also supply the required data for the arguments of such request. This is the way the clients request services from the compositor. The compositor in turn sends information back to the client by causing the object to emit events (probably with arguments too). These events can be emitted by the compositor as a response to a certain request, or asynchronously, subject to the occurrence of internal events (such as one from an input device) or state changes. The error conditions are also signaled as events by the compositor.[23]:9

For a client to be able to make a request to an object, it first needs to tell the server the ID number it will use to identify that object.[23]:9 There are two types of objects in the compositor: global objects and non-global objects. Global objects are advertised by the compositor to the clients when they are created (and also when they are destroyed), while non-global objects are usually created by other objects that already exist as part of their functionality.[25]

The interfaces and their requests and events are the core elements that define the Wayland protocol. Each version of the protocol includes a set of interfaces, along with their requests and events, which are expected to be in any Wayland compositor. Optionally, a Wayland compositor may define and implement its own interfaces that support new requests and events, thereby extending functionality beyond the core protocol.[23]:10 To facilitate changes to the protocol, each interface contains a "version number" attribute in addition to its name; this attribute allows for distinguishing variants of the same interface. Each Wayland compositor exposes not only what interfaces are available, but also the supported versions of those interfaces.[23]:12

Wayland core interfaces

The interfaces of the current version of Wayland protocol are defined in the file protocol/wayland.xml of the Wayland source code.[24] This is an XML file that lists the existing interfaces in the current version, along with their requests, events and other attributes. This set of interfaces is the minimum required to be implemented by any Wayland compositor.

Some of the most basic interfaces of the Wayland protocol are:[23]:10-12

  • wl_display – the core global object, a special object to encapsulate the Wayland protocol itself
  • wl_registry – the global registry object, in which the compositor registers all the global objects that it wants to be available to all clients
  • wl_compositor – an object that represents the compositor, and is in charge of combining the different surfaces into one output
  • wl_surface – an object representing a rectangular area on the screen, defined by a location, size and pixel content
  • wl_buffer – an object that, when attached to a wl_surface object, provides its displayable content
  • wl_output – an object representing the displayable area of a screen
  • wl_pointer, wl_keyboard, wl_touch – objects representing different input devices like pointers or keyboards
  • wl_seat – an object representing a seat (a set of input/output devices) in multiseat configurations

A typical Wayland client session starts by opening a connection to the compositor using the wl_display object. This is a special local object that represents the connection and does not live within the server. By using its interface the client can request the wl_registry global object from the compositor, where all the global object names live, and bind those that the client is interested in. Usually the client binds at least a wl_compositor object from where it will request one or more wl_surface objects to show the application output on the display.[25]

Wayland extension interfaces

A Wayland compositor can define and export its own additional interfaces.[23]:10 This feature is used to extend the protocol beyond the basic functionality provided by the core interfaces, and has become the standard way to implement Wayland protocol extensions. Certain compositors can choose to add custom interfaces to provide specialized or unique features. The Wayland reference compositor, Weston, used them to implement new experimental interfaces as a testbed for new concepts and ideas, some of which later became part of the core protocol (such as wl_subsurface interface added in Wayland 1.4[26]).

Extension protocols to the core protocol

XDG-Shell protocol

XDG-Shell protocol (see freedesktop.org for XDG) is an extended way to manage surfaces under Wayland compositors (not only Weston). The traditional way to manipulate (maximize, minimize, fullscreen, etc.) surfaces is to use the wl_shell_*() functions, which are part of the core Wayland protocol and live in libwayland-client. An implementation of the xdg-shell protocol, on the contrary, is supposed to be provided by the Wayland compositor. So you will find the xdg-shell-client-protocol.h header in the Weston source tree. Each Wayland compositor is supposed to provide its own implementation.

(As of June 2014), XDG-Shell protocol was not versioned and still prone to changes.

xdg_shell is a protocol aimed to substitute wl_shell in the long term, but will not be part of the Wayland core protocol. It starts as a non-stable API, aimed to be used as a development place at first, and once features are defined as required by several desktop shells, it can be finally made stable. It provides mainly two new interfaces: xdg_surface and xdg_popup. The xdg_surface interface implements a desktop-style window that can be moved, resized, maximized, etc.; it provides a request for creating child/parent relationship. The xdg_popup interface implements a desktop-style popup/menu; an xdg_popup is always transient for another surface, and also has implicit grab.[27]

IVI-Shell protocol

IVI-Shell is an extension to the Wayland core protocol, targeting in-vehicle infotainment (IVI) devices.[28]

Rendering model

Wayland compositor and its clients use EGL to draw directly into the framebuffer; X.Org Server with XWayland and Glamor.

The Wayland protocol does not include a rendering API.[23]:7[13][29][30]:2 Instead, Wayland follows a direct rendering model, in which the client must render the window contents to a buffer shareable with the compositor.[23]:7 For that purpose, the client can choose to do all the rendering by itself, use a rendering library like Cairo or OpenGL, or rely on the rendering engine of high-level widget libraries with Wayland support, such as Qt or GTK. The client can also optionally use other specialized libraries to perform specific tasks, such as Freetype for font rendering.

The resulting buffer with the rendered window contents are stored in a wl_buffer object. The internal type of this object is implementation dependent. The only requirement is that the content data must be shareable between the client and the compositor. If the client uses a software (CPU) renderer and the result is stored in the system memory, then client and compositor can use shared memory to implement the buffer communication without extra copies. The Wayland protocol already natively provides this kind of shared memory buffer through the wl_shm and wl_shm_pool interfaces.[23]:11, 20-21 The drawback of this method is that the compositor may need to do additional work (usually to copy the shared data to the GPU) to display it, which leads to slower graphics performance.

The most typical case is for the client to render directly into a video memory buffer using a hardware (GPU) accelerated API such as OpenGL, OpenGL ES or Vulkan. Client and compositor can share this GPU-space buffer using a special handler to reference it.[31] This method allows the compositor to avoid the extra data copy through itself of the main memory buffer client-to-compositor-to-GPU method, resulting in faster graphics performance, and is therefore the preferred one. The compositor can further optimize the composition of the final scene to be shown on the display by using the same hardware acceleration API as an API client.

When rendering is completed in a shared buffer, the Wayland client should instruct the compositor to present the rendered contents of the buffer on the display. For this purpose, the client binds the buffer object that stores the rendered contents to the surface object, and sends a "commit" request to the surface, transferring the effective control of the buffer to the compositor.[22] Then the client waits for the compositor to release the buffer (signaled by an event) if it wants to reuse the buffer to render another frame, or it can use another buffer to render the new frame, and, when the rendering is finished, bind this new buffer to the surface and commit its contents.[23]:7 The procedure used for rendering, including the number of buffers involved and their management, is entirely under the client control.[23]:7

Comparison with other window systems

Differences between Wayland and X

There are several differences between Wayland and X with regard to performance, code maintainability, and security:[32]

Architecture
The composition manager is a separate, additional feature in X, while Wayland merges display server and compositor as a single function.[33][29] Also, it incorporates some of the tasks of the window manager, which in X is a separate client-side process.[34]
Compositing
Compositing is optional in X, but mandatory in Wayland. Compositing in X is "active"; that is, the compositor must fetch all pixel data, which introduces latency. In Wayland, compositing is "passive", which means the compositor receives pixel data directly from clients.[35]:8-11
Rendering
The X server itself is able to perform rendering, although it can also be instructed to display a rendered window sent by a client. In contrast, Wayland does not expose any API for rendering, but delegates to clients such tasks (including the rendering of fonts, widgets, etc.).[33][29] Window decorations can be rendered on the client side (e.g., by a graphics toolkit) or on the server side (by the compositor).[36]
Security
Wayland isolates the input and output of every window, achieving confidentiality, integrity and availability for both. The original X design lacked these important security features,[10][11][12] although some extensions have been developed trying to mitigate it.[37][38][39] Also, with the vast majority of the code running in the client, less code needs to run with root privileges, improving security,[10] although multiple popular Linux distributions now allow X to be run without root privileges.[40][41][42][43]
Inter-process communication
The X server provides a basic communication method between X clients, later extended by ICCCM conventions. This X client-to-client communication is used by window managers and also to implement X sessions, selections and drag-and-drop, and other features. The Wayland core protocol does not support communication between Wayland clients at all as the corresponding functionality (if needed) is regarded by the Wayland community as something which should be implemented by the desktop environments (like KDE or GNOME), or by a third party (for example, by using native IPC of the underlying operating system).
Networking
The X Window System is an architecture that was designed at its core to run over a network. Wayland does not offer network transparency by itself;[13] however, a compositor can implement any remote desktop protocol to achieve remote display. In addition, there is research into Wayland image streaming and compression that would provide remote frame buffer access similar to that of VNC.[20]

Compatibility with X

XWayland is an X Server running as a Wayland client, and thus is capable of displaying native X11 client applications in a Wayland compositor environment.[44] This is similar to the way XQuartz runs X applications in macOS’s native windowing system. The goal of XWayland is to facilitate the transition from X Window System to Wayland environments, providing a way to run unported applications in the meantime. XWayland was mainlined into X.Org Server version 1.16.[45]

Widget toolkits such as Qt5 and GTK3 can switch their graphical back-end at run time,[46] allowing users to choose at load time whether they want to run the application over X or over Wayland. Qt 5 provides the -platform command-line option[47] to that effect, whereas GTK 3 lets users select the desired GDK back-end by setting the GDK_BACKEND Unix environment variable.[46][48]

Wayland compositors

Typical elements of a window. Neither Wayland nor X11 specifies what software is responsible for rendering the window decoration. Weston requires that they are drawn by the client, but KWin will implement server-side decoration.[36]
Plasma 5.24.0 (February 2022) on Wayland (kwin_wayland compositor) under Arch Linux


Display servers that implement the Wayland display server protocol are also called Wayland compositors because they additionally perform the task of a compositing window manager.

  • Weston – the reference implementation of a Wayland compositor; Weston implements client side decorations
  • Enlightenment claimed full Wayland support since version 0.20[49] but work is currently underway to land a complete Wayland compositor[50]
  • KWin has nearly complete Wayland support as of 2021[51]
  • Mutter maintains a separate branch for the integration of Wayland for GNOME 3.9 (in September 2013)[52]
  • Clayland – a simple example Wayland compositor using Clutter
  • Sway – a tiling Wayland compositor and a drop-in replacement for the i3 window manager for X11.[53] Sway uses wlroots – a modular Wayland implementation that functions as a base for several compositors.[54][55]

Weston

Weston is the reference implementation of a Wayland compositor[56] also developed by the Wayland project. It is written in C and published under the MIT License. Weston has official support for only the Linux operating system due to Weston's dependence on certain features of the Linux kernel, such as kernel mode-setting, Graphics Execution Manager (GEM), and udev, which have not been implemented in other Unix-like operating systems.[57] When running on Linux, handling of the input hardware relies on evdev, while the handling of buffers relies on Generic Buffer Management (GBM). However, in 2013 a prototype port of Weston to FreeBSD was announced.[58]

Weston supports High-bandwidth Digital Content Protection (HDCP).[59]

Weston relies on GEM to share application buffers between the compositor and applications. It contains a plug-in system of "shells" for common desktop features like docks and panels.[20] Clients are responsible for the drawing of their window borders and their decorations. For rendering, Weston can use OpenGL ES[60] or the pixman library to do software rendering.[61] The full OpenGL implementation is not used, because on most current systems, installing the full OpenGL libraries would also install GLX and other X Window System support libraries as dependencies.[62]

A remote access interface for Weston was proposed in October 2013 by a RealVNC employee.[63]

Maynard

Maynard (in January 2017)

Maynard is a graphical shell and has been written as a plug-in for Weston, just as the GNOME Shell has been written as a plug-in to Mutter.[64]

The Raspberry Pi Foundation in collaboration with Collabora released Maynard and work on improving performance and memory consumption.[65][66]

libinput

libinput was created to consolidate the input stack across multiple Wayland compositors.

The Weston code for handling input devices (keyboards, pointers, touch screens, etc.) was split into its own separate library, called libinput, for which support was first merged in Weston 1.5.[67][68]

Libinput handles input devices for multiple Wayland compositors and also provides a generic X.Org Server input driver. It aims to provide one implementation for multiple Wayland compositors with a common way to handle input events while minimizing the amount of custom input code compositors need to include. libinput provides device detection[clarification needed] (via udev), device handling, input device event processing and abstraction.[69][70]

Version 1.0 of libinput followed version 0.21, and included support for tablets, button sets and touchpad gestures. This version will maintain stable API/ABI.[71]

As GNOME/GTK and KDE Frameworks 5[72] have mainlined the required changes, Fedora 22 will replace X.Org's evdev and Synaptics drivers with libinput.[73]

With version 1.16, the X.Org Server obtained support for the libinput library in form of a wrapper called xf86-input-libinput.[74][75]

Wayland Security Module

Wayland Security Module is a proposition that resembles the Linux Security Module interface found in the Linux kernel.[76]

Some applications (especially the ones related to accessibility) require privileged capabilities that should work across different Wayland compositors. Currently,[when?] applications under Wayland are generally unable to perform any sensitive tasks such as taking screenshots or injecting input events. Wayland developers are actively looking for feasible ways to handle privileged clients securely and then designing privileged interfaces for them.

Wayland Security Module is a way to delegate security decisions within the compositor to a centralized security decision engine.[76]

Adoption

The Wayland protocol is designed to be simple so that additional protocols and interfaces need to be defined and implemented to achieve a holistic windowing system. (As of July 2014) these additional interfaces were being worked on. So, while the toolkits already fully support Wayland, the developers of the graphical shells are cooperating with the Wayland developers creating the necessary additional interfaces.

Desktop Linux distributions

(As of 2020) most Linux distributions support Wayland out of the box. Some notable examples are:

  • Fedora starting with version 25 (released 22 November 2016) uses Wayland for the default GNOME 3.22 desktop session, with X.Org as a fallback if the graphics driver cannot support Wayland.[77] Fedora uses Wayland as the default for KDE desktop session starting with version 34 (released 27 April 2021)
  • Ubuntu shipped with Wayland by default in Ubuntu 17.10 (Artful Aardvark).[78] However, Ubuntu 18.04 LTS reverted to X.Org by default due to several issues.[79][80] Since Ubuntu 21.04, Wayland is the default again.[81]
  • Red Hat Enterprise Linux ships Wayland as the default session in version 8, released 7 May 2019.[82]
  • Debian ships Wayland as the default session for GNOME since version 10, released 6 July 2019.[83]
  • Slackware Linux included Wayland on 20 February 2020[84] for the development version, -current, which became version 15.0.
  • Manjaro ships Wayland as default in the Gnome edition of Manjaro 20.2 (Nibia) (released 22 November 2020).[85]

Notable early adopter:

  • RebeccaBlackOS is a live USB Debian-based[86] Linux distribution that allows a convenient way to try out a real Wayland desktop without having to make any modifications to the main operating system of the computer.[87] It has been used since as early as 2012 to showcase Wayland.[88][89]

Toolkit support

Toolkits supporting Wayland include the following:

  • Clutter has complete Wayland support.[90][91][92]
  • EFL has complete Wayland support, except for selection.[93]
  • GTK 3.20 has complete Wayland support.[94]
  • Qt 5 has complete Wayland support, and can be used to write both Wayland compositors and Wayland clients.
  • SDL support for Wayland debuted with the 2.0.2 release[95] and was enabled by default since version 2.0.4.[96]
  • GLFW 3.2 has Wayland support.[97]
  • FreeGLUT has initial Wayland support.[98]

Desktop environments

Desktop environments in process of being ported from X to Wayland include GNOME,[99] KDE Plasma 5[100] and Enlightenment.[101]

In November 2015, Enlightenment e20 was announced with full Wayland support.[102][49][103] GNOME 3.20 was the first version to have a full Wayland session.[104] GNOME 3.22 included much improved Wayland support across GTK, Mutter, and GNOME Shell.[105] GNOME 3.24 shipped support for the proprietary NVidia drivers under Wayland.[106]

Wayland support for KDE Plasma was delayed until the release of Plasma 5,[107] though previously KWin 4.11 got an experimental Wayland support.[108] The version 5.4 of Plasma was the first with a Wayland session.[109] During 2020 Klipper was ported to Wayland and the next 5.20 release in October 2020 has the goal to improve screen casting and recording.[110]

Other software

Other software supporting Wayland includes the following:

  • Intelligent Input Bus is working on Wayland support, it could be ready for Fedora 22.[111]
  • RealVNC published a Wayland developer preview in July 2014.[63][112][113]
  • Maliit is an input method framework that runs under Wayland.[114][115][116]
  • kmscon supports Wayland with wlterm.[117]
  • Mesa has Wayland support integrated.[118]
  • Eclipse was made to run on Wayland during a GSoC-Project in 2014.[119]
  • The Vulkan WSI (Window System Interface) is a set of API calls that serve a similar purpose as EGL does for OpenGL ES or GLX for OpenGL. Vulkan WSI includes support for Wayland from day one: VK_USE_PLATFORM_WAYLAND_KHR. Vulkan clients can run on unmodified Wayland servers, including Weston, GENIVI LayerManager, Mutter / GNOME Shell, Enlightenment, and more. The WSI allows applications to discover the different GPUs on the system, and display the results of GPU rendering to a window system.[120]
  • SPURV, a compatibility layer for Android applications to run on Linux distributions using Wayland

Mobile and embedded hardware

Weston running on postmarketOS

Mobile and embedded hardware supporting Wayland includes the following:

History

Wayland uses direct rendering over EGL.

Kristian Høgsberg, a Linux graphics and X.Org developer who previously worked on AIGLX and DRI2, started Wayland as a spare-time project in 2008 while working for Red Hat.[128][129][130][131] His stated goal was a system in which "every frame is perfect, by which I mean that applications will be able to control the rendering enough that we'll never see tearing, lag, redrawing or flicker." Høgsberg was driving through the town of Wayland, Massachusetts when the underlying concepts "crystallized", hence the name.[130][132]

In October 2010, Wayland became a freedesktop.org project.[133][134] As part of the migration the prior Google Group was replaced by the wayland-devel mailing list as the project's central point of discussion and development.

The Wayland client and server libraries were initially released under the MIT License,[135] while the reference compositor Weston and some example clients used the GNU General Public License version 2.[136] Later all the GPL code was relicensed under the MIT license "to make it easier to move code between the reference implementation and the actual libraries".[137] In 2015 it was discovered that the license text used by Wayland was a slightly different and older version of the MIT license, and the license text was updated to the current version used by the X.Org project (known as MIT Expat License).[5]

Wayland works with all Mesa-compatible drivers with DRI2 support[118] as well as Android drivers via the Hybris project.[138][139][140]

Releases

Major Wayland and Weston releases[141]
Version Date Main features
Wayland Weston
0.85 2012[142] First release.
0.95 2012[143] Began API stabilization.
1.0 2012[144][145] Stable wayland-client API.
1.1 2013[146][147] Software rendering.[61] FBDEV, RDP backends.
1.2 2013[148][149] Stable wayland-server API. Color management. Subsurfaces. Raspberry Pi backend.
1.3 2013[150] More pixel formats. Support for language bindings. Android driver support via libhybris.
1.4 2014[26] New wl_subcompositor and wl_subsurface interfaces. Multiple framebuffer formats. logind support for rootless Weston.
1.5 2014[67] libinput. Fullscreen shell.
1.6 2014[151] libinput by default.
1.7 2015[152][153] Support for the Wayland presentation extension and for surface roles. IVI shell protocol.
1.8 2015[154][155] Separated headers for core and generated protocol. Repaint scheduling. Named outputs. Output transformations. Surface-shooting API.
1.9 2015[156][157] Updated license. Updated license. New test framework. Triple-head DRM compositor. linux_dmabuf extension.
1.10 2016[158][159] Drag-and-drop functionality, grouped pointer events.[160] Video 4 Linux 2, touch input, debugging improvements.[161]
1.11 2016[162][163] New backup loading routine, new setup logic. Proxy wrappers, shared memory changes, Doxygen-generated HTML docs.
1.12 2016[164][165] Debugging support improved. libweston and libweston-desktop. Pointer locking and confinement. Relative pointer support.
1.13 2017[166][167] The ABI of Weston has been changed, thus the new version was named 2.0.0 rather than 1.13.0.
1.14 2017[168][169] Weston 3.0.0 was released at the same time.
1.15 2018[170][171] Weston 4.0.0 was released at the same time.
1.16 2018[172][173] Weston 5.0.0 was released at the same time.
1.17 2019[174][175] Weston 6.0.0 was released at the same time.
1.18 2019[176][177] Weston 7.0.0 was released one month later.
Weston 8.0.0 [178] released at 2020-01-24.
Weston 9.0.0 [179] released at 2020-09-04.
1.19 2021[180]
1.20 2021[181] Weston 10.0.0 has been released at 2022-02-01. [182]
{{{2}}}

See also

References

  1. Høgsberg, Kristian (30 September 2008). "Initial commit". https://cgit.freedesktop.org/wayland/wayland/commit/?id=97f1ebe8d5c2e166fabf757182c289fed266a45a. 
  2. Ser, Simon (27 January 2021). "[ANNOUNCE] wayland 1.20.0" (Mailing list). Archived from the original on 11 December 2021. Retrieved 27 January 2021.
  3. Ser, Simon (1 February 2022). "[ANNOUNCE] weston 10.0.0" (Mailing list). Archived from the original on 4 February 2022. Retrieved 12 February 2022.
  4. "Wayland & Weston Compositor Ported To DragonFlyBSD - Phoronix". https://www.phoronix.com/scan.php?page=news_item&px=Wayland-DragonFlyBSD-Port. 
  5. 5.0 5.1 5.2 Harrington, Bryce (15 September 2015). "[ANNOUNCE] wayland 1.8.93". freedesktop.org (Mailing list). Archived from the original on 25 October 2020. Retrieved 14 January 2020.
  6. "wayland/wayland: root/COPYING". https://cgit.freedesktop.org/wayland/wayland/tree/COPYING. 
  7. Larabel, Michael (10 June 2015). "Wayland's MIT License To Be Updated/Corrected". https://www.phoronix.com/scan.php?page=news_item&px=Wayland-License-MIT-Update. 
  8. 8.0 8.1 8.2 "Wayland". https://wayland.freedesktop.org/. 
  9. Sengar, Shivam Singh (16 June 2018). "Wayland v/s Xorg : How Are They Similar & How Are They Different". https://www.secjuice.com/wayland-vs-xorg/. 
  10. 10.0 10.1 10.2 Kerrisk, Michael (25 September 2012). "XDC2012: Graphics stack security". https://lwn.net/Articles/517375/. 
  11. 11.0 11.1 Peres, Martin (21 February 2014). "Wayland Compositors - Why and How to Handle Privileged Clients!". https://mupuf.org/blog/2014/02/19/wayland-compositors-why-and-how-to-handle/. 
  12. 12.0 12.1 Graesslin, Martin (23 November 2015). "Looking at the security of Plasma/Wayland". https://blog.martin-graesslin.com/blog/2015/11/looking-at-the-security-of-plasmawayland/. 
  13. 13.0 13.1 13.2 13.3 13.4 "Wayland FAQ". https://wayland.freedesktop.org/faq.html. 
  14. Michael Larabel (20 May 2009). "The State Of The Wayland Display Server". Phoronix. https://www.phoronix.com/scan.php?page=article&item=wayland_q209&num=1. 
  15. Corbet, Jonathan (5 November 2010). "LPC: Life after X". https://lwn.net/Articles/413335/. 
  16. Høgsberg, Kristian (9 November 2010). "Network transparency argument". https://lists.freedesktop.org/archives/wayland-devel/2010-November/000097.html. "Wayland isn't a remote rendering API like X, but that doesn't exclude network transparency. Clients render into a shared buffer and then have to tell the compositor (...) what they changed. The compositor can then send the new pixels in that region out over the network. The Wayland protocol is already violently asynchronous, so it should be able to handle a bit of network lag gracefully. Remote fullscreen video viewing or gaming isn't going to work well, [but] I don't know any other display system that handles that well and transparently." 
  17. Larabel, Michael (18 August 2011). "Remote Wayland Server Project: Does It Work Yet?". https://www.phoronix.com/scan.php?page=news_item&px=OTgxMQ. 
  18. Jackson, Adam (9 November 2010). "[Re:] Ubuntu moving towards Wayland". https://lists.fedoraproject.org/pipermail/devel/2010-November/145306.html. 
  19. Stone, Daniel (28 January 2013). The real story behind Wayland and X (Speech). linux.conf.au 2013. Canberra. Archived from the original on 10 August 2017. Retrieved 13 April 2016.
  20. 20.0 20.1 20.2 Willis, Nathan (13 February 2013). "LCA: The ways of Wayland". https://lwn.net/Articles/536862/. 
  21. Aleksandersen, Daniel. "Remote desktop capabilities set to make a comeback in GNOME on Wayland". https://ctrl.blog/entry/wayland-gnome-remote-desktop. 
  22. 22.0 22.1 "The Hello Wayland Tutorial". 8 July 2014. https://hdante.wordpress.com/2014/07/08/the-hello-wayland-tutorial/. 
  23. 23.00 23.01 23.02 23.03 23.04 23.05 23.06 23.07 23.08 23.09 23.10 23.11 23.12 23.13 23.14 Høgsberg, Kristian. "Wayland Documentation 1.3". https://wayland.freedesktop.org/docs/pdf/Documentation-1.3-Wayland-en-US.pdf. 
  24. 24.0 24.1 Høgsberg, Kristian. "protocol/wayland.xml". https://cgit.freedesktop.org/wayland/wayland/tree/protocol/wayland.xml. 
  25. 25.0 25.1 Paalanen, Pekka (25 July 2014). "Wayland protocol design: object lifespan". https://ppaalanen.blogspot.com/2014/07/wayland-protocol-design-object-lifespan.html. 
  26. 26.0 26.1 Høgsberg, Kristian (24 January 2014). "Wayland and Weston 1.4 is out". https://lists.freedesktop.org/archives/wayland-devel/2014-January/012903.html. 
  27. "xdg_shell: Adding a new shell protocol". freedesktop.org. 3 December 2013. https://cgit.freedesktop.org/wayland/weston/commit/?id=3c4dc74cebe1de6f71ec9eeb9794eaaff4327e95. 
  28. "GENIVI/wayland-ivi-extension". 17 November 2021. https://github.com/GENIVI/wayland-ivi-extension. 
  29. 29.0 29.1 29.2 Vervloesem, Koen (15 February 2012). "FOSDEM: The Wayland display server". https://lwn.net/Articles/481490/. 
  30. Barnes, Jesse. "Introduction to Wayland". Intel Open Source Technology Center. https://www.tizen.org/sites/default/files/lfcs2012_barnes.pdf. "Does not include a rendering API – Clients use what they want and send buffer handles to the server" 
  31. Paalanen, Pekka (21 November 2012). "On supporting Wayland GL clients and proprietary embedded platforms". https://ppaalanen.blogspot.com/2012/11/on-supporting-wayland-gl-clients-and.html. "Buffer sharing works by creating a handle for a buffer, and passing that handle to another process which then uses the handle to make the GPU access again the same buffer." 
  32. Griffith, Eric (7 June 2013). "The Wayland Situation: Facts About X vs. Wayland". p. 2. https://www.phoronix.com/scan.php?page=article&item=x_wayland_situation. 
  33. 33.0 33.1 "Wayland Architecture". https://wayland.freedesktop.org/architecture.html. 
  34. Edge, Jake (11 April 2012). "LFCS 2012: X and Wayland". https://lwn.net/Articles/491509/. 
  35. "Wayland/X Compositor Architecture By Example: Enlightenment DR19". http://events.linuxfoundation.org/sites/events/files/slides/presentation_0.pdf. 
  36. 36.0 36.1 Graesslin, Martin (7 February 2013). "Client Side Window Decorations and Wayland". https://blog.martin-graesslin.com/blog/2013/02/client-side-window-decorations-and-wayland/. 
  37. "X.Org Security". X.Org Foundation. https://www.x.org/wiki/Development/Documentation/Security/. "The X server has long included an extension, SECURITY, which provides support for a simple trusted/untrusted connection model." 
  38. Wiggins, David P. (15 November 1996). "Security Extension Specification". X Consortium Standard. https://www.x.org/releases/current/doc/xextproto/security.html. 
  39. Walsh, Eamon F. (2009). "X Access Control Extension Specification". https://www.x.org/releases/X11R7.6/doc/xorg-docs/specs/Xserver/XACE-Spec.html. 
  40. "Debian Moves To Non-Root X.Org Server By Default - Phoronix". https://www.phoronix.com/scan.php?page=news_item&px=Debian-Non-Root-X. 
  41. "Non root Xorg - Gentoo Wiki". https://wiki.gentoo.org/wiki/Non_root_Xorg. 
  42. "X/Rootless - Ubuntu Wiki". https://wiki.ubuntu.com/X/Rootless. 
  43. "1078902 – Xorg without root rights". https://bugzilla.redhat.com/show_bug.cgi?id=1078902. 
  44. "X Clients under Wayland (XWayland)". Wayland project. https://wayland.freedesktop.org/xserver.html. 
  45. "ANNOUNCE: xorg-server 1.16.0". freedesktop.org. 17 July 2014. https://lists.x.org/archives/xorg-announce/2014-July/002457.html. 
  46. 46.0 46.1 Høgsberg, Kristian (3 January 2011). "Multiple backends for GTK". https://hoegsberg.blogspot.com/2011/01/multiple-backends-for-gtk.html. 
  47. "QtWayland". https://wiki.qt.io/QtWayland. 
  48. "Full Wayland support in GTK". https://wiki.gnome.org/Initiatives/Wayland/GTK%2B. 
  49. 49.0 49.1 Larabel, Michael (30 November 2015). "Enlightenment 0.20 Arrives With Full Wayland Support & Better FreeBSD Support". https://www.phoronix.com/scan.php?page=news_item&px=Enlightenment-0.20-Released. 
  50. "Wayland". https://www.enlightenment.org/about-wayland. 
  51. "Plasma 5.21" (in en). 2021-02-16. https://kde.org/announcements/plasma/5/5.21.0/. 
  52. "Index of /sources/mutter-wayland". https://download.gnome.org/sources/mutter-wayland/. 
  53. "Sway". https://swaywm.org/. 
  54. "swaywm/wlroots" (in en). https://github.com/swaywm/wlroots. 
  55. "swaywm/sway" (in en). https://github.com/swaywm/sway. 
  56. "README". https://cgit.freedesktop.org/wayland/weston/plain/README.md?h=6.0. 
  57. "README file from the Wayland source code repository". freedesktop.org. https://cgit.freedesktop.org/wayland/wayland/plain/README. 
  58. Larabel, Michael (16 February 2013). "Wayland Begins Porting Process To FreeBSD". https://www.phoronix.com/scan.php?page=news_item&px=MTMwMzE. 
  59. "Adding Content protection support in drm-backend (!48) · Merge Requests · wayland / weston" (in en). https://gitlab.freedesktop.org/wayland/weston/merge_requests/48/diffs?commit_id=05dc6b86431fe040f91ca7b4cf122fa9dc4dd8dd. 
  60. Paalanen, Pekka (10 March 2012). "What does EGL do in the Wayland stack". https://ppaalanen.blogspot.com/2012/03/what-does-egl-do-in-wayland-stack.html. 
  61. 61.0 61.1 Larabel, Michael (6 January 2013). "A Software-Based Pixman Renderer For Wayland's Weston". https://www.phoronix.com/scan.php?page=news_item&px=MTI2Nzg. 
  62. Høgsberg, Kristian (9 December 2010). "Blender3D & cursor clamping.". https://lists.freedesktop.org/archives/wayland-devel/2010-December/000330.html. 
  63. 63.0 63.1 "[RFC weston remote access interface module"]. freedesktop.org. 18 October 2013. https://lists.freedesktop.org/archives/wayland-devel/2013-October/011536.html. 
  64. "Maynard announcement". 16 April 2014. https://blog.barisione.org/2014-04/maynard/. 
  65. 65.0 65.1 "Raspberry Pi Case Study". Collabora. http://www.collabora.com/services/case-studies/raspberrypi/. 
  66. 66.0 66.1 "Wayland preview". Raspberry Pi. http://www.raspberrypi.org/archives/4053. 
  67. 67.0 67.1 Høgsberg, Kristian (20 May 2014). "Wayland and Weston 1.5.0 is released". https://lists.freedesktop.org/archives/wayland-devel/2014-May/014955.html. 
  68. Ådahl, Jonas (12 November 2013). "[RFC Common input device library"]. Wayland mailing list. https://lists.freedesktop.org/archives/wayland-devel/2013-November/011930.html. 
  69. "libinput". Freedesktop.org. https://www.freedesktop.org/wiki/Software/libinput/. 
  70. Hutterer, Peter (8 October 2014). Consolidating the input stacks with libinput (Speech). The X.Org Developer Conference 2014. Bordeaux. Archived from the original on 1 November 2020. Retrieved 14 January 2020.
  71. Hutterer, Peter (22 February 2015). "libinput: the road to 1.0". https://lists.freedesktop.org/archives/wayland-devel/2015-February/020131.html. 
  72. "Libinput support added to Touchpad KCM". 22 February 2015. https://rajeeshknambiar.wordpress.com/2015/02/22/libinput-support-added-to-touchpad-kcm/. 
  73. Goede, Hans de (23 February 2015). "Libinput now enabled as default xorg driver for F-22 workstation installs". https://lists.fedoraproject.org/pipermail/devel/2015-February/208204.html. 
  74. Hutterer, Peter (24 September 2014). "libinput - a common input stack for Wayland compositors and X.Org drivers". https://who-t.blogspot.com/2014/09/libinput-common-input-stack-for-wayland.html. 
  75. de Goede, Hans (1 February 2015). "Replacing xorg input - Drivers with libinput". https://archive.fosdem.org/2015/schedule/event/libinput/attachments/slides/591/export/events/attachments/libinput/slides/591/libinput_xorg.pdf. 
  76. 76.0 76.1 Dodier-Lazaro, Steve; Peres, Martin (9 October 2014). Security in Wayland-based Desktop Environments: Privileged Clients, Authorization, Authentication and Sandboxing! (Speech). The X.Org Developer Conference 2014. Bordeaux. Archived from the original on 9 April 2016. Retrieved 18 April 2016.
  77. "Changes/WaylandByDefault - Fedora Project Wiki". https://fedoraproject.org/wiki/Changes/WaylandByDefault. 
  78. "ReleaseNotes for Ubuntu 17.10". Canonical. https://wiki.ubuntu.com/ArtfulAardvark/ReleaseNotes#Ubuntu_Desktop. 
  79. "Ubuntu 18.04 will revert to long-in-the-tooth Xorg". https://www.neowin.net/news/ubuntu-1804-will-revert-to-long-in-the-tooth-xorg. 
  80. "Bionic Beaver 18.04 LTS to use Xorg by default". Canonical. https://insights.ubuntu.com/2018/01/26/bionic-beaver-18-04-lts-to-use-xorg-by-default/. 
  81. "Ubuntu 21.04 is here". https://ubuntu.com/blog/ubuntu-21-04-is-here. 
  82. "Release notes for Red Hat Enterprise Linux 8.0" (in en). https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/8/html/8.0_release_notes/rhel-8_0_0_release#desktop. 
  83. "NewInBuster - Debian Wiki". https://wiki.debian.org/NewInBuster. 
  84. "Slackware ChangeLogs". Slackware Linux. http://www.slackware.com/changelog/current.php?cpu=x86_64. 
  85. "Manjaro 20.2 Nibia got released". 3 December 2020. https://forum.manjaro.org/t/manjaro-20-2-nibia-got-released/41034. 
  86. "Wayland Live OS Is Now Based On Debian Testing, Working KDE Wayland Support". Phoronix. https://www.phoronix.com/scan.php?page=news_item&px=RBOS-2016-02-08. 
  87. "RebeccaBlackOS". Sourceforge. https://sourceforge.net/projects/rebeccablackos/. 
  88. "Trying Out Wayland With Rebecca Black". Phoronix. https://www.phoronix.com/scan.php?page=news_item&px=MTA3Njk. 
  89. "New Wayland Live CD Has A Lot Of Features". Phoronix. https://www.phoronix.com/scan.php?page=news_item&px=MTUzNTU. 
  90. Bassi, Emmanuele (31 January 2011). "ANNOUNCE: Clutter 1.6.0 (stable)". clutter-announce (Mailing list). Archived from the original on 10 March 2016. Retrieved 9 March 2016.
  91. Bradford, Rob (16 December 2011). "Clutter & Cogl Wayland update". http://www.robster.org.uk/2011/12/16/clutter-cogl-wayland-update/. "The Clutter client side support is basically complete" 
  92. Bassi, Emmanuele (24 September 2013). "ANNOUNCE: Clutter 1.16.0 (stable)". clutter-announce (Mailing list). Archived from the original on 10 March 2016. Retrieved 9 March 2016.
  93. "Wayland – Enlightenment". http://www.chaosreigns.com/wiki/Wayland_State#The_state_of_Wayland.2C_2013-01-26. 
  94. "GTK Roadmap". https://wiki.gnome.org/Projects/GTK%2B/Roadmap. 
  95. Lantinga, Sam (8 March 2014). "SDL 2.0.2 RELEASED!". SDL Project. https://forums.libsdl.org/viewtopic.php?t=10088. 
  96. Larabel, Michael (9 January 2016). "SDL 2.0.4 Was Quietly Released Last Week With Wayland & Mir By Default". https://www.phoronix.com/scan.php?page=news_item&px=SDL-2.0.4-Released. 
  97. Berglund, Camilla (8 April 2014). "Implementation for Wayland · Issue #106 · glfw/glfw · GitHub". https://github.com/glfw/glfw/issues/106#issuecomment-39872275. 
  98. "FreeGLUT: Implement initial Wayland support". https://github.com/dcnieho/FreeGLUT/commit/9b30564b6d9c9f106c7d079d6cf9207363a49111. 
  99. "GNOME Initiatives - Wayland". https://wiki.gnome.org/Initiatives/Wayland. 
  100. "KWin/Wayland". https://community.kde.org/KWin/Wayland. 
  101. "Enlightenment - Wayland". https://www.enlightenment.org/about-wayland. 
  102. "Enlightenment DR 0.20.0 Release". https://phab.enlightenment.org/phame/post/view/167/enlightenment_dr_0.20.0_release/. 
  103. "The Enlightenment of Wayland". https://fosdem.org/2016/schedule/event/enlightenment_of_wayland/. 
  104. "ReleasePlanning/FeaturesPlans". GNOME Project. https://wiki.gnome.org/ReleasePlanning/FeaturePlans. 
  105. "A Look At The Exciting Features/Improvements Of GNOME 3.22". Phoronix. https://www.phoronix.com/scan.php?page=article&item=gnome-322-features&num=1. 
  106. "GNOME Lands Mainline NVIDIA Wayland Support Using EGLStreams". Phoronix. https://www.phoronix.com/scan.php?page=news_item&px=GNOME-Mutter-Mainline-EGLStream. 
  107. "Plasma's Road to Wayland". 25 July 2014. http://vizzzion.org/blog/2014/07/plasmas-road-to-wayland/. 
  108. Larabel, Michael (14 June 2013). "KDE 4.11 Beta Released, Works On Wayland". https://www.phoronix.com/scan.php?page=news_item&px=MTM4OTE. 
  109. Graesslin, Martin (29 June 2015). "Four years later". https://blog.martin-graesslin.com/blog/2015/06/four-years-later/. 
  110. Dawe, Liam. "KDE Plasma 5.20 will properly support screen recording on Wayland and more". https://www.gamingonlinux.com/2020/07/kde-plasma-520-will-properly-support-screen-recording-on-wayland-and-more. 
  111. Schaller, Christian (3 July 2014). "Wayland in Fedora Update". https://blogs.gnome.org/uraeus/2014/07/03/wayland-in-fedora-update/. 
  112. "VNC® Wayland Developer Preview". 8 July 2014. http://www.realvnc.com/products/vnc/wayland/. 
  113. "RealVNC Wayland developer preview email". freedesktop.org. 9 July 2014. https://lists.freedesktop.org/archives/wayland-devel/2014-July/015949.html. 
  114. "Maliit Status Update". Posterous. 2 April 2013. http://mikhas.posterous.com/maliit-status-update. 
  115. "More Maliit Keyboard Improvements: QtQuick2". Murray's Blog. 2 April 2013. https://www.murrayc.com/permalink/2013/04/02/more-maliit-keyboard-improvements-qtquick2/. 
  116. "Maliit under Wayland". https://wiki.maliit.org/Wayland_Input_Method_System_Proposal. 
  117. "wlterm". Freedesktop.org. https://www.freedesktop.org/wiki/Software/kmscon/wlterm/. 
  118. 118.0 118.1 Hillesley, p. 3.
  119. "Eclipse now runs on Wayland". 18 August 2014. http://blog.vogella.com/2014/08/18/eclipse-now-runs-on-wayland/. 
  120. Stone, Daniel (16 February 2016). "Vulkan 1.0 specification released with day-one support for Wayland". https://www.collabora.com/about-us/blog/2016/02/16/vulkan-1.0-specification-released-with-day-one-support-for-wayland/. 
  121. "Wayland Backend DRM | IVI Layer Management". GENIVI Alliance. http://projects.genivi.org/ivi-layer-management/node/17. 
  122. "The First Jolla Smartphone Runs With Wayland". LinuxG.net. 14 July 2013. http://linuxg.net/the-first-jolla-smartphone-runs-with-wayland/. 
  123. VDVsx [@VDVsx] (13 July 2013). "#sailfishos main components diagram. #Qt5 #Wayland #JollaHQ #Akademy". https://twitter.com/VDVsx/status/356029626759385088. 
  124. Jolla [@JollaHQ] (13 July 2013). "@faenil @PeppeLaKappa @VDVsx our first Jolla will ship with wayland, yes". https://twitter.com/JollaHQ/status/356034168351756290. 
  125. "IVI/IVI Setup". Tizen Wiki. https://wiki.tizen.org/w/index.php?title=IVI%2FIVI_Setup&oldid=1037. 
  126. VanCutsem, Geoffroy (10 July 2013). "[IVI] Tizen IVI 3.0-M1 released". IVI (Mailing list). Archived from the original on 2 October 2013. Retrieved 13 July 2013.
  127. Amadeo, Ron (12 May 2017). "The Samsung Z4 is Tizen's new flagship smartphone". Ars Technica. https://arstechnica.com/gadgets/2017/05/the-samsung-z4-is-tizens-new-flagship-smartphone/. 
  128. Høgsberg, Kristian (3 November 2008). "Premature publicity is better than no publicity". https://hoegsberg.blogspot.com/2008/11/premature-publicity-is-better-than-no.html. 
  129. "Interview: Kristian Høgsberg". 29 January 2012. https://archive.fosdem.org/2012/interview/kristian-hogsberg.html. 
  130. 130.0 130.1 Hillesley, Richard (13 February 2012). "Wayland - Beyond X". Heise Media UK. http://www.h-online.com/open/features/Wayland-Beyond-X-1432046.html. 
  131. Høgsberg, Kristian. "Wayland – A New Display Server for Linux". Linux Plumbers Conference, 2009. https://linuxplumbersconf.org/ocw/users/73. 
  132. Jenkins, Evan (22 March 2011). "The Linux graphics stack from X to Wayland". https://arstechnica.com/information-technology/2011/03/the-linux-graphics-stack-from-x-to-wayland/. 
  133. Larabel, Michael (29 October 2010). "Wayland Becomes A FreeDesktop.org Project". https://www.phoronix.com/scan.php?page=news_item&px=ODczNQ. 
  134. Høgsberg, Kristian (29 October 2010). "Moving to freedesktop.org". https://groups.google.com/forum/#!topic/wayland-display-server/sfvLwLaHwsE. 
  135. Høgsberg, Kristian (3 December 2008). "Wayland is now under MIT license". wayland-display-server (Mailing list). Archived from the original on 9 November 2012. Retrieved 8 March 2016.
  136. Høgsberg, Kristian (22 November 2010). "Wayland license clarification". wayland-devel (Mailing list). Archived from the original on 9 March 2016. Retrieved 8 March 2016.
  137. Høgsberg, Kristian (19 September 2011). "License update". wayland-devel (Mailing list). Archived from the original on 29 April 2016. Retrieved 8 March 2016.
  138. Munk, Carsten (11 April 2013). "Wayland utilizing Android GPU drivers on glibc based systems, Part 1". Mer Project. https://mer-project.blogspot.com/2013/04/wayland-utilizing-android-gpu-drivers.html. 
  139. Munk, Carsten (8 June 2013). "Wayland utilizing Android GPU drivers on glibc based systems, Part 2". Mer Project. https://mer-project.blogspot.com/2013/05/wayland-utilizing-android-gpu-drivers.html. 
  140. Larabel, Michael (11 April 2013). "Jolla Brings Wayland Atop Android GPU Drivers". https://www.phoronix.com/scan.php?page=news_item&px=MTM0OTE. 
  141. "Wayland". Wayland.freedesktop.org. https://wayland.freedesktop.org/releases.html. 
  142. Høgsberg, Kristian (9 February 2012). "[ANNOUNCE Wayland and Weston 0.85.0 released"]. https://lists.freedesktop.org/archives/wayland-devel/2012-February/002072.html. 
  143. Høgsberg, Kristian (24 July 2012). "Wayland and Weston 0.95.0 released". https://lists.freedesktop.org/archives/wayland-devel/2012-July/004542.html. 
  144. Høgsberg, Kristian (22 October 2012). "Wayland and Weston 1.0". https://lists.freedesktop.org/archives/wayland-devel/2012-October/005967.html. 
  145. Scherschel, Fabian (23 October 2012). "Wayland's 1.0 milestone fixes graphics protocol". Heise Media UK. http://www.h-online.com/open/news/item/Wayland-s-1-0-milestone-fixes-graphics-protocol-1734638.html. 
  146. Larabel, Michael (16 April 2013). "Wayland 1.1 Officially Released With Weston 1.1". https://www.phoronix.com/scan.php?page=news_item&px=MTM1Mjk. 
  147. Høgsberg, Kristian (15 April 2013). "1.1 Released". https://lists.freedesktop.org/archives/wayland-devel/2013-April/008631.html. 
  148. Larabel, Michael (13 July 2013). "Wayland 1.2.0 Released, Joined By Weston Compositor". https://www.phoronix.com/scan.php?page=news_item&px=MTQwOTg. 
  149. Høgsberg, Kristian (12 July 2013). "Wayland and Weston 1.2.0 released". https://lists.freedesktop.org/archives/wayland-devel/2013-July/010278.html. 
  150. Høgsberg, Kristian (11 October 2013). "Wayland and Weston 1.3 releases are out". https://lists.freedesktop.org/archives/wayland-devel/2013-October/011419.html. 
  151. Paalanen, Pekka (19 September 2014). "Wayland and Weston 1.6.0 released". https://lists.freedesktop.org/archives/wayland-devel/2014-September/017396.html. 
  152. Harrington, Bryce (14 February 2015). "[ANNOUNCE wayland 1.7.0"]. https://lists.freedesktop.org/archives/wayland-devel/2015-February/019976.html. 
  153. Harrington, Bryce (14 February 2015). "[ANNOUNCE weston 1.7.0"]. https://lists.freedesktop.org/archives/wayland-devel/2015-February/019977.html. 
  154. Harrington, Bryce (2 June 2015). "[ANNOUNCE wayland 1.8.0"]. https://lists.freedesktop.org/archives/wayland-devel/2015-June/022415.html. 
  155. Harrington, Bryce (2 June 2015). "[ANNOUNCE weston 1.8.0"]. https://lists.freedesktop.org/archives/wayland-devel/2015-June/022416.html. 
  156. Harrington, Bryce (21 September 2015). "[ANNOUNCE] wayland 1.9.0". wayland-devel (Mailing list). Archived from the original on 25 October 2020. Retrieved 14 January 2020.
  157. Harrington, Bryce (21 September 2015). "[ANNOUNCE] weston 1.9.0". wayland-devel (Mailing list). Archived from the original on 21 September 2020. Retrieved 14 January 2020.
  158. Harrington, Bryce (17 February 2016). "[ANNOUNCE] wayland 1.10.0". wayland-devel (Mailing list). Archived from the original on 17 February 2016. Retrieved 17 February 2016.
  159. Harrington, Bryce (17 February 2016). "[ANNOUNCE] weston 1.10.0". wayland-devel (Mailing list). Archived from the original on 24 February 2016. Retrieved 17 February 2016.
  160. Nestor, Marius (18 February 2016). "Wayland 1.10 Display Server Officially Released, Wayland 1.11 Arrives in May 2016". Softpedia. https://news.softpedia.com/news/wayland-1-10-display-server-officially-released-wayland-1-11-arrives-in-may-2016-500558.shtml. 
  161. Larabel, Michael (16 February 2016). "Wayland 1.10 Officially Released". https://www.phoronix.com/scan.php?page=news_item&px=Wayland-1.10-Released. 
  162. Harrington, Bryce (1 June 2016). "[ANNOUNCE] wayland 1.11.0". wayland-devel (Mailing list). Archived from the original on 1 June 2016. Retrieved 1 June 2016.
  163. Harrington, Bryce (1 June 2016). "[ANNOUNCE] weston 1.11.0". wayland-devel (Mailing list). Archived from the original on 8 October 2016. Retrieved 1 June 2016.
  164. Harrington, Bryce (21 September 2016). "[ANNOUNCE] wayland 1.12.0". wayland-devel (Mailing list). Archived from the original on 2 April 2017. Retrieved 21 September 2016.
  165. Harrington, Bryce (21 September 2016). "[ANNOUNCE] weston 1.12.0". wayland-devel (Mailing list). Archived from the original on 8 October 2016. Retrieved 21 September 2016.
  166. Harrington, Bryce (21 February 2017). "[ANNOUNCE] wayland 1.13.0". wayland-devel (Mailing list). Archived from the original on 24 February 2017. Retrieved 30 April 2017.
  167. Harrington, Bryce (25 February 2017). "[ANNOUNCE] weston 2.0.0". wayland-devel (Mailing list). Archived from the original on 2 March 2017. Retrieved 30 April 2017.
  168. Harrington, Bryce (8 August 2017). "[ANNOUNCE] wayland 1.14.0". wayland-devel (Mailing list). Archived from the original on 20 October 2018. Retrieved 25 March 2018.
  169. Harrington, Bryce (8 August 2017). "[ANNOUNCE] weston 3.0.0". wayland-devel (Mailing list). Archived from the original on 20 October 2018. Retrieved 25 March 2018.
  170. Foreman, Derek (9 April 2018). "[ANNOUNCE] wayland 1.15.0". wayland-devel (Mailing list). Archived from the original on 10 April 2018. Retrieved 15 April 2018.
  171. Foreman, Derek (9 April 2018). "[ANNOUNCE] weston 4.0.0". wayland-devel (Mailing list). Archived from the original on 10 April 2018. Retrieved 15 April 2018.
  172. Foreman, Derek (24 August 2018). "[ANNOUNCE] wayland 1.16.0". wayland-devel (Mailing list). Archived from the original on 28 August 2018. Retrieved 30 November 2018.
  173. Foreman, Derek (24 August 2018). "[ANNOUNCE] weston 5.0.0". wayland-devel (Mailing list). Archived from the original on 25 August 2018. Retrieved 30 November 2018.
  174. Foreman, Derek (28 March 2019). "[ANNOUNCE] wayland 1.17.0" (Mailing list). Archived from the original on 25 March 2019. Retrieved 17 June 2019.
  175. Foreman, Derek (21 March 2019). "[ANNOUNCE] weston 6.0.0" (Mailing list). Archived from the original on 31 March 2019. Retrieved 17 June 2019.
  176. Ser, Simon (11 February 2020). "[ANNOUNCE] wayland 1.18" (Mailing list). Archived from the original on 1 April 2021. Retrieved 12 February 2020.
  177. Ser, Simon (23 August 2019). "[ANNOUNCE] weston 7.0.0" (Mailing list). Archived from the original on 25 August 2019. Retrieved 22 October 2019.
  178. "[ANNOUNCE] weston 8.0.0". https://lists.freedesktop.org/archives/wayland-devel/2020-January/041147.html. 
  179. "[ANNOUNCE] weston 9.0.0". https://lists.freedesktop.org/archives/wayland-devel/2020-September/041595.html. 
  180. Ser, Simon (27 January 2021). "[ANNOUNCE] wayland 1.19.0" (Mailing list). Archived from the original on 1 February 2021. Retrieved 27 January 2021.
  181. "[ANNOUNCE] wayland 1.20.0". https://lists.freedesktop.org/archives/wayland-devel/2021-December/042064.html. 
  182. "[ANNOUNCE] weston 10.0.0". https://lists.freedesktop.org/archives/wayland-devel/2022-February/042103.html. 

External links