Go to file
emersion 4555fc8a54
Fix damage tracking for rotated surfaces
It was broken because the damage extents were rotated about its
own center, not about the center of the surface.

This adds a new wlr_region_rotated_bounds that rotates regions.
This allows us to have only one code path (for both non-rotated
views and rotated views) and optimizes rendering for rotated
views.
2018-03-26 15:31:08 -04:00
backend Fix use-after-free in x11 backend during shutdown 2018-03-26 10:48:30 +02:00
examples render/gles2: make wlr_renderer_begin take viewport size 2018-03-21 07:37:09 +01:00
include Fix damage tracking for rotated surfaces 2018-03-26 15:31:08 -04:00
protocol Add initial linux_dmabuf protocol support 2018-03-15 12:40:18 +01:00
render linux-dmabuf: Support multi plane formats like NV12 2018-03-23 09:03:31 +01:00
rootston Fix damage tracking for rotated surfaces 2018-03-26 15:31:08 -04:00
types Merge pull request #741 from emersion/unmapped-surface-destroy 2018-03-25 11:04:37 -04:00
util Fix damage tracking for rotated surfaces 2018-03-26 15:31:08 -04:00
xcursor Revert "ELF Visibility" 2018-02-19 18:01:27 -05:00
xwayland xwm.h: fix guard ifdef and remove wlr_ prefix from xwm_atoms_contains 2018-03-04 11:16:18 +01:00
.build.yml Change .build.yml upstream to GitHub 2018-03-03 23:11:06 -05:00
.editorconfig Add wlr_primary_selection_device_manager and wlr_primary_selection_source 2017-12-22 19:20:12 +01:00
.gitignore update .gitignore 2018-03-03 15:23:26 +01:00
CONTRIBUTING.md Update CONTRIBUTING.md 2017-12-27 10:39:53 -05:00
LICENSE Initial commit 2017-04-25 11:32:52 -04:00
README.md Remove Travis in favor of builds.sr.ht 2018-03-04 16:33:45 -05:00
glgen.sh Change glapi.sh to generate both files 2017-11-22 14:04:29 +13:00
meson.build meson: use current_source_dir instead of source_root 2018-03-12 12:15:26 +01:00
meson_options.txt xcb errors: optional dependency with improved messages 2018-03-03 11:46:04 +01:00
wlroots.syms render/gles2: make wlr_renderer_begin take viewport size 2018-03-21 07:37:09 +01:00

README.md

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)

Running the Reference Compositor

wlroots comes with a reference compositor called rootston that demonstrates the features of the library.

After building, run rootston from a terminal or VT with:

./build/rootston/rootston

Now you can run windows in the compositor from the command line or by configuring bindings in your rootston.ini file.