Go to file
Tony Crisci 6610aa7ca7 Implement shm buffer surface attach interface
Implement surface_attach method. This is called when a client attaches an shm
buffer with wl_surface_attach().

Implement the GLES2 interface for attaching shm buffers. This creates an opengl
texture with the shm buffer contents for the surface.

This commit also includes some working code to render the surfaces onto the
screen for demonstration purposes.
2017-08-04 11:41:13 -04:00
CMake Revert "Merge pull request #27 from ascent12/meson" 2017-07-11 22:16:56 -04:00
backend Use ARGB8888 pixel format for cursor bo 2017-07-27 17:55:35 -04:00
examples Implement shm buffer surface attach interface 2017-08-04 11:41:13 -04:00
include Remove use of missing header 2017-07-12 09:49:26 -04:00
render Implement shm buffer surface attach interface 2017-08-04 11:41:13 -04:00
session Correctly get session path 2017-07-29 08:16:14 -04:00
types bugfix: fix cursor software rendering fallback 2017-07-24 16:34:40 -04:00
util Revert "Merge pull request #27 from ascent12/meson" 2017-07-11 22:16:56 -04:00
.gitignore Revert "Merge pull request #27 from ascent12/meson" 2017-07-11 22:16:56 -04:00
.travis.yml Build on travis-ci. 2017-07-12 14:31:43 +02:00
CMakeLists.txt Fix LTO (fixes #26) 2017-07-18 09:48:18 -04:00
CONTRIBUTING.md Update README.md, add CONTRIBUTING.md 2017-06-06 10:54:53 -04:00
LICENSE Initial commit 2017-04-25 11:32:52 -04:00
README.md Build on travis-ci. 2017-07-12 14:31:43 +02:00

README.md

wlroots

Pluggable, composable modules for building a Wayland compositor.

WIP - Status

Building

Install dependencies:

  • cmake
  • wayland
  • wayland-protocols
  • EGL
  • GLESv2
  • DRM
  • GBM
  • libinput
  • udev
  • systemd (optional, for logind support)
  • libcap (optional, for capability support)
  • asciidoc (optional, for man pages)

Run these commands:

mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make
sudo make install