gitextract_jhw_wgc3/ ├── .gitignore ├── README.md ├── example-conway/ │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── config.make │ ├── example-conway.sln │ ├── example-conway.vcxproj │ ├── example-conway.vcxproj.filters │ ├── example-conway.vcxproj.user │ ├── example-conway.xcodeproj/ │ │ ├── project.pbxproj │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ ├── example-conway Debug.xcscheme │ │ └── example-conway Release.xcscheme │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src/ │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── example-filters/ │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── bin/ │ │ └── data/ │ │ └── LUTs/ │ │ ├── Brannan.cube │ │ ├── Earlybird.cube │ │ ├── Gotham.cube │ │ ├── Hefe.cube │ │ ├── Inkwell.cube │ │ ├── Lomo-fi.cube │ │ ├── Lord Kelvin.cube │ │ ├── Nashville.cube │ │ ├── Sutro.cube │ │ ├── Toaster.cube │ │ ├── Walden.cube │ │ └── X Pro II.cube │ ├── config.make │ ├── example-filters.sln │ ├── example-filters.vcxproj │ ├── example-filters.vcxproj.filters │ ├── example-filters.vcxproj.user │ ├── example-filters.xcodeproj/ │ │ ├── project.pbxproj │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ ├── example-filters Debug.xcscheme │ │ └── example-filters Release.xcscheme │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src/ │ ├── .!10355!ofApp.cpp │ ├── .!10390!ofApp.cpp │ ├── .!10421!ofApp.cpp │ ├── .!10452!ofApp.cpp │ ├── main.cpp │ ├── ofApp.cpp │ ├── ofApp.cpp.bak │ └── ofApp.h ├── example-grayscott/ │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── config.make │ ├── example-grayscott.sln │ ├── example-grayscott.vcxproj │ ├── example-grayscott.vcxproj.filters │ ├── example-grayscott.vcxproj.user │ ├── example-grayscott.xcodeproj/ │ │ ├── project.pbxproj │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ ├── example-grayscott Debug.xcscheme │ │ └── example-grayscott Release.xcscheme │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src/ │ ├── main.cpp │ ├── ofApp.cpp │ ├── ofApp.cpp.bak │ └── ofApp.h ├── example-sandbox/ │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── config.make │ ├── example-sandbox.sln │ ├── example-sandbox.vcxproj │ ├── example-sandbox.vcxproj.filters │ ├── example-sandbox.vcxproj.user │ ├── example-sandbox.xcodeproj/ │ │ ├── project.pbxproj │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ ├── example-sandbox Debug.xcscheme │ │ └── example-sandbox Release.xcscheme │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src/ │ ├── main.cpp │ ├── ofApp.cpp │ ├── ofApp.cpp.bak │ └── ofApp.h ├── example-waterRipples/ │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── config.make │ ├── example-waterRipples.sln │ ├── example-waterRipples.vcxproj │ ├── example-waterRipples.vcxproj.filters │ ├── example-waterRipples.vcxproj.user │ ├── example-waterRipples.xcodeproj/ │ │ ├── project.pbxproj │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ ├── example-waterRipples Debug.xcscheme │ │ └── example-waterRipples Release.xcscheme │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src/ │ ├── main.cpp │ ├── ofApp.cpp │ ├── ofApp.cpp.bak │ └── ofApp.h ├── example-watercolors/ │ ├── Makefile │ ├── Project.xcconfig │ ├── addons.make │ ├── bin/ │ │ └── data/ │ │ └── .gitkeep │ ├── config.make │ ├── example-watercolors.sln │ ├── example-watercolors.vcxproj │ ├── example-watercolors.vcxproj.filters │ ├── example-watercolors.vcxproj.user │ ├── example-watercolors.xcodeproj/ │ │ ├── project.pbxproj │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ ├── example-watercolors Debug.xcscheme │ │ └── example-watercolors Release.xcscheme │ ├── icon.rc │ ├── openFrameworks-Info.plist │ └── src/ │ ├── main.cpp │ ├── ofApp.cpp │ ├── ofApp.cpp.bak │ └── ofApp.h ├── license.md ├── src/ │ ├── composers/ │ │ ├── ofxBlend.h │ │ ├── ofxClone.h │ │ ├── ofxMask.h │ │ └── ofxMultiTexture.h │ ├── filters/ │ │ ├── ofxBarrelChromaAb.h │ │ ├── ofxBloom.h │ │ ├── ofxBlur.h │ │ ├── ofxBokeh.h │ │ ├── ofxChromaAb.h │ │ ├── ofxChromaGlitch.h │ │ ├── ofxContrast.h │ │ ├── ofxGaussianBlur.h │ │ ├── ofxGlow.h │ │ ├── ofxGrayscale.h │ │ ├── ofxInverse.h │ │ ├── ofxLUT.h │ │ ├── ofxMedian.h │ │ └── ofxOldTv.h │ ├── generative/ │ │ ├── ofxFBM.h │ │ ├── ofxFire.h │ │ ├── ofxGrayScott.h │ │ ├── ofxNoise.h │ │ └── ofxTint.h │ ├── ofxFX.h │ ├── ofxFXObject.cpp │ ├── ofxFXObject.h │ ├── ofxSwapBuffer.h │ └── operations/ │ ├── ofxAbsDiff.h │ ├── ofxBounce.h │ ├── ofxDisplacePixels.h │ ├── ofxEdgeDetect.h │ ├── ofxFlow.h │ ├── ofxNormals.h │ ├── ofxRipples.h │ ├── ofxSubstract.h │ └── ofxThreshold.h ├── test-buffer-copying/ │ ├── addons.make │ ├── bin/ │ │ └── data/ │ │ └── shadersGL3/ │ │ ├── shader.frag │ │ └── shader.vert │ └── src/ │ ├── main.cpp │ ├── ofApp.cpp │ ├── ofApp.cpp.bak │ ├── ofApp.h │ └── ofxPassthrough.h └── test-shader-load/ ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin/ │ └── data/ │ ├── blur_gl2.frag │ └── blur_gl3.frag ├── config.make ├── icon.rc ├── openFrameworks-Info.plist ├── src/ │ ├── main.cpp │ ├── ofApp.cpp │ ├── ofApp.cpp.bak │ ├── ofApp.h │ └── ofxFileBlur.h ├── test-shader-load.sln ├── test-shader-load.vcxproj ├── test-shader-load.vcxproj.filters ├── test-shader-load.vcxproj.user └── test-shader-load.xcodeproj/ ├── project.pbxproj └── xcshareddata/ └── xcschemes/ ├── test-shader-load Debug.xcscheme └── test-shader-load Release.xcscheme