• Home
Name Date Size #Lines LOC

..--

cursor/12-May-2024-3,0412,227

doc/12-May-2024-6,9285,960

egl/12-May-2024-621356

m4/12-May-2024-9,1258,248

protocol/12-May-2024-3,1452,631

src/12-May-2024-12,9757,992

tests/12-May-2024-22,41911,298

.gitattributesD12-May-2024631 1615

BUILD.gnD12-May-20245.1 KiB280212

CONTRIBUTING.mdD12-May-202413.3 KiB345255

COPYINGD12-May-20241.3 KiB3023

Makefile.amD12-May-20249.8 KiB342281

Makefile.inD12-May-2024147.2 KiB3,0442,800

OAT.xmlD12-May-20245.6 KiB8933

READMED12-May-20241.6 KiB3528

README.OpenSourceD12-May-2024431 1211

TODOD12-May-20245.1 KiB14799

aclocal.m4D12-May-202454.3 KiB1,5081,358

autogen.shD12-May-2024200 107

bundle.jsonD12-May-2024867 3434

compileD12-May-20247.2 KiB349259

config.guessD12-May-202448.1 KiB1,6991,485

config.hD12-May-2024672 191

config.h.inD12-May-20242.3 KiB8859

config.subD12-May-202433.4 KiB1,8551,678

configureD12-May-2024628.9 KiB20,80317,584

configure.acD12-May-20246.8 KiB203162

depcompD12-May-202423 KiB792502

gen_wayland_version_header.shD12-May-20241.5 KiB3417

gen_wayland_version_header_wrapper.shD12-May-202434 41

install-shD12-May-202415 KiB542352

ltmain.shD12-May-2024323.5 KiB11,3708,157

meson.buildD12-May-20242.3 KiB11292

meson_options.txtD12-May-2024618 2120

missingD12-May-20246.7 KiB216143

publish-docD12-May-2024349 167

python3_action.pyD12-May-2024359 124

releasing.txtD12-May-20243 KiB7957

test-driverD12-May-20244.5 KiB14987

wayland-scanner.m4D12-May-2024428 149

wayland-scanner.mkD12-May-2024292 96

wayland_protocol.gniD12-May-20243.3 KiB11094

wayland_scanner_wrapper.pyD12-May-20242.6 KiB7963

README

1What is Wayland?
2
3Wayland is a project to define a protocol for a compositor to talk to
4its clients as well as a library implementation of the protocol.  The
5compositor can be a standalone display server running on Linux kernel
6modesetting and evdev input devices, an X application, or a wayland
7client itself.  The clients can be traditional applications, X servers
8(rootless or fullscreen) or other display servers.
9
10The wayland protocol is essentially only about input handling and
11buffer management.  The compositor receives input events and forwards
12them to the relevant client.  The clients creates buffers and renders
13into them and notifies the compositor when it needs to redraw.  The
14protocol also handles drag and drop, selections, window management and
15other interactions that must go through the compositor.  However, the
16protocol does not handle rendering, which is one of the features that
17makes wayland so simple.  All clients are expected to handle rendering
18themselves, typically through cairo or OpenGL.
19
20The weston compositor is a reference implementation of a wayland
21compositor and the weston repository also includes a few example
22clients.
23
24Building the wayland libraries is fairly simple, aside from libffi,
25they don't have many dependencies:
26
27    $ git clone https://gitlab.freedesktop.org/wayland/wayland
28    $ cd wayland
29    $ meson build/ --prefix=PREFIX
30    $ ninja -C build/ install
31
32where PREFIX is where you want to install the libraries.  See
33https://wayland.freedesktop.org for more complete build instructions
34for wayland, weston, xwayland and various toolkits.
35

README.OpenSource

1[
2    {
3        "Name": "wayland",
4        "License": "MIT license",
5        "License File": "COPYING",
6        "Version Number": "1.19.0",
7        "Owner": "lizheng2@huawei.com",
8        "Upstream URL": "https://wayland.freedesktop.org/releases/wayland-1.19.0.tar.xz",
9        "Description": "Wayland is a protocol for a compositor to talk to its clients as well as a C library implementation of that protocol"
10    }
11]
12