A modular Wayland compositor library
Find a file
Drew DeVault b2a9d74a94 Merge pull request #322 from Timidger/drm-failing-fix
Fixes #321, not using result of wl_container_of
2017-10-22 22:39:48 -04:00
backend Cleanup wlr_gamma_control 2017-10-22 23:11:26 +02:00
dist/archlinux
examples Fixes #321, not using result of wl_container_of 2017-10-22 19:29:24 -07:00
include refactor buffer detection 2017-10-22 21:07:32 -04:00
protocol Add FreeBSD compatibility 2017-10-11 00:07:21 +03:00
render Pass backend to render 2017-10-22 10:39:23 +13:00
rootston Forgot to rename these 2017-10-22 10:56:40 -04:00
types wlr-surface: destroy texture on null buffer commit 2017-10-22 21:07:54 -04:00
util Rename remaining refs to wlr_list 2017-10-21 22:02:36 -04:00
xcursor Add FreeBSD compatibility 2017-10-11 00:07:21 +03:00
xwayland Forgot to rename these 2017-10-22 10:56:40 -04:00
.build.yml
.editorconfig Add XML rules to .editorconfig 2017-10-15 22:21:05 +02:00
.gitignore
.travis.yml
CONTRIBUTING.md
dummy.c
glgen.sh
LICENSE
meson.build Add FreeBSD compatibility 2017-10-11 00:07:21 +03:00
meson_options.txt
README.md Add FreeBSD compatibility 2017-10-11 00:07:21 +03:00

wlroots

Pluggable, composable modules for building a Wayland compositor.

This is a WIP: status

Contributing

See CONTRIBUTING.md

Building

Install dependencies:

  • wayland
  • wayland-protocols
  • EGL
  • GLESv2
  • DRM
  • GBM
  • libinput
  • udev
  • pixman
  • systemd (optional, for logind support)
  • elogind (optional, for logind support on systems without systemd)
  • libcap (optional, for capability support)
  • asciidoc (optional, for man pages)

Run these commands:

meson build
ninja -C build

(On FreeBSD, you need to pass an extra flag to prevent a linking error: meson build -D b_lundef=false)