├── .gitignore ├── Makefile ├── gspca.c ├── gspca.h ├── kinect.c ├── readme.md └── unload_drivers.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxorde/librekinect/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxorde/librekinect/HEAD/Makefile -------------------------------------------------------------------------------- /gspca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxorde/librekinect/HEAD/gspca.c -------------------------------------------------------------------------------- /gspca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxorde/librekinect/HEAD/gspca.h -------------------------------------------------------------------------------- /kinect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxorde/librekinect/HEAD/kinect.c -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxorde/librekinect/HEAD/readme.md -------------------------------------------------------------------------------- /unload_drivers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxorde/librekinect/HEAD/unload_drivers.sh --------------------------------------------------------------------------------