├── .gitignore ├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── NEWS ├── README ├── autogen.sh ├── configure.ac └── src ├── Makefile.am ├── clayland-compositor.h ├── clayland-data-device.c ├── clayland-data-device.h ├── clayland-keyboard.c ├── clayland-keyboard.h ├── clayland-pointer.c ├── clayland-pointer.h ├── clayland-seat.c ├── clayland-seat.h └── clayland.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clutter-project/clayland/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clutter-project/clayland/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clutter-project/clayland/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clutter-project/clayland/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clutter-project/clayland/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clutter-project/clayland/HEAD/configure.ac -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clutter-project/clayland/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/clayland-compositor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clutter-project/clayland/HEAD/src/clayland-compositor.h -------------------------------------------------------------------------------- /src/clayland-data-device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clutter-project/clayland/HEAD/src/clayland-data-device.c -------------------------------------------------------------------------------- /src/clayland-data-device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clutter-project/clayland/HEAD/src/clayland-data-device.h -------------------------------------------------------------------------------- /src/clayland-keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clutter-project/clayland/HEAD/src/clayland-keyboard.c -------------------------------------------------------------------------------- /src/clayland-keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clutter-project/clayland/HEAD/src/clayland-keyboard.h -------------------------------------------------------------------------------- /src/clayland-pointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clutter-project/clayland/HEAD/src/clayland-pointer.c -------------------------------------------------------------------------------- /src/clayland-pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clutter-project/clayland/HEAD/src/clayland-pointer.h -------------------------------------------------------------------------------- /src/clayland-seat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clutter-project/clayland/HEAD/src/clayland-seat.c -------------------------------------------------------------------------------- /src/clayland-seat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clutter-project/clayland/HEAD/src/clayland-seat.h -------------------------------------------------------------------------------- /src/clayland.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clutter-project/clayland/HEAD/src/clayland.c --------------------------------------------------------------------------------