├── .DS_Store ├── DoGExample ├── .DS_Store ├── DoGExample.sln ├── DoGExample.vcxproj ├── DoGExample.vcxproj.filters ├── DoGExample.vcxproj.user ├── DoGExample.xcodeproj │ ├── project.pbxproj │ ├── project.pbxproj.orig │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ ├── DoGExample.xccheckout │ │ │ └── ofxFilterLibraryExample.xccheckout │ │ └── xcuserdata │ │ │ └── fargo.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ ├── UserInterfaceState.xcuserstate.BACKUP.33755.xcuserstate │ │ │ ├── UserInterfaceState.xcuserstate.BASE.33755.xcuserstate │ │ │ ├── UserInterfaceState.xcuserstate.LOCAL.33755.xcuserstate │ │ │ ├── UserInterfaceState.xcuserstate.REMOTE.33755.xcuserstate │ │ │ ├── UserInterfaceState.xcuserstate.orig │ │ │ └── WorkspaceSettings.xcsettings │ ├── xcshareddata │ │ └── xcschemes │ │ │ ├── DoGExample Debug.xcscheme │ │ │ └── DoGExample Release.xcscheme │ └── xcuserdata │ │ └── fargo.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── Project.xcconfig ├── bin │ ├── .DS_Store │ └── DoGExample.app │ │ └── Contents │ │ ├── Frameworks │ │ └── GLUT.framework │ │ │ ├── GLUT │ │ │ ├── Headers │ │ │ ├── copy.h │ │ │ ├── extrude.h │ │ │ ├── glsmap.h │ │ │ ├── glsmapint.h │ │ │ ├── glut.h │ │ │ ├── glutbitmap.h │ │ │ ├── glutf90.h │ │ │ ├── glutstroke.h │ │ │ ├── gutil.h │ │ │ ├── intersect.h │ │ │ ├── port.h │ │ │ ├── rot.h │ │ │ ├── segment.h │ │ │ ├── tube.h │ │ │ ├── tube_gc.h │ │ │ └── vvector.h │ │ │ ├── Resources │ │ │ ├── Caution.tiff │ │ │ ├── English.lproj │ │ │ │ ├── GLUT.nib │ │ │ │ │ ├── classes.nib │ │ │ │ │ ├── info.nib │ │ │ │ │ └── objects.nib │ │ │ │ ├── GLUTClipboard.nib │ │ │ │ │ ├── classes.nib │ │ │ │ │ ├── info.nib │ │ │ │ │ └── objects.nib │ │ │ │ ├── GLUTPreferences.nib │ │ │ │ │ ├── classes.nib │ │ │ │ │ ├── info.nib │ │ │ │ │ └── objects.nib │ │ │ │ ├── GLUTUI.strings │ │ │ │ └── InfoPlist.strings │ │ │ ├── Info.plist │ │ │ ├── blankCursor.tiff │ │ │ ├── bottomCursor.tiff │ │ │ ├── bottomleftCursor.tiff │ │ │ ├── bottomrightCursor.tiff │ │ │ ├── crossCursor.tiff │ │ │ ├── cycleCursor.tiff │ │ │ ├── destroyCursor.tiff │ │ │ ├── fingerCursor.tiff │ │ │ ├── helpCursor.tiff │ │ │ ├── leftCursor.tiff │ │ │ ├── leftRightCursor.tiff │ │ │ ├── rightArrowCursor.tiff │ │ │ ├── rightCursor.tiff │ │ │ ├── sprayCursor.tiff │ │ │ ├── topCursor.tiff │ │ │ ├── topleftCursor.tiff │ │ │ ├── toprightCursor.tiff │ │ │ ├── upDownCursor.tiff │ │ │ └── waitCursor.tiff │ │ │ └── Versions │ │ │ ├── A │ │ │ ├── GLUT │ │ │ ├── Headers │ │ │ │ ├── copy.h │ │ │ │ ├── extrude.h │ │ │ │ ├── glsmap.h │ │ │ │ ├── glsmapint.h │ │ │ │ ├── glut.h │ │ │ │ ├── glutbitmap.h │ │ │ │ ├── glutf90.h │ │ │ │ ├── glutstroke.h │ │ │ │ ├── gutil.h │ │ │ │ ├── intersect.h │ │ │ │ ├── port.h │ │ │ │ ├── rot.h │ │ │ │ ├── segment.h │ │ │ │ ├── tube.h │ │ │ │ ├── tube_gc.h │ │ │ │ └── vvector.h │ │ │ └── Resources │ │ │ │ ├── Caution.tiff │ │ │ │ ├── English.lproj │ │ │ │ ├── GLUT.nib │ │ │ │ │ ├── classes.nib │ │ │ │ │ ├── info.nib │ │ │ │ │ └── objects.nib │ │ │ │ ├── GLUTClipboard.nib │ │ │ │ │ ├── classes.nib │ │ │ │ │ ├── info.nib │ │ │ │ │ └── objects.nib │ │ │ │ ├── GLUTPreferences.nib │ │ │ │ │ ├── classes.nib │ │ │ │ │ ├── info.nib │ │ │ │ │ └── objects.nib │ │ │ │ ├── GLUTUI.strings │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info.plist │ │ │ │ ├── blankCursor.tiff │ │ │ │ ├── bottomCursor.tiff │ │ │ │ ├── bottomleftCursor.tiff │ │ │ │ ├── bottomrightCursor.tiff │ │ │ │ ├── crossCursor.tiff │ │ │ │ ├── cycleCursor.tiff │ │ │ │ ├── destroyCursor.tiff │ │ │ │ ├── fingerCursor.tiff │ │ │ │ ├── helpCursor.tiff │ │ │ │ ├── leftCursor.tiff │ │ │ │ ├── leftRightCursor.tiff │ │ │ │ ├── rightArrowCursor.tiff │ │ │ │ ├── rightCursor.tiff │ │ │ │ ├── sprayCursor.tiff │ │ │ │ ├── topCursor.tiff │ │ │ │ ├── topleftCursor.tiff │ │ │ │ ├── toprightCursor.tiff │ │ │ │ ├── upDownCursor.tiff │ │ │ │ └── waitCursor.tiff │ │ │ └── Current │ │ │ ├── GLUT │ │ │ ├── Headers │ │ │ ├── copy.h │ │ │ ├── extrude.h │ │ │ ├── glsmap.h │ │ │ ├── glsmapint.h │ │ │ ├── glut.h │ │ │ ├── glutbitmap.h │ │ │ ├── glutf90.h │ │ │ ├── glutstroke.h │ │ │ ├── gutil.h │ │ │ ├── intersect.h │ │ │ ├── port.h │ │ │ ├── rot.h │ │ │ ├── segment.h │ │ │ ├── tube.h │ │ │ ├── tube_gc.h │ │ │ └── vvector.h │ │ │ └── Resources │ │ │ ├── Caution.tiff │ │ │ ├── English.lproj │ │ │ ├── GLUT.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── objects.nib │ │ │ ├── GLUTClipboard.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── objects.nib │ │ │ ├── GLUTPreferences.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── objects.nib │ │ │ ├── GLUTUI.strings │ │ │ └── InfoPlist.strings │ │ │ ├── Info.plist │ │ │ ├── blankCursor.tiff │ │ │ ├── bottomCursor.tiff │ │ │ ├── bottomleftCursor.tiff │ │ │ ├── bottomrightCursor.tiff │ │ │ ├── crossCursor.tiff │ │ │ ├── cycleCursor.tiff │ │ │ ├── destroyCursor.tiff │ │ │ ├── fingerCursor.tiff │ │ │ ├── helpCursor.tiff │ │ │ ├── leftCursor.tiff │ │ │ ├── leftRightCursor.tiff │ │ │ ├── rightArrowCursor.tiff │ │ │ ├── rightCursor.tiff │ │ │ ├── sprayCursor.tiff │ │ │ ├── topCursor.tiff │ │ │ ├── topleftCursor.tiff │ │ │ ├── toprightCursor.tiff │ │ │ ├── upDownCursor.tiff │ │ │ └── waitCursor.tiff │ │ ├── Info.plist │ │ ├── MacOS │ │ ├── DoGExample │ │ └── libfmodex.dylib │ │ ├── PkgInfo │ │ └── Resources │ │ └── icon.icns ├── config.make ├── openFrameworks-Info.plist └── src │ ├── LineDrawingAlphaFilter.cpp │ ├── LineDrawingAlphaFilter.h │ ├── SketchDoGFilter.cpp │ ├── SketchDoGFilter.h │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── README.md ├── example ├── .DS_Store ├── Makefile ├── Project.xcconfig ├── bin │ ├── .DS_Store │ ├── data │ │ ├── .DS_Store │ │ └── img │ │ │ ├── .DS_Store │ │ │ ├── canvas_texture.jpg │ │ │ ├── glass │ │ │ └── 3.jpg │ │ │ ├── lookup.png │ │ │ ├── lookup_amatorka.png │ │ │ ├── lookup_miss_etikate.png │ │ │ ├── lookup_soft_elegance_1.png │ │ │ ├── lookup_soft_elegance_2.png │ │ │ ├── mandel.jpg │ │ │ ├── voroni_points.png │ │ │ ├── voronoi.png │ │ │ └── wes.jpg │ └── ofxFilterLibraryExample.app │ │ └── Contents │ │ ├── Frameworks │ │ └── GLUT.framework │ │ │ ├── GLUT │ │ │ ├── Headers │ │ │ ├── copy.h │ │ │ ├── extrude.h │ │ │ ├── glsmap.h │ │ │ ├── glsmapint.h │ │ │ ├── glut.h │ │ │ ├── glutbitmap.h │ │ │ ├── glutf90.h │ │ │ ├── glutstroke.h │ │ │ ├── gutil.h │ │ │ ├── intersect.h │ │ │ ├── port.h │ │ │ ├── rot.h │ │ │ ├── segment.h │ │ │ ├── tube.h │ │ │ ├── tube_gc.h │ │ │ └── vvector.h │ │ │ ├── Resources │ │ │ ├── Caution.tiff │ │ │ ├── English.lproj │ │ │ │ ├── GLUT.nib │ │ │ │ │ ├── classes.nib │ │ │ │ │ ├── info.nib │ │ │ │ │ └── objects.nib │ │ │ │ ├── GLUTClipboard.nib │ │ │ │ │ ├── classes.nib │ │ │ │ │ ├── info.nib │ │ │ │ │ └── objects.nib │ │ │ │ ├── GLUTPreferences.nib │ │ │ │ │ ├── classes.nib │ │ │ │ │ ├── info.nib │ │ │ │ │ └── objects.nib │ │ │ │ ├── GLUTUI.strings │ │ │ │ └── InfoPlist.strings │ │ │ ├── Info.plist │ │ │ ├── blankCursor.tiff │ │ │ ├── bottomCursor.tiff │ │ │ ├── bottomleftCursor.tiff │ │ │ ├── bottomrightCursor.tiff │ │ │ ├── crossCursor.tiff │ │ │ ├── cycleCursor.tiff │ │ │ ├── destroyCursor.tiff │ │ │ ├── fingerCursor.tiff │ │ │ ├── helpCursor.tiff │ │ │ ├── leftCursor.tiff │ │ │ ├── leftRightCursor.tiff │ │ │ ├── rightArrowCursor.tiff │ │ │ ├── rightCursor.tiff │ │ │ ├── sprayCursor.tiff │ │ │ ├── topCursor.tiff │ │ │ ├── topleftCursor.tiff │ │ │ ├── toprightCursor.tiff │ │ │ ├── upDownCursor.tiff │ │ │ └── waitCursor.tiff │ │ │ └── Versions │ │ │ ├── A │ │ │ ├── GLUT │ │ │ ├── Headers │ │ │ │ ├── copy.h │ │ │ │ ├── extrude.h │ │ │ │ ├── glsmap.h │ │ │ │ ├── glsmapint.h │ │ │ │ ├── glut.h │ │ │ │ ├── glutbitmap.h │ │ │ │ ├── glutf90.h │ │ │ │ ├── glutstroke.h │ │ │ │ ├── gutil.h │ │ │ │ ├── intersect.h │ │ │ │ ├── port.h │ │ │ │ ├── rot.h │ │ │ │ ├── segment.h │ │ │ │ ├── tube.h │ │ │ │ ├── tube_gc.h │ │ │ │ └── vvector.h │ │ │ └── Resources │ │ │ │ ├── Caution.tiff │ │ │ │ ├── English.lproj │ │ │ │ ├── GLUT.nib │ │ │ │ │ ├── classes.nib │ │ │ │ │ ├── info.nib │ │ │ │ │ └── objects.nib │ │ │ │ ├── GLUTClipboard.nib │ │ │ │ │ ├── classes.nib │ │ │ │ │ ├── info.nib │ │ │ │ │ └── objects.nib │ │ │ │ ├── GLUTPreferences.nib │ │ │ │ │ ├── classes.nib │ │ │ │ │ ├── info.nib │ │ │ │ │ └── objects.nib │ │ │ │ ├── GLUTUI.strings │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── Info.plist │ │ │ │ ├── blankCursor.tiff │ │ │ │ ├── bottomCursor.tiff │ │ │ │ ├── bottomleftCursor.tiff │ │ │ │ ├── bottomrightCursor.tiff │ │ │ │ ├── crossCursor.tiff │ │ │ │ ├── cycleCursor.tiff │ │ │ │ ├── destroyCursor.tiff │ │ │ │ ├── fingerCursor.tiff │ │ │ │ ├── helpCursor.tiff │ │ │ │ ├── leftCursor.tiff │ │ │ │ ├── leftRightCursor.tiff │ │ │ │ ├── rightArrowCursor.tiff │ │ │ │ ├── rightCursor.tiff │ │ │ │ ├── sprayCursor.tiff │ │ │ │ ├── topCursor.tiff │ │ │ │ ├── topleftCursor.tiff │ │ │ │ ├── toprightCursor.tiff │ │ │ │ ├── upDownCursor.tiff │ │ │ │ └── waitCursor.tiff │ │ │ └── Current │ │ │ ├── GLUT │ │ │ ├── Headers │ │ │ ├── copy.h │ │ │ ├── extrude.h │ │ │ ├── glsmap.h │ │ │ ├── glsmapint.h │ │ │ ├── glut.h │ │ │ ├── glutbitmap.h │ │ │ ├── glutf90.h │ │ │ ├── glutstroke.h │ │ │ ├── gutil.h │ │ │ ├── intersect.h │ │ │ ├── port.h │ │ │ ├── rot.h │ │ │ ├── segment.h │ │ │ ├── tube.h │ │ │ ├── tube_gc.h │ │ │ └── vvector.h │ │ │ └── Resources │ │ │ ├── Caution.tiff │ │ │ ├── English.lproj │ │ │ ├── GLUT.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── objects.nib │ │ │ ├── GLUTClipboard.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── objects.nib │ │ │ ├── GLUTPreferences.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── objects.nib │ │ │ ├── GLUTUI.strings │ │ │ └── InfoPlist.strings │ │ │ ├── Info.plist │ │ │ ├── blankCursor.tiff │ │ │ ├── bottomCursor.tiff │ │ │ ├── bottomleftCursor.tiff │ │ │ ├── bottomrightCursor.tiff │ │ │ ├── crossCursor.tiff │ │ │ ├── cycleCursor.tiff │ │ │ ├── destroyCursor.tiff │ │ │ ├── fingerCursor.tiff │ │ │ ├── helpCursor.tiff │ │ │ ├── leftCursor.tiff │ │ │ ├── leftRightCursor.tiff │ │ │ ├── rightArrowCursor.tiff │ │ │ ├── rightCursor.tiff │ │ │ ├── sprayCursor.tiff │ │ │ ├── topCursor.tiff │ │ │ ├── topleftCursor.tiff │ │ │ ├── toprightCursor.tiff │ │ │ ├── upDownCursor.tiff │ │ │ └── waitCursor.tiff │ │ ├── Info.plist │ │ ├── MacOS │ │ ├── libfmodex.dylib │ │ └── ofxFilterLibraryExample │ │ ├── PkgInfo │ │ └── Resources │ │ └── icon.icns ├── config.make ├── example.sln ├── example.vcxproj ├── example.vcxproj.filters ├── example.vcxproj.user ├── ofxFilterLibraryExample.xcodeproj │ ├── project.pbxproj │ ├── project.pbxproj.orig │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── ofxFilterLibraryExample.xccheckout │ │ └── xcuserdata │ │ │ └── fargo.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ ├── UserInterfaceState.xcuserstate.BACKUP.33755.xcuserstate │ │ │ ├── UserInterfaceState.xcuserstate.BASE.33755.xcuserstate │ │ │ ├── UserInterfaceState.xcuserstate.LOCAL.33755.xcuserstate │ │ │ ├── UserInterfaceState.xcuserstate.REMOTE.33755.xcuserstate │ │ │ ├── UserInterfaceState.xcuserstate.orig │ │ │ └── WorkspaceSettings.xcsettings │ ├── xcshareddata │ │ └── xcschemes │ │ │ ├── ofxFilterLibraryExample Debug.xcscheme │ │ │ └── ofxFilterLibraryExample Release.xcscheme │ └── xcuserdata │ │ └── fargo.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── license.md ├── ofxaddons_thumbnail.png └── src ├── .DS_Store ├── filters ├── Abstract3x3ConvolutionFilter.cpp ├── Abstract3x3ConvolutionFilter.h ├── Abstract3x3PingPongFilter.cpp ├── Abstract3x3PingPongFilter.h ├── Abstract3x3TextureSamplingFilter.cpp ├── Abstract3x3TextureSamplingFilter.h ├── AbstractDoGFilter.cpp ├── AbstractDoGFilter.h ├── AbstractFilter.cpp ├── AbstractFilter.h ├── AbstractPingPongRenderer.cpp ├── AbstractPingPongRenderer.h ├── AbstractTwoInputCrossTextureSamplingFilter.cpp ├── AbstractTwoInputCrossTextureSamplingFilter.h ├── AbstractTwoInputFilter.cpp ├── AbstractTwoInputFilter.h ├── AdditiveBlendFilter.cpp ├── AdditiveBlendFilter.h ├── AlphaBlendFilter.cpp ├── AlphaBlendFilter.h ├── AlphaMaskFilter.cpp ├── AlphaMaskFilter.h ├── AverageColorFilter.cpp ├── AverageColorFilter.h ├── BilateralFilter.cpp ├── BilateralFilter.h ├── BloomFilter.cpp ├── BloomFilter.h ├── BoxBlurFilter.cpp ├── BoxBlurFilter.h ├── BrightnessFilter.cpp ├── BrightnessFilter.h ├── CGAColorspaceFilter.cpp ├── CGAColorspaceFilter.h ├── ChromaKeyBlendFilter.cpp ├── ChromaKeyBlendFilter.h ├── ColorBlendFilter.cpp ├── ColorBlendFilter.h ├── ColorBurnFilter.cpp ├── ColorBurnFilter.h ├── ColorMatrixFilter.cpp ├── ColorMatrixFilter.h ├── ColorPackingFilter.cpp ├── ColorPackingFilter.h ├── ColorReplacementFilter.cpp ├── ColorReplacementFilter.h ├── ContrastFilter.cpp ├── ContrastFilter.h ├── CornerDetectionFilter.cpp ├── CornerDetectionFilter.h ├── CrosshatchFilter.cpp ├── CrosshatchFilter.h ├── DarkenBlendFilter.cpp ├── DarkenBlendFilter.h ├── DilationFilter.cpp ├── DilationFilter.h ├── DirectionalDoGFilter.cpp ├── DirectionalDoGFilter.h ├── DisplacementFilter.cpp ├── DisplacementFilter.h ├── DissolveBlendFilter.cpp ├── DissolveBlendFilter.h ├── DoGFilter.cpp ├── DoGFilter.h ├── EdgeTangentFilter.cpp ├── EdgeTangentFilter.h ├── EdgeTangentSmoothingFilter.cpp ├── EdgeTangentSmoothingFilter.h ├── EmbossFilter.cpp ├── EmbossFilter.h ├── ErosionFilter.cpp ├── ErosionFilter.h ├── ExclusionBlendFilter.cpp ├── ExclusionBlendFilter.h ├── FilterChain.cpp ├── FilterChain.h ├── FlowDoGFilter.cpp ├── FlowDoGFilter.h ├── GammaFilter.cpp ├── GammaFilter.h ├── GaussianBlurFilter.cpp ├── GaussianBlurFilter.h ├── GradientMapFilter.cpp ├── GradientMapFilter.h ├── GrayscaleFilter.cpp ├── GrayscaleFilter.h ├── HalftoneFilter.cpp ├── HalftoneFilter.h ├── HarrisCornerDetectionFilter.cpp ├── HarrisCornerDetectionFilter.h ├── HueFilter.cpp ├── HueFilter.h ├── InvertFilter.cpp ├── InvertFilter.h ├── KuwaharaFilter.cpp ├── KuwaharaFilter.h ├── LaplacianFilter.cpp ├── LaplacianFilter.h ├── LookupFilter.cpp ├── LookupFilter.h ├── LowPassFilter.cpp ├── LowPassFilter.h ├── MotionDetectionFilter.cpp ├── MotionDetectionFilter.h ├── MultiplyBlendFilter.cpp ├── MultiplyBlendFilter.h ├── NormalBlendFilter.cpp ├── NormalBlendFilter.h ├── PerlinNoiseFilter.cpp ├── PerlinNoiseFilter.h ├── PerlinPixellationFilter.cpp ├── PerlinPixellationFilter.h ├── PixelateFilter.cpp ├── PixelateFilter.h ├── PoissonBlendFilter.cpp ├── PoissonBlendFilter.h ├── PosterizeFilter.cpp ├── PosterizeFilter.h ├── SaturationFilter.cpp ├── SaturationFilter.h ├── SketchFilter.cpp ├── SketchFilter.h ├── SmoothToonFilter.cpp ├── SmoothToonFilter.h ├── SobelEdgeDetectionFilter.cpp ├── SobelEdgeDetectionFilter.h ├── ThresholdedNonMaximumSuppressionFilter.cpp ├── ThresholdedNonMaximumSuppressionFilter.h ├── TiltShiftFilter.cpp ├── TiltShiftFilter.h ├── ToonFilter.cpp ├── ToonFilter.h ├── VignetteFilter.cpp ├── VignetteFilter.h ├── VoronoiFilter.cpp ├── VoronoiFilter.h ├── XYDerivativeFilter.cpp ├── XYDerivativeFilter.h ├── ZoomBlurFilter.cpp └── ZoomBlurFilter.h ├── ofxFilterLibrary.h └── parameters ├── AbstractParameter.h ├── Parameter2f.h ├── Parameter2fv.h ├── Parameter3f.h ├── Parameter3fv.h ├── Parameter4f.h ├── ParameterF.h ├── ParameterI.h ├── ParameterMatrix4f.h ├── ParameterT.h ├── ParameterV.h ├── ParametricObject.cpp └── ParametricObject.h /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/.DS_Store -------------------------------------------------------------------------------- /DoGExample/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/.DS_Store -------------------------------------------------------------------------------- /DoGExample/DoGExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/DoGExample.sln -------------------------------------------------------------------------------- /DoGExample/DoGExample.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/DoGExample.vcxproj -------------------------------------------------------------------------------- /DoGExample/DoGExample.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/DoGExample.vcxproj.filters -------------------------------------------------------------------------------- /DoGExample/DoGExample.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/DoGExample.vcxproj.user -------------------------------------------------------------------------------- /DoGExample/DoGExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/DoGExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DoGExample/DoGExample.xcodeproj/project.pbxproj.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/DoGExample.xcodeproj/project.pbxproj.orig -------------------------------------------------------------------------------- /DoGExample/DoGExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/DoGExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DoGExample/DoGExample.xcodeproj/project.xcworkspace/xcshareddata/DoGExample.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/DoGExample.xcodeproj/project.xcworkspace/xcshareddata/DoGExample.xccheckout -------------------------------------------------------------------------------- /DoGExample/DoGExample.xcodeproj/project.xcworkspace/xcshareddata/ofxFilterLibraryExample.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/DoGExample.xcodeproj/project.xcworkspace/xcshareddata/ofxFilterLibraryExample.xccheckout -------------------------------------------------------------------------------- /DoGExample/DoGExample.xcodeproj/project.xcworkspace/xcuserdata/fargo.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/DoGExample.xcodeproj/project.xcworkspace/xcuserdata/fargo.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /DoGExample/DoGExample.xcodeproj/project.xcworkspace/xcuserdata/fargo.xcuserdatad/UserInterfaceState.xcuserstate.BACKUP.33755.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/DoGExample.xcodeproj/project.xcworkspace/xcuserdata/fargo.xcuserdatad/UserInterfaceState.xcuserstate.BACKUP.33755.xcuserstate -------------------------------------------------------------------------------- /DoGExample/DoGExample.xcodeproj/project.xcworkspace/xcuserdata/fargo.xcuserdatad/UserInterfaceState.xcuserstate.BASE.33755.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/DoGExample.xcodeproj/project.xcworkspace/xcuserdata/fargo.xcuserdatad/UserInterfaceState.xcuserstate.BASE.33755.xcuserstate -------------------------------------------------------------------------------- /DoGExample/DoGExample.xcodeproj/project.xcworkspace/xcuserdata/fargo.xcuserdatad/UserInterfaceState.xcuserstate.LOCAL.33755.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/DoGExample.xcodeproj/project.xcworkspace/xcuserdata/fargo.xcuserdatad/UserInterfaceState.xcuserstate.LOCAL.33755.xcuserstate -------------------------------------------------------------------------------- /DoGExample/DoGExample.xcodeproj/project.xcworkspace/xcuserdata/fargo.xcuserdatad/UserInterfaceState.xcuserstate.REMOTE.33755.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/DoGExample.xcodeproj/project.xcworkspace/xcuserdata/fargo.xcuserdatad/UserInterfaceState.xcuserstate.REMOTE.33755.xcuserstate -------------------------------------------------------------------------------- /DoGExample/DoGExample.xcodeproj/project.xcworkspace/xcuserdata/fargo.xcuserdatad/UserInterfaceState.xcuserstate.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/DoGExample.xcodeproj/project.xcworkspace/xcuserdata/fargo.xcuserdatad/UserInterfaceState.xcuserstate.orig -------------------------------------------------------------------------------- /DoGExample/DoGExample.xcodeproj/project.xcworkspace/xcuserdata/fargo.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/DoGExample.xcodeproj/project.xcworkspace/xcuserdata/fargo.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /DoGExample/DoGExample.xcodeproj/xcshareddata/xcschemes/DoGExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/DoGExample.xcodeproj/xcshareddata/xcschemes/DoGExample Debug.xcscheme -------------------------------------------------------------------------------- /DoGExample/DoGExample.xcodeproj/xcshareddata/xcschemes/DoGExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/DoGExample.xcodeproj/xcshareddata/xcschemes/DoGExample Release.xcscheme -------------------------------------------------------------------------------- /DoGExample/DoGExample.xcodeproj/xcuserdata/fargo.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/DoGExample.xcodeproj/xcuserdata/fargo.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /DoGExample/DoGExample.xcodeproj/xcuserdata/fargo.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/DoGExample.xcodeproj/xcuserdata/fargo.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /DoGExample/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/Project.xcconfig -------------------------------------------------------------------------------- /DoGExample/bin/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/.DS_Store -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/GLUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/GLUT -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Headers/copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Headers/copy.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Headers/extrude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Headers/extrude.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Headers/glsmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Headers/glsmap.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Headers/glsmapint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Headers/glsmapint.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Headers/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Headers/glut.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Headers/glutbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Headers/glutbitmap.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Headers/glutf90.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Headers/glutf90.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Headers/glutstroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Headers/glutstroke.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Headers/gutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Headers/gutil.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Headers/intersect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Headers/intersect.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Headers/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Headers/port.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Headers/rot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Headers/rot.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Headers/segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Headers/segment.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Headers/tube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Headers/tube.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Headers/tube_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Headers/tube_gc.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Headers/vvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Headers/vvector.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/Caution.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/Caution.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUT.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUT.nib/classes.nib -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUT.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUT.nib/info.nib -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUT.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUT.nib/objects.nib -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTClipboard.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTClipboard.nib/classes.nib -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTClipboard.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTClipboard.nib/info.nib -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTClipboard.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTClipboard.nib/objects.nib -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTPreferences.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTPreferences.nib/classes.nib -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTPreferences.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTPreferences.nib/info.nib -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTPreferences.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTPreferences.nib/objects.nib -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTUI.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTUI.strings -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/Info.plist -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/blankCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/blankCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/bottomCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/bottomCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/bottomleftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/bottomleftCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/bottomrightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/bottomrightCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/crossCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/crossCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/cycleCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/cycleCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/destroyCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/destroyCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/fingerCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/fingerCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/helpCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/helpCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/leftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/leftCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/leftRightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/leftRightCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/rightArrowCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/rightArrowCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/rightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/rightCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/sprayCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/sprayCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/topCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/topCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/topleftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/topleftCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/toprightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/toprightCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/upDownCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/upDownCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/waitCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Resources/waitCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/GLUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/GLUT -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/copy.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/extrude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/extrude.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glsmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glsmap.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glsmapint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glsmapint.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glut.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutbitmap.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutf90.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutf90.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutstroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutstroke.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/gutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/gutil.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/intersect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/intersect.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/port.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/rot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/rot.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/segment.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube_gc.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/vvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/vvector.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/Caution.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/Caution.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUT.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUT.nib/classes.nib -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUT.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUT.nib/info.nib -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUT.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUT.nib/objects.nib -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTClipboard.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTClipboard.nib/classes.nib -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTClipboard.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTClipboard.nib/info.nib -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTClipboard.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTClipboard.nib/objects.nib -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTPreferences.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTPreferences.nib/classes.nib -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTPreferences.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTPreferences.nib/info.nib -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTPreferences.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTPreferences.nib/objects.nib -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTUI.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTUI.strings -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/blankCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/blankCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomleftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomleftCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomrightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomrightCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/crossCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/crossCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/cycleCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/cycleCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/destroyCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/destroyCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/fingerCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/fingerCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/helpCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/helpCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/leftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/leftCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/leftRightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/leftRightCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/rightArrowCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/rightArrowCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/rightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/rightCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/sprayCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/sprayCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/topCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/topCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/topleftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/topleftCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/toprightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/toprightCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/upDownCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/upDownCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/waitCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/waitCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/GLUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/GLUT -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/copy.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/extrude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/extrude.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glsmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glsmap.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glsmapint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glsmapint.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glut.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glutbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glutbitmap.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glutf90.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glutf90.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glutstroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glutstroke.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/gutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/gutil.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/intersect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/intersect.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/port.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/rot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/rot.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/segment.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/tube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/tube.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/tube_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/tube_gc.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/vvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/vvector.h -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/Caution.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/Caution.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUT.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUT.nib/classes.nib -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUT.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUT.nib/info.nib -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUT.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUT.nib/objects.nib -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTClipboard.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTClipboard.nib/classes.nib -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTClipboard.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTClipboard.nib/info.nib -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTClipboard.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTClipboard.nib/objects.nib -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTPreferences.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTPreferences.nib/classes.nib -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTPreferences.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTPreferences.nib/info.nib -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTPreferences.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTPreferences.nib/objects.nib -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTUI.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTUI.strings -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/Info.plist -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/blankCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/blankCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/bottomCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/bottomCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/bottomleftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/bottomleftCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/bottomrightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/bottomrightCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/crossCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/crossCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/cycleCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/cycleCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/destroyCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/destroyCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/fingerCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/fingerCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/helpCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/helpCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/leftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/leftCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/leftRightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/leftRightCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/rightArrowCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/rightArrowCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/rightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/rightCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/sprayCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/sprayCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/topCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/topCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/topleftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/topleftCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/toprightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/toprightCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/upDownCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/upDownCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/waitCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/waitCursor.tiff -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Info.plist -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/MacOS/DoGExample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/MacOS/DoGExample -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/MacOS/libfmodex.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/MacOS/libfmodex.dylib -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /DoGExample/bin/DoGExample.app/Contents/Resources/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/bin/DoGExample.app/Contents/Resources/icon.icns -------------------------------------------------------------------------------- /DoGExample/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/config.make -------------------------------------------------------------------------------- /DoGExample/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/openFrameworks-Info.plist -------------------------------------------------------------------------------- /DoGExample/src/LineDrawingAlphaFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/src/LineDrawingAlphaFilter.cpp -------------------------------------------------------------------------------- /DoGExample/src/LineDrawingAlphaFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/src/LineDrawingAlphaFilter.h -------------------------------------------------------------------------------- /DoGExample/src/SketchDoGFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/src/SketchDoGFilter.cpp -------------------------------------------------------------------------------- /DoGExample/src/SketchDoGFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/src/SketchDoGFilter.h -------------------------------------------------------------------------------- /DoGExample/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/src/main.cpp -------------------------------------------------------------------------------- /DoGExample/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/src/ofApp.cpp -------------------------------------------------------------------------------- /DoGExample/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/DoGExample/src/ofApp.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/README.md -------------------------------------------------------------------------------- /example/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/.DS_Store -------------------------------------------------------------------------------- /example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/Makefile -------------------------------------------------------------------------------- /example/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/Project.xcconfig -------------------------------------------------------------------------------- /example/bin/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/.DS_Store -------------------------------------------------------------------------------- /example/bin/data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/data/.DS_Store -------------------------------------------------------------------------------- /example/bin/data/img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/data/img/.DS_Store -------------------------------------------------------------------------------- /example/bin/data/img/canvas_texture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/data/img/canvas_texture.jpg -------------------------------------------------------------------------------- /example/bin/data/img/glass/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/data/img/glass/3.jpg -------------------------------------------------------------------------------- /example/bin/data/img/lookup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/data/img/lookup.png -------------------------------------------------------------------------------- /example/bin/data/img/lookup_amatorka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/data/img/lookup_amatorka.png -------------------------------------------------------------------------------- /example/bin/data/img/lookup_miss_etikate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/data/img/lookup_miss_etikate.png -------------------------------------------------------------------------------- /example/bin/data/img/lookup_soft_elegance_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/data/img/lookup_soft_elegance_1.png -------------------------------------------------------------------------------- /example/bin/data/img/lookup_soft_elegance_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/data/img/lookup_soft_elegance_2.png -------------------------------------------------------------------------------- /example/bin/data/img/mandel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/data/img/mandel.jpg -------------------------------------------------------------------------------- /example/bin/data/img/voroni_points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/data/img/voroni_points.png -------------------------------------------------------------------------------- /example/bin/data/img/voronoi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/data/img/voronoi.png -------------------------------------------------------------------------------- /example/bin/data/img/wes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/data/img/wes.jpg -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/GLUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/GLUT -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Headers/copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Headers/copy.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Headers/extrude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Headers/extrude.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Headers/glsmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Headers/glsmap.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Headers/glsmapint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Headers/glsmapint.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Headers/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Headers/glut.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Headers/glutbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Headers/glutbitmap.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Headers/glutf90.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Headers/glutf90.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Headers/glutstroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Headers/glutstroke.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Headers/gutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Headers/gutil.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Headers/intersect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Headers/intersect.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Headers/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Headers/port.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Headers/rot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Headers/rot.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Headers/segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Headers/segment.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Headers/tube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Headers/tube.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Headers/tube_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Headers/tube_gc.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Headers/vvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Headers/vvector.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/Caution.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/Caution.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUT.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUT.nib/classes.nib -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUT.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUT.nib/info.nib -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUT.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUT.nib/objects.nib -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTClipboard.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTClipboard.nib/classes.nib -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTClipboard.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTClipboard.nib/info.nib -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTClipboard.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTClipboard.nib/objects.nib -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTPreferences.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTPreferences.nib/classes.nib -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTPreferences.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTPreferences.nib/info.nib -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTPreferences.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTPreferences.nib/objects.nib -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTUI.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTUI.strings -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/Info.plist -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/blankCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/blankCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/bottomCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/bottomCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/bottomleftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/bottomleftCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/bottomrightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/bottomrightCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/crossCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/crossCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/cycleCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/cycleCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/destroyCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/destroyCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/fingerCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/fingerCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/helpCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/helpCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/leftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/leftCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/leftRightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/leftRightCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/rightArrowCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/rightArrowCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/rightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/rightCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/sprayCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/sprayCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/topCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/topCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/topleftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/topleftCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/toprightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/toprightCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/upDownCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/upDownCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/waitCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Resources/waitCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/GLUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/GLUT -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/copy.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/extrude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/extrude.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glsmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glsmap.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glsmapint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glsmapint.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glut.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutbitmap.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutf90.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutf90.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutstroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutstroke.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/gutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/gutil.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/intersect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/intersect.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/port.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/rot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/rot.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/segment.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube_gc.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/vvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/vvector.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/Caution.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/Caution.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUT.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUT.nib/classes.nib -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUT.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUT.nib/info.nib -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUT.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUT.nib/objects.nib -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTClipboard.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTClipboard.nib/classes.nib -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTClipboard.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTClipboard.nib/info.nib -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTClipboard.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTClipboard.nib/objects.nib -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTPreferences.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTPreferences.nib/classes.nib -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTPreferences.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTPreferences.nib/info.nib -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTPreferences.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTPreferences.nib/objects.nib -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTUI.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTUI.strings -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/blankCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/blankCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomleftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomleftCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomrightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomrightCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/crossCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/crossCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/cycleCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/cycleCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/destroyCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/destroyCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/fingerCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/fingerCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/helpCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/helpCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/leftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/leftCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/leftRightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/leftRightCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/rightArrowCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/rightArrowCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/rightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/rightCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/sprayCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/sprayCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/topCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/topCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/topleftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/topleftCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/toprightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/toprightCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/upDownCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/upDownCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/waitCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/waitCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/GLUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/GLUT -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/copy.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/extrude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/extrude.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glsmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glsmap.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glsmapint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glsmapint.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glut.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glutbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glutbitmap.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glutf90.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glutf90.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glutstroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glutstroke.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/gutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/gutil.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/intersect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/intersect.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/port.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/rot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/rot.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/segment.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/tube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/tube.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/tube_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/tube_gc.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/vvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/vvector.h -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/Caution.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/Caution.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUT.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUT.nib/classes.nib -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUT.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUT.nib/info.nib -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUT.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUT.nib/objects.nib -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTClipboard.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTClipboard.nib/classes.nib -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTClipboard.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTClipboard.nib/info.nib -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTClipboard.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTClipboard.nib/objects.nib -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTPreferences.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTPreferences.nib/classes.nib -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTPreferences.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTPreferences.nib/info.nib -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTPreferences.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTPreferences.nib/objects.nib -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTUI.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTUI.strings -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/Info.plist -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/blankCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/blankCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/bottomCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/bottomCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/bottomleftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/bottomleftCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/bottomrightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/bottomrightCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/crossCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/crossCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/cycleCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/cycleCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/destroyCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/destroyCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/fingerCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/fingerCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/helpCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/helpCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/leftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/leftCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/leftRightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/leftRightCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/rightArrowCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/rightArrowCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/rightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/rightCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/sprayCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/sprayCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/topCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/topCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/topleftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/topleftCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/toprightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/toprightCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/upDownCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/upDownCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/waitCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/waitCursor.tiff -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Info.plist -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/MacOS/libfmodex.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/MacOS/libfmodex.dylib -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/MacOS/ofxFilterLibraryExample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/MacOS/ofxFilterLibraryExample -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /example/bin/ofxFilterLibraryExample.app/Contents/Resources/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/bin/ofxFilterLibraryExample.app/Contents/Resources/icon.icns -------------------------------------------------------------------------------- /example/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/config.make -------------------------------------------------------------------------------- /example/example.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/example.sln -------------------------------------------------------------------------------- /example/example.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/example.vcxproj -------------------------------------------------------------------------------- /example/example.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/example.vcxproj.filters -------------------------------------------------------------------------------- /example/example.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/example.vcxproj.user -------------------------------------------------------------------------------- /example/ofxFilterLibraryExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/ofxFilterLibraryExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ofxFilterLibraryExample.xcodeproj/project.pbxproj.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/ofxFilterLibraryExample.xcodeproj/project.pbxproj.orig -------------------------------------------------------------------------------- /example/ofxFilterLibraryExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/ofxFilterLibraryExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ofxFilterLibraryExample.xcodeproj/project.xcworkspace/xcshareddata/ofxFilterLibraryExample.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/ofxFilterLibraryExample.xcodeproj/project.xcworkspace/xcshareddata/ofxFilterLibraryExample.xccheckout -------------------------------------------------------------------------------- /example/ofxFilterLibraryExample.xcodeproj/project.xcworkspace/xcuserdata/fargo.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/ofxFilterLibraryExample.xcodeproj/project.xcworkspace/xcuserdata/fargo.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /example/ofxFilterLibraryExample.xcodeproj/project.xcworkspace/xcuserdata/fargo.xcuserdatad/UserInterfaceState.xcuserstate.BACKUP.33755.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/ofxFilterLibraryExample.xcodeproj/project.xcworkspace/xcuserdata/fargo.xcuserdatad/UserInterfaceState.xcuserstate.BACKUP.33755.xcuserstate -------------------------------------------------------------------------------- /example/ofxFilterLibraryExample.xcodeproj/project.xcworkspace/xcuserdata/fargo.xcuserdatad/UserInterfaceState.xcuserstate.BASE.33755.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/ofxFilterLibraryExample.xcodeproj/project.xcworkspace/xcuserdata/fargo.xcuserdatad/UserInterfaceState.xcuserstate.BASE.33755.xcuserstate -------------------------------------------------------------------------------- /example/ofxFilterLibraryExample.xcodeproj/project.xcworkspace/xcuserdata/fargo.xcuserdatad/UserInterfaceState.xcuserstate.LOCAL.33755.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/ofxFilterLibraryExample.xcodeproj/project.xcworkspace/xcuserdata/fargo.xcuserdatad/UserInterfaceState.xcuserstate.LOCAL.33755.xcuserstate -------------------------------------------------------------------------------- /example/ofxFilterLibraryExample.xcodeproj/project.xcworkspace/xcuserdata/fargo.xcuserdatad/UserInterfaceState.xcuserstate.REMOTE.33755.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/ofxFilterLibraryExample.xcodeproj/project.xcworkspace/xcuserdata/fargo.xcuserdatad/UserInterfaceState.xcuserstate.REMOTE.33755.xcuserstate -------------------------------------------------------------------------------- /example/ofxFilterLibraryExample.xcodeproj/project.xcworkspace/xcuserdata/fargo.xcuserdatad/UserInterfaceState.xcuserstate.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/ofxFilterLibraryExample.xcodeproj/project.xcworkspace/xcuserdata/fargo.xcuserdatad/UserInterfaceState.xcuserstate.orig -------------------------------------------------------------------------------- /example/ofxFilterLibraryExample.xcodeproj/project.xcworkspace/xcuserdata/fargo.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/ofxFilterLibraryExample.xcodeproj/project.xcworkspace/xcuserdata/fargo.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example/ofxFilterLibraryExample.xcodeproj/xcshareddata/xcschemes/ofxFilterLibraryExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/ofxFilterLibraryExample.xcodeproj/xcshareddata/xcschemes/ofxFilterLibraryExample Debug.xcscheme -------------------------------------------------------------------------------- /example/ofxFilterLibraryExample.xcodeproj/xcshareddata/xcschemes/ofxFilterLibraryExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/ofxFilterLibraryExample.xcodeproj/xcshareddata/xcschemes/ofxFilterLibraryExample Release.xcscheme -------------------------------------------------------------------------------- /example/ofxFilterLibraryExample.xcodeproj/xcuserdata/fargo.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/ofxFilterLibraryExample.xcodeproj/xcuserdata/fargo.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /example/ofxFilterLibraryExample.xcodeproj/xcuserdata/fargo.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/ofxFilterLibraryExample.xcodeproj/xcuserdata/fargo.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /example/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/src/main.cpp -------------------------------------------------------------------------------- /example/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/src/ofApp.cpp -------------------------------------------------------------------------------- /example/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/example/src/ofApp.h -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/license.md -------------------------------------------------------------------------------- /ofxaddons_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/ofxaddons_thumbnail.png -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/filters/Abstract3x3ConvolutionFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/Abstract3x3ConvolutionFilter.cpp -------------------------------------------------------------------------------- /src/filters/Abstract3x3ConvolutionFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/Abstract3x3ConvolutionFilter.h -------------------------------------------------------------------------------- /src/filters/Abstract3x3PingPongFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/Abstract3x3PingPongFilter.cpp -------------------------------------------------------------------------------- /src/filters/Abstract3x3PingPongFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/Abstract3x3PingPongFilter.h -------------------------------------------------------------------------------- /src/filters/Abstract3x3TextureSamplingFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/Abstract3x3TextureSamplingFilter.cpp -------------------------------------------------------------------------------- /src/filters/Abstract3x3TextureSamplingFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/Abstract3x3TextureSamplingFilter.h -------------------------------------------------------------------------------- /src/filters/AbstractDoGFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/AbstractDoGFilter.cpp -------------------------------------------------------------------------------- /src/filters/AbstractDoGFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/AbstractDoGFilter.h -------------------------------------------------------------------------------- /src/filters/AbstractFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/AbstractFilter.cpp -------------------------------------------------------------------------------- /src/filters/AbstractFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/AbstractFilter.h -------------------------------------------------------------------------------- /src/filters/AbstractPingPongRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/AbstractPingPongRenderer.cpp -------------------------------------------------------------------------------- /src/filters/AbstractPingPongRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/AbstractPingPongRenderer.h -------------------------------------------------------------------------------- /src/filters/AbstractTwoInputCrossTextureSamplingFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/AbstractTwoInputCrossTextureSamplingFilter.cpp -------------------------------------------------------------------------------- /src/filters/AbstractTwoInputCrossTextureSamplingFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/AbstractTwoInputCrossTextureSamplingFilter.h -------------------------------------------------------------------------------- /src/filters/AbstractTwoInputFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/AbstractTwoInputFilter.cpp -------------------------------------------------------------------------------- /src/filters/AbstractTwoInputFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/AbstractTwoInputFilter.h -------------------------------------------------------------------------------- /src/filters/AdditiveBlendFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/AdditiveBlendFilter.cpp -------------------------------------------------------------------------------- /src/filters/AdditiveBlendFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/AdditiveBlendFilter.h -------------------------------------------------------------------------------- /src/filters/AlphaBlendFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/AlphaBlendFilter.cpp -------------------------------------------------------------------------------- /src/filters/AlphaBlendFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/AlphaBlendFilter.h -------------------------------------------------------------------------------- /src/filters/AlphaMaskFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/AlphaMaskFilter.cpp -------------------------------------------------------------------------------- /src/filters/AlphaMaskFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/AlphaMaskFilter.h -------------------------------------------------------------------------------- /src/filters/AverageColorFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/AverageColorFilter.cpp -------------------------------------------------------------------------------- /src/filters/AverageColorFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/AverageColorFilter.h -------------------------------------------------------------------------------- /src/filters/BilateralFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/BilateralFilter.cpp -------------------------------------------------------------------------------- /src/filters/BilateralFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/BilateralFilter.h -------------------------------------------------------------------------------- /src/filters/BloomFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/BloomFilter.cpp -------------------------------------------------------------------------------- /src/filters/BloomFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/BloomFilter.h -------------------------------------------------------------------------------- /src/filters/BoxBlurFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/BoxBlurFilter.cpp -------------------------------------------------------------------------------- /src/filters/BoxBlurFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/BoxBlurFilter.h -------------------------------------------------------------------------------- /src/filters/BrightnessFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/BrightnessFilter.cpp -------------------------------------------------------------------------------- /src/filters/BrightnessFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/BrightnessFilter.h -------------------------------------------------------------------------------- /src/filters/CGAColorspaceFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/CGAColorspaceFilter.cpp -------------------------------------------------------------------------------- /src/filters/CGAColorspaceFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/CGAColorspaceFilter.h -------------------------------------------------------------------------------- /src/filters/ChromaKeyBlendFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/ChromaKeyBlendFilter.cpp -------------------------------------------------------------------------------- /src/filters/ChromaKeyBlendFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/ChromaKeyBlendFilter.h -------------------------------------------------------------------------------- /src/filters/ColorBlendFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/ColorBlendFilter.cpp -------------------------------------------------------------------------------- /src/filters/ColorBlendFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/ColorBlendFilter.h -------------------------------------------------------------------------------- /src/filters/ColorBurnFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/ColorBurnFilter.cpp -------------------------------------------------------------------------------- /src/filters/ColorBurnFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/ColorBurnFilter.h -------------------------------------------------------------------------------- /src/filters/ColorMatrixFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/ColorMatrixFilter.cpp -------------------------------------------------------------------------------- /src/filters/ColorMatrixFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/ColorMatrixFilter.h -------------------------------------------------------------------------------- /src/filters/ColorPackingFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/ColorPackingFilter.cpp -------------------------------------------------------------------------------- /src/filters/ColorPackingFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/ColorPackingFilter.h -------------------------------------------------------------------------------- /src/filters/ColorReplacementFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/ColorReplacementFilter.cpp -------------------------------------------------------------------------------- /src/filters/ColorReplacementFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/ColorReplacementFilter.h -------------------------------------------------------------------------------- /src/filters/ContrastFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/ContrastFilter.cpp -------------------------------------------------------------------------------- /src/filters/ContrastFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/ContrastFilter.h -------------------------------------------------------------------------------- /src/filters/CornerDetectionFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/CornerDetectionFilter.cpp -------------------------------------------------------------------------------- /src/filters/CornerDetectionFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/CornerDetectionFilter.h -------------------------------------------------------------------------------- /src/filters/CrosshatchFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/CrosshatchFilter.cpp -------------------------------------------------------------------------------- /src/filters/CrosshatchFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/CrosshatchFilter.h -------------------------------------------------------------------------------- /src/filters/DarkenBlendFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/DarkenBlendFilter.cpp -------------------------------------------------------------------------------- /src/filters/DarkenBlendFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/DarkenBlendFilter.h -------------------------------------------------------------------------------- /src/filters/DilationFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/DilationFilter.cpp -------------------------------------------------------------------------------- /src/filters/DilationFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/DilationFilter.h -------------------------------------------------------------------------------- /src/filters/DirectionalDoGFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/DirectionalDoGFilter.cpp -------------------------------------------------------------------------------- /src/filters/DirectionalDoGFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/DirectionalDoGFilter.h -------------------------------------------------------------------------------- /src/filters/DisplacementFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/DisplacementFilter.cpp -------------------------------------------------------------------------------- /src/filters/DisplacementFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/DisplacementFilter.h -------------------------------------------------------------------------------- /src/filters/DissolveBlendFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/DissolveBlendFilter.cpp -------------------------------------------------------------------------------- /src/filters/DissolveBlendFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/DissolveBlendFilter.h -------------------------------------------------------------------------------- /src/filters/DoGFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/DoGFilter.cpp -------------------------------------------------------------------------------- /src/filters/DoGFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/DoGFilter.h -------------------------------------------------------------------------------- /src/filters/EdgeTangentFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/EdgeTangentFilter.cpp -------------------------------------------------------------------------------- /src/filters/EdgeTangentFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/EdgeTangentFilter.h -------------------------------------------------------------------------------- /src/filters/EdgeTangentSmoothingFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/EdgeTangentSmoothingFilter.cpp -------------------------------------------------------------------------------- /src/filters/EdgeTangentSmoothingFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/EdgeTangentSmoothingFilter.h -------------------------------------------------------------------------------- /src/filters/EmbossFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/EmbossFilter.cpp -------------------------------------------------------------------------------- /src/filters/EmbossFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/EmbossFilter.h -------------------------------------------------------------------------------- /src/filters/ErosionFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/ErosionFilter.cpp -------------------------------------------------------------------------------- /src/filters/ErosionFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/ErosionFilter.h -------------------------------------------------------------------------------- /src/filters/ExclusionBlendFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/ExclusionBlendFilter.cpp -------------------------------------------------------------------------------- /src/filters/ExclusionBlendFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/ExclusionBlendFilter.h -------------------------------------------------------------------------------- /src/filters/FilterChain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/FilterChain.cpp -------------------------------------------------------------------------------- /src/filters/FilterChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/FilterChain.h -------------------------------------------------------------------------------- /src/filters/FlowDoGFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/FlowDoGFilter.cpp -------------------------------------------------------------------------------- /src/filters/FlowDoGFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/FlowDoGFilter.h -------------------------------------------------------------------------------- /src/filters/GammaFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/GammaFilter.cpp -------------------------------------------------------------------------------- /src/filters/GammaFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/GammaFilter.h -------------------------------------------------------------------------------- /src/filters/GaussianBlurFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/GaussianBlurFilter.cpp -------------------------------------------------------------------------------- /src/filters/GaussianBlurFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/GaussianBlurFilter.h -------------------------------------------------------------------------------- /src/filters/GradientMapFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/GradientMapFilter.cpp -------------------------------------------------------------------------------- /src/filters/GradientMapFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/GradientMapFilter.h -------------------------------------------------------------------------------- /src/filters/GrayscaleFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/GrayscaleFilter.cpp -------------------------------------------------------------------------------- /src/filters/GrayscaleFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/GrayscaleFilter.h -------------------------------------------------------------------------------- /src/filters/HalftoneFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/HalftoneFilter.cpp -------------------------------------------------------------------------------- /src/filters/HalftoneFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/HalftoneFilter.h -------------------------------------------------------------------------------- /src/filters/HarrisCornerDetectionFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/HarrisCornerDetectionFilter.cpp -------------------------------------------------------------------------------- /src/filters/HarrisCornerDetectionFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/HarrisCornerDetectionFilter.h -------------------------------------------------------------------------------- /src/filters/HueFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/HueFilter.cpp -------------------------------------------------------------------------------- /src/filters/HueFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/HueFilter.h -------------------------------------------------------------------------------- /src/filters/InvertFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/InvertFilter.cpp -------------------------------------------------------------------------------- /src/filters/InvertFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/InvertFilter.h -------------------------------------------------------------------------------- /src/filters/KuwaharaFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/KuwaharaFilter.cpp -------------------------------------------------------------------------------- /src/filters/KuwaharaFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/KuwaharaFilter.h -------------------------------------------------------------------------------- /src/filters/LaplacianFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/LaplacianFilter.cpp -------------------------------------------------------------------------------- /src/filters/LaplacianFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/LaplacianFilter.h -------------------------------------------------------------------------------- /src/filters/LookupFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/LookupFilter.cpp -------------------------------------------------------------------------------- /src/filters/LookupFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/LookupFilter.h -------------------------------------------------------------------------------- /src/filters/LowPassFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/LowPassFilter.cpp -------------------------------------------------------------------------------- /src/filters/LowPassFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/LowPassFilter.h -------------------------------------------------------------------------------- /src/filters/MotionDetectionFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/MotionDetectionFilter.cpp -------------------------------------------------------------------------------- /src/filters/MotionDetectionFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/MotionDetectionFilter.h -------------------------------------------------------------------------------- /src/filters/MultiplyBlendFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/MultiplyBlendFilter.cpp -------------------------------------------------------------------------------- /src/filters/MultiplyBlendFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/MultiplyBlendFilter.h -------------------------------------------------------------------------------- /src/filters/NormalBlendFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/NormalBlendFilter.cpp -------------------------------------------------------------------------------- /src/filters/NormalBlendFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/NormalBlendFilter.h -------------------------------------------------------------------------------- /src/filters/PerlinNoiseFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/PerlinNoiseFilter.cpp -------------------------------------------------------------------------------- /src/filters/PerlinNoiseFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/PerlinNoiseFilter.h -------------------------------------------------------------------------------- /src/filters/PerlinPixellationFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/PerlinPixellationFilter.cpp -------------------------------------------------------------------------------- /src/filters/PerlinPixellationFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/PerlinPixellationFilter.h -------------------------------------------------------------------------------- /src/filters/PixelateFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/PixelateFilter.cpp -------------------------------------------------------------------------------- /src/filters/PixelateFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/PixelateFilter.h -------------------------------------------------------------------------------- /src/filters/PoissonBlendFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/PoissonBlendFilter.cpp -------------------------------------------------------------------------------- /src/filters/PoissonBlendFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/PoissonBlendFilter.h -------------------------------------------------------------------------------- /src/filters/PosterizeFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/PosterizeFilter.cpp -------------------------------------------------------------------------------- /src/filters/PosterizeFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/PosterizeFilter.h -------------------------------------------------------------------------------- /src/filters/SaturationFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/SaturationFilter.cpp -------------------------------------------------------------------------------- /src/filters/SaturationFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/SaturationFilter.h -------------------------------------------------------------------------------- /src/filters/SketchFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/SketchFilter.cpp -------------------------------------------------------------------------------- /src/filters/SketchFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/SketchFilter.h -------------------------------------------------------------------------------- /src/filters/SmoothToonFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/SmoothToonFilter.cpp -------------------------------------------------------------------------------- /src/filters/SmoothToonFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/SmoothToonFilter.h -------------------------------------------------------------------------------- /src/filters/SobelEdgeDetectionFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/SobelEdgeDetectionFilter.cpp -------------------------------------------------------------------------------- /src/filters/SobelEdgeDetectionFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/SobelEdgeDetectionFilter.h -------------------------------------------------------------------------------- /src/filters/ThresholdedNonMaximumSuppressionFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/ThresholdedNonMaximumSuppressionFilter.cpp -------------------------------------------------------------------------------- /src/filters/ThresholdedNonMaximumSuppressionFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/ThresholdedNonMaximumSuppressionFilter.h -------------------------------------------------------------------------------- /src/filters/TiltShiftFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/TiltShiftFilter.cpp -------------------------------------------------------------------------------- /src/filters/TiltShiftFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/TiltShiftFilter.h -------------------------------------------------------------------------------- /src/filters/ToonFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/ToonFilter.cpp -------------------------------------------------------------------------------- /src/filters/ToonFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/ToonFilter.h -------------------------------------------------------------------------------- /src/filters/VignetteFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/VignetteFilter.cpp -------------------------------------------------------------------------------- /src/filters/VignetteFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/VignetteFilter.h -------------------------------------------------------------------------------- /src/filters/VoronoiFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/VoronoiFilter.cpp -------------------------------------------------------------------------------- /src/filters/VoronoiFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/VoronoiFilter.h -------------------------------------------------------------------------------- /src/filters/XYDerivativeFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/XYDerivativeFilter.cpp -------------------------------------------------------------------------------- /src/filters/XYDerivativeFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/XYDerivativeFilter.h -------------------------------------------------------------------------------- /src/filters/ZoomBlurFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/ZoomBlurFilter.cpp -------------------------------------------------------------------------------- /src/filters/ZoomBlurFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/filters/ZoomBlurFilter.h -------------------------------------------------------------------------------- /src/ofxFilterLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/ofxFilterLibrary.h -------------------------------------------------------------------------------- /src/parameters/AbstractParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/parameters/AbstractParameter.h -------------------------------------------------------------------------------- /src/parameters/Parameter2f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/parameters/Parameter2f.h -------------------------------------------------------------------------------- /src/parameters/Parameter2fv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/parameters/Parameter2fv.h -------------------------------------------------------------------------------- /src/parameters/Parameter3f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/parameters/Parameter3f.h -------------------------------------------------------------------------------- /src/parameters/Parameter3fv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/parameters/Parameter3fv.h -------------------------------------------------------------------------------- /src/parameters/Parameter4f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/parameters/Parameter4f.h -------------------------------------------------------------------------------- /src/parameters/ParameterF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/parameters/ParameterF.h -------------------------------------------------------------------------------- /src/parameters/ParameterI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/parameters/ParameterI.h -------------------------------------------------------------------------------- /src/parameters/ParameterMatrix4f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/parameters/ParameterMatrix4f.h -------------------------------------------------------------------------------- /src/parameters/ParameterT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/parameters/ParameterT.h -------------------------------------------------------------------------------- /src/parameters/ParameterV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/parameters/ParameterV.h -------------------------------------------------------------------------------- /src/parameters/ParametricObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/parameters/ParametricObject.cpp -------------------------------------------------------------------------------- /src/parameters/ParametricObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfargo/ofxFilterLibrary/HEAD/src/parameters/ParametricObject.h --------------------------------------------------------------------------------