├── .gitignore ├── COPYING ├── Makefile.am ├── README.md ├── Xwlb ├── .gitignore ├── Makefile.am └── Xwlb.c ├── autogen.sh ├── configure.ac ├── libwlb ├── .gitignore ├── Makefile.am ├── compositor.c ├── fullscreen-shell.c ├── glesv2-renderer.c ├── keyboard.c ├── libwlb.h ├── matrix.c ├── output.c ├── pixman-renderer.c ├── pointer.c ├── seat.c ├── surface.c ├── touch.c ├── util.c ├── wayland-egl-binding.c ├── weston-egl-ext.h └── wlb-private.h ├── protocol └── fullscreen-shell.xml └── wayland-scanner.mk /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxstrand/libwlb/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxstrand/libwlb/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxstrand/libwlb/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxstrand/libwlb/HEAD/README.md -------------------------------------------------------------------------------- /Xwlb/.gitignore: -------------------------------------------------------------------------------- 1 | /Xwlb 2 | -------------------------------------------------------------------------------- /Xwlb/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxstrand/libwlb/HEAD/Xwlb/Makefile.am -------------------------------------------------------------------------------- /Xwlb/Xwlb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxstrand/libwlb/HEAD/Xwlb/Xwlb.c -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxstrand/libwlb/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxstrand/libwlb/HEAD/configure.ac -------------------------------------------------------------------------------- /libwlb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxstrand/libwlb/HEAD/libwlb/.gitignore -------------------------------------------------------------------------------- /libwlb/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxstrand/libwlb/HEAD/libwlb/Makefile.am -------------------------------------------------------------------------------- /libwlb/compositor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxstrand/libwlb/HEAD/libwlb/compositor.c -------------------------------------------------------------------------------- /libwlb/fullscreen-shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxstrand/libwlb/HEAD/libwlb/fullscreen-shell.c -------------------------------------------------------------------------------- /libwlb/glesv2-renderer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxstrand/libwlb/HEAD/libwlb/glesv2-renderer.c -------------------------------------------------------------------------------- /libwlb/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxstrand/libwlb/HEAD/libwlb/keyboard.c -------------------------------------------------------------------------------- /libwlb/libwlb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxstrand/libwlb/HEAD/libwlb/libwlb.h -------------------------------------------------------------------------------- /libwlb/matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxstrand/libwlb/HEAD/libwlb/matrix.c -------------------------------------------------------------------------------- /libwlb/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxstrand/libwlb/HEAD/libwlb/output.c -------------------------------------------------------------------------------- /libwlb/pixman-renderer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxstrand/libwlb/HEAD/libwlb/pixman-renderer.c -------------------------------------------------------------------------------- /libwlb/pointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxstrand/libwlb/HEAD/libwlb/pointer.c -------------------------------------------------------------------------------- /libwlb/seat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxstrand/libwlb/HEAD/libwlb/seat.c -------------------------------------------------------------------------------- /libwlb/surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxstrand/libwlb/HEAD/libwlb/surface.c -------------------------------------------------------------------------------- /libwlb/touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxstrand/libwlb/HEAD/libwlb/touch.c -------------------------------------------------------------------------------- /libwlb/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxstrand/libwlb/HEAD/libwlb/util.c -------------------------------------------------------------------------------- /libwlb/wayland-egl-binding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxstrand/libwlb/HEAD/libwlb/wayland-egl-binding.c -------------------------------------------------------------------------------- /libwlb/weston-egl-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxstrand/libwlb/HEAD/libwlb/weston-egl-ext.h -------------------------------------------------------------------------------- /libwlb/wlb-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxstrand/libwlb/HEAD/libwlb/wlb-private.h -------------------------------------------------------------------------------- /protocol/fullscreen-shell.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxstrand/libwlb/HEAD/protocol/fullscreen-shell.xml -------------------------------------------------------------------------------- /wayland-scanner.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfxstrand/libwlb/HEAD/wayland-scanner.mk --------------------------------------------------------------------------------