├── .gitignore ├── COPYING ├── README.md ├── meson.build ├── protocol ├── meson.build └── xdg-shell.xml ├── src ├── meson.build ├── wakefield-compositor.c ├── wakefield-compositor.h ├── wakefield-data-device.c ├── wakefield-private.h └── wakefield-surface.c └── tests ├── meson.build ├── test-compositor.c ├── test-embedded.c └── test-embedding.c /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlarsson/wakefield/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlarsson/wakefield/HEAD/README.md -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlarsson/wakefield/HEAD/meson.build -------------------------------------------------------------------------------- /protocol/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlarsson/wakefield/HEAD/protocol/meson.build -------------------------------------------------------------------------------- /protocol/xdg-shell.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlarsson/wakefield/HEAD/protocol/xdg-shell.xml -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlarsson/wakefield/HEAD/src/meson.build -------------------------------------------------------------------------------- /src/wakefield-compositor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlarsson/wakefield/HEAD/src/wakefield-compositor.c -------------------------------------------------------------------------------- /src/wakefield-compositor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlarsson/wakefield/HEAD/src/wakefield-compositor.h -------------------------------------------------------------------------------- /src/wakefield-data-device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlarsson/wakefield/HEAD/src/wakefield-data-device.c -------------------------------------------------------------------------------- /src/wakefield-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlarsson/wakefield/HEAD/src/wakefield-private.h -------------------------------------------------------------------------------- /src/wakefield-surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlarsson/wakefield/HEAD/src/wakefield-surface.c -------------------------------------------------------------------------------- /tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlarsson/wakefield/HEAD/tests/meson.build -------------------------------------------------------------------------------- /tests/test-compositor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlarsson/wakefield/HEAD/tests/test-compositor.c -------------------------------------------------------------------------------- /tests/test-embedded.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlarsson/wakefield/HEAD/tests/test-embedded.c -------------------------------------------------------------------------------- /tests/test-embedding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlarsson/wakefield/HEAD/tests/test-embedding.c --------------------------------------------------------------------------------