├── example-chain ├── .gitignore ├── Makefile ├── Project.xcconfig ├── bin │ └── data │ │ ├── .gitignore │ │ ├── CubicLensDistortion.fs │ │ └── ZoomBlur.fs ├── config.make ├── example-chain.xcodeproj │ └── project.pbxproj ├── openFrameworks-Info.plist └── src │ └── ofApp.cpp ├── example ├── .gitignore ├── Makefile ├── Project.xcconfig ├── bin │ └── data │ │ ├── .gitignore │ │ └── isf-test.fs ├── config.make ├── example.xcodeproj │ └── project.pbxproj ├── openFrameworks-Info.plist └── src │ └── ofApp.cpp ├── libs └── jsonxx │ ├── LICENSE.txt │ ├── jsonxx.cc │ └── jsonxx.h └── src ├── ofxISF.h └── ofxISF ├── Chain.h ├── CodeGenerater.h ├── Constants.h ├── Shader.h └── Uniforms.h /example-chain/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxISF/HEAD/example-chain/.gitignore -------------------------------------------------------------------------------- /example-chain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxISF/HEAD/example-chain/Makefile -------------------------------------------------------------------------------- /example-chain/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxISF/HEAD/example-chain/Project.xcconfig -------------------------------------------------------------------------------- /example-chain/bin/data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxISF/HEAD/example-chain/bin/data/.gitignore -------------------------------------------------------------------------------- /example-chain/bin/data/CubicLensDistortion.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxISF/HEAD/example-chain/bin/data/CubicLensDistortion.fs -------------------------------------------------------------------------------- /example-chain/bin/data/ZoomBlur.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxISF/HEAD/example-chain/bin/data/ZoomBlur.fs -------------------------------------------------------------------------------- /example-chain/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxISF/HEAD/example-chain/config.make -------------------------------------------------------------------------------- /example-chain/example-chain.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxISF/HEAD/example-chain/example-chain.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example-chain/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxISF/HEAD/example-chain/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example-chain/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxISF/HEAD/example-chain/src/ofApp.cpp -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxISF/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxISF/HEAD/example/Makefile -------------------------------------------------------------------------------- /example/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxISF/HEAD/example/Project.xcconfig -------------------------------------------------------------------------------- /example/bin/data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxISF/HEAD/example/bin/data/.gitignore -------------------------------------------------------------------------------- /example/bin/data/isf-test.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxISF/HEAD/example/bin/data/isf-test.fs -------------------------------------------------------------------------------- /example/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxISF/HEAD/example/config.make -------------------------------------------------------------------------------- /example/example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxISF/HEAD/example/example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxISF/HEAD/example/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxISF/HEAD/example/src/ofApp.cpp -------------------------------------------------------------------------------- /libs/jsonxx/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxISF/HEAD/libs/jsonxx/LICENSE.txt -------------------------------------------------------------------------------- /libs/jsonxx/jsonxx.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxISF/HEAD/libs/jsonxx/jsonxx.cc -------------------------------------------------------------------------------- /libs/jsonxx/jsonxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxISF/HEAD/libs/jsonxx/jsonxx.h -------------------------------------------------------------------------------- /src/ofxISF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxISF/HEAD/src/ofxISF.h -------------------------------------------------------------------------------- /src/ofxISF/Chain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxISF/HEAD/src/ofxISF/Chain.h -------------------------------------------------------------------------------- /src/ofxISF/CodeGenerater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxISF/HEAD/src/ofxISF/CodeGenerater.h -------------------------------------------------------------------------------- /src/ofxISF/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxISF/HEAD/src/ofxISF/Constants.h -------------------------------------------------------------------------------- /src/ofxISF/Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxISF/HEAD/src/ofxISF/Shader.h -------------------------------------------------------------------------------- /src/ofxISF/Uniforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satoruhiga/ofxISF/HEAD/src/ofxISF/Uniforms.h --------------------------------------------------------------------------------