├── .gitignore ├── LICENSE ├── README.md ├── README.msvc ├── cinder └── PS3EYECaptureApp.cpp ├── openframeworks ├── main.cpp ├── testApp.cpp └── testApp.h ├── sdl ├── README.mingw64 ├── main.cpp └── makefile ├── shot1.png ├── shot2.png └── src ├── ps3eye.cpp ├── ps3eye.h ├── ps3eye_capi.cpp └── ps3eye_capi.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inspirit/PS3EYEDriver/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inspirit/PS3EYEDriver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inspirit/PS3EYEDriver/HEAD/README.md -------------------------------------------------------------------------------- /README.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inspirit/PS3EYEDriver/HEAD/README.msvc -------------------------------------------------------------------------------- /cinder/PS3EYECaptureApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inspirit/PS3EYEDriver/HEAD/cinder/PS3EYECaptureApp.cpp -------------------------------------------------------------------------------- /openframeworks/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inspirit/PS3EYEDriver/HEAD/openframeworks/main.cpp -------------------------------------------------------------------------------- /openframeworks/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inspirit/PS3EYEDriver/HEAD/openframeworks/testApp.cpp -------------------------------------------------------------------------------- /openframeworks/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inspirit/PS3EYEDriver/HEAD/openframeworks/testApp.h -------------------------------------------------------------------------------- /sdl/README.mingw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inspirit/PS3EYEDriver/HEAD/sdl/README.mingw64 -------------------------------------------------------------------------------- /sdl/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inspirit/PS3EYEDriver/HEAD/sdl/main.cpp -------------------------------------------------------------------------------- /sdl/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inspirit/PS3EYEDriver/HEAD/sdl/makefile -------------------------------------------------------------------------------- /shot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inspirit/PS3EYEDriver/HEAD/shot1.png -------------------------------------------------------------------------------- /shot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inspirit/PS3EYEDriver/HEAD/shot2.png -------------------------------------------------------------------------------- /src/ps3eye.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inspirit/PS3EYEDriver/HEAD/src/ps3eye.cpp -------------------------------------------------------------------------------- /src/ps3eye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inspirit/PS3EYEDriver/HEAD/src/ps3eye.h -------------------------------------------------------------------------------- /src/ps3eye_capi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inspirit/PS3EYEDriver/HEAD/src/ps3eye_capi.cpp -------------------------------------------------------------------------------- /src/ps3eye_capi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inspirit/PS3EYEDriver/HEAD/src/ps3eye_capi.h --------------------------------------------------------------------------------