├── .gitignore ├── COPYING ├── Makefile ├── README.md ├── TODO ├── buffer.c ├── buffered_surface.c ├── color.c ├── common.mk ├── config.mk ├── context.c ├── drm-private.h ├── drm.c ├── drm.h ├── dumb.c ├── font.c ├── intel.c ├── intel ├── batch.c ├── batch.h ├── blt.h ├── i965_pci_ids.h ├── local.mk └── mi.h ├── interface ├── buffer.h ├── context.h ├── drm.h ├── renderer.h ├── surface.h └── wayland.h ├── nouveau.c ├── nouveau ├── g80_2d.xml.h ├── g80_defs.xml.h └── nv_object.xml.h ├── pixman.c ├── pixman.h ├── protocol ├── local.mk └── wayland-drm.xml ├── renderer.c ├── surface.c ├── wayland-drm.c ├── wayland-private.h ├── wayland-shm.c ├── wayland.c ├── wayland.h ├── wld-private.h ├── wld.h └── wld.pc.in /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/TODO -------------------------------------------------------------------------------- /buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/buffer.c -------------------------------------------------------------------------------- /buffered_surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/buffered_surface.c -------------------------------------------------------------------------------- /color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/color.c -------------------------------------------------------------------------------- /common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/common.mk -------------------------------------------------------------------------------- /config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/config.mk -------------------------------------------------------------------------------- /context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/context.c -------------------------------------------------------------------------------- /drm-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/drm-private.h -------------------------------------------------------------------------------- /drm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/drm.c -------------------------------------------------------------------------------- /drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/drm.h -------------------------------------------------------------------------------- /dumb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/dumb.c -------------------------------------------------------------------------------- /font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/font.c -------------------------------------------------------------------------------- /intel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/intel.c -------------------------------------------------------------------------------- /intel/batch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/intel/batch.c -------------------------------------------------------------------------------- /intel/batch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/intel/batch.h -------------------------------------------------------------------------------- /intel/blt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/intel/blt.h -------------------------------------------------------------------------------- /intel/i965_pci_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/intel/i965_pci_ids.h -------------------------------------------------------------------------------- /intel/local.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/intel/local.mk -------------------------------------------------------------------------------- /intel/mi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/intel/mi.h -------------------------------------------------------------------------------- /interface/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/interface/buffer.h -------------------------------------------------------------------------------- /interface/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/interface/context.h -------------------------------------------------------------------------------- /interface/drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/interface/drm.h -------------------------------------------------------------------------------- /interface/renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/interface/renderer.h -------------------------------------------------------------------------------- /interface/surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/interface/surface.h -------------------------------------------------------------------------------- /interface/wayland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/interface/wayland.h -------------------------------------------------------------------------------- /nouveau.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/nouveau.c -------------------------------------------------------------------------------- /nouveau/g80_2d.xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/nouveau/g80_2d.xml.h -------------------------------------------------------------------------------- /nouveau/g80_defs.xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/nouveau/g80_defs.xml.h -------------------------------------------------------------------------------- /nouveau/nv_object.xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/nouveau/nv_object.xml.h -------------------------------------------------------------------------------- /pixman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/pixman.c -------------------------------------------------------------------------------- /pixman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/pixman.h -------------------------------------------------------------------------------- /protocol/local.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/protocol/local.mk -------------------------------------------------------------------------------- /protocol/wayland-drm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/protocol/wayland-drm.xml -------------------------------------------------------------------------------- /renderer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/renderer.c -------------------------------------------------------------------------------- /surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/surface.c -------------------------------------------------------------------------------- /wayland-drm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/wayland-drm.c -------------------------------------------------------------------------------- /wayland-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/wayland-private.h -------------------------------------------------------------------------------- /wayland-shm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/wayland-shm.c -------------------------------------------------------------------------------- /wayland.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/wayland.c -------------------------------------------------------------------------------- /wayland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/wayland.h -------------------------------------------------------------------------------- /wld-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/wld-private.h -------------------------------------------------------------------------------- /wld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/wld.h -------------------------------------------------------------------------------- /wld.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelforney/wld/HEAD/wld.pc.in --------------------------------------------------------------------------------