├── .gitignore ├── License.txt ├── PixelSDK-GPUImage2.podspec ├── README.md ├── examples ├── Linux-OpenGL │ └── SimpleVideoFilter │ │ ├── Source │ │ └── main.swift │ │ └── compile.sh ├── Linux-RPi │ └── SimpleVideoFilter │ │ ├── Source │ │ └── main.swift │ │ └── compile.sh ├── Mac │ ├── FilterShowcase │ │ ├── FilterShowcase.xcodeproj │ │ │ └── project.pbxproj │ │ └── FilterShowcase │ │ │ ├── AppDelegate.swift │ │ │ ├── Base.lproj │ │ │ └── MainMenu.xib │ │ │ ├── FilterOperationTypes.swift │ │ │ ├── FilterOperations.swift │ │ │ ├── FilterShowcaseWindowController.swift │ │ │ ├── FilterShowcaseWindowController.xib │ │ │ └── Info.plist │ ├── SimpleImageFilter │ │ ├── SimpleImageFilter.xcodeproj │ │ │ └── project.pbxproj │ │ └── SimpleImageFilter │ │ │ ├── AppDelegate.swift │ │ │ ├── Base.lproj │ │ │ └── MainMenu.xib │ │ │ └── Info.plist │ ├── SimpleMovieFilter │ │ ├── SimpleMovieFilter.xcodeproj │ │ │ └── project.pbxproj │ │ └── SimpleMovieFilter │ │ │ ├── AppDelegate.swift │ │ │ ├── Base.lproj │ │ │ └── MainMenu.xib │ │ │ └── Info.plist │ ├── SimpleVideoFilter │ │ ├── SimpleVideoFilter.xcodeproj │ │ │ └── project.pbxproj │ │ └── SimpleVideoFilter │ │ │ ├── AppDelegate.swift │ │ │ ├── Base.lproj │ │ │ └── MainMenu.xib │ │ │ └── Info.plist │ └── SimpleVideoRecorder │ │ ├── SimpleVideoRecorder.xcodeproj │ │ └── project.pbxproj │ │ └── SimpleVideoRecorder │ │ ├── AppDelegate.swift │ │ ├── Base.lproj │ │ └── MainMenu.xib │ │ └── Info.plist ├── SharedAssets │ ├── Assets-iOS.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-120.png │ │ │ ├── Icon-121.png │ │ │ ├── Icon-152.png │ │ │ ├── Icon-167.png │ │ │ ├── Icon-180.png │ │ │ ├── Icon-40.png │ │ │ ├── Icon-58.png │ │ │ ├── Icon-76.png │ │ │ ├── Icon-80.png │ │ │ ├── Icon-81.png │ │ │ ├── Icon-87.png │ │ │ ├── Icon-Small-1.png │ │ │ └── Icon-Small@2x-1.png │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── GPUImageLogo-128.png │ │ │ ├── GPUImageLogo-16.png │ │ │ ├── GPUImageLogo-256.png │ │ │ ├── GPUImageLogo-257.png │ │ │ ├── GPUImageLogo-32.png │ │ │ ├── GPUImageLogo-33.png │ │ │ ├── GPUImageLogo-64.png │ │ │ ├── iTunesArtwork-1.png │ │ │ └── iTunesArtwork.png │ ├── Lambeau.jpg │ ├── Mask.png │ ├── WID-small.jpg │ └── sample_iPod.m4v └── iOS │ ├── FilterShowcase │ ├── FilterShowcase.xcodeproj │ │ └── project.pbxproj │ └── FilterShowcaseSwift │ │ ├── AppDelegate.swift │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── FilterDisplayViewController.swift │ │ ├── FilterListViewController.swift │ │ └── Info.plist │ ├── SimpleImageFilter │ ├── SimpleImageFilter.xcodeproj │ │ └── project.pbxproj │ └── SimpleImageFilter │ │ ├── AppDelegate.swift │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── ViewController.swift │ ├── SimpleMovieEncoding │ ├── SimpleMovieEncoding.xcodeproj │ │ └── project.pbxproj │ └── SimpleMovieEncoding │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.swift │ │ └── lookup_miss_etikate.png │ ├── SimpleMovieFilter │ ├── SimpleMovieFilter.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── SimpleMovieFilter.xcscheme │ └── SimpleMovieFilter │ │ ├── AppDelegate.swift │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── ViewController.swift │ ├── SimpleVideoFilter │ ├── SimpleVideoFilter.xcodeproj │ │ └── project.pbxproj │ └── SimpleVideoFilter │ │ ├── AppDelegate.swift │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── ViewController.swift │ └── SimpleVideoRecorder │ ├── SimpleVideoRecorder.xcodeproj │ └── project.pbxproj │ └── SimpleVideoRecorder │ ├── AppDelegate.swift │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift └── framework ├── GPUImage.xcodeproj ├── GPUImageTestSuite_Info.plist ├── GPUImage_Info.plist └── project.pbxproj ├── LinuxCompilationGenerator.sh ├── Package.swift ├── Packages ├── CFreeGLUT │ ├── Package.swift │ ├── README.md │ └── module.modulemap ├── COpenGL │ ├── Package.swift │ ├── module.modulemap │ └── proto.h ├── COpenGLES │ ├── Package.swift │ └── module.modulemap ├── CVideo4Linux │ ├── Package.swift │ ├── module.modulemap │ └── stubs.h └── CVideoCore │ ├── Package.swift │ └── module.modulemap ├── Source ├── BasicOperation.swift ├── CameraConversion.swift ├── Color.swift ├── FillMode.swift ├── Framebuffer.swift ├── FramebufferCache.swift ├── GPUImage-Bridging-Header.h ├── ImageGenerator.swift ├── ImageOrientation.swift ├── Linux │ ├── GLUTRenderWindow.swift │ ├── OpenGLContext-RPi.swift │ ├── OpenGLContext.swift │ ├── RPiRenderWindow.swift │ ├── V4LCamera.swift │ ├── v4lfuncs.c │ └── v4lfuncs.h ├── Mac │ ├── Camera.swift │ ├── MovieInput.swift │ ├── MovieOutput.swift │ ├── OpenGLContext.swift │ ├── PictureInput.swift │ ├── PictureOutput.swift │ └── RenderView.swift ├── Matrix.swift ├── NSObject+Exception.h ├── NSObject+Exception.m ├── OpenGLContext_Shared.swift ├── OpenGLRendering.swift ├── OperationGroup.swift ├── Operations │ ├── AdaptiveThreshold.swift │ ├── AddBlend.swift │ ├── AlphaBlend.swift │ ├── AmatorkaFilter.swift │ ├── AverageColorExtractor.swift │ ├── AverageLuminanceExtractor.swift │ ├── AverageLuminanceThreshold.swift │ ├── BilateralBlur.swift │ ├── BoxBlur.swift │ ├── BrightnessAdjustment.swift │ ├── BulgeDistortion.swift │ ├── CGAColorspaceFilter.swift │ ├── CannyEdgeDetection.swift │ ├── ChromaKeyBlend.swift │ ├── ChromaKeying.swift │ ├── CircleGenerator.swift │ ├── ClosingFilter.swift │ ├── ColorBlend.swift │ ├── ColorBurnBlend.swift │ ├── ColorDodgeBlend.swift │ ├── ColorInversion.swift │ ├── ColorLocalBinaryPattern.swift │ ├── ColorMatrixFilter.swift │ ├── ColourFASTFeatureDetection.swift │ ├── ContrastAdjustment.swift │ ├── Convolution3x3.swift │ ├── Crop.swift │ ├── CrosshairGenerator.swift │ ├── Crosshatch.swift │ ├── DarkenBlend.swift │ ├── DifferenceBlend.swift │ ├── Dilation.swift │ ├── DissolveBlend.swift │ ├── DivideBlend.swift │ ├── EmbossFilter.swift │ ├── Erosion.swift │ ├── ExclusionBlend.swift │ ├── ExposureAdjustment.swift │ ├── FalseColor.swift │ ├── GammaAdjustment.swift │ ├── GaussianBlur.swift │ ├── GlassSphereRefraction.swift │ ├── Halftone.swift │ ├── HardLightBlend.swift │ ├── HarrisCornerDetector.swift │ ├── Haze.swift │ ├── HighPassFilter.swift │ ├── HighlightAndShadowTint.swift │ ├── HighlightsAndShadows.swift │ ├── Histogram.swift │ ├── HistogramDisplay.swift │ ├── HistogramEqualization.swift │ ├── HueAdjustment.swift │ ├── HueBlend.swift │ ├── ImageBuffer.swift │ ├── KuwaharaFilter.swift │ ├── KuwaharaRadius3Filter.swift │ ├── LanczosResampling.swift │ ├── Laplacian.swift │ ├── LevelsAdjustment.swift │ ├── LightenBlend.swift │ ├── LineGenerator.swift │ ├── LinearBurnBlend.swift │ ├── LocalBinaryPattern.swift │ ├── LookupFilter.swift │ ├── LookupImages │ │ ├── lookup.png │ │ ├── lookup_amatorka.png │ │ ├── lookup_miss_etikate.png │ │ ├── lookup_soft_elegance_1.png │ │ └── lookup_soft_elegance_2.png │ ├── LowPassFilter.swift │ ├── Luminance.swift │ ├── LuminanceRangeReduction.swift │ ├── LuminanceThreshold.swift │ ├── LuminosityBlend.swift │ ├── MedianFilter.swift │ ├── MissEtikateFilter.swift │ ├── MonochromeFilter.swift │ ├── MotionBlur.swift │ ├── MotionDetector.swift │ ├── MultiplyBlend.swift │ ├── NobleCornerDetector.swift │ ├── NormalBlend.swift │ ├── OpacityAdjustment.swift │ ├── OpeningFilter.swift │ ├── OverlayBlend.swift │ ├── PinchDistortion.swift │ ├── Pixellate.swift │ ├── PolarPixellate.swift │ ├── PolkaDot.swift │ ├── Posterize.swift │ ├── PrewittEdgeDetection.swift │ ├── RGBAdjustmentFilter.swift │ ├── SaturationAdjustment.swift │ ├── SaturationBlend.swift │ ├── ScreenBlend.swift │ ├── SepiaToneFilter.swift │ ├── Shaders │ │ ├── AdaptiveThreshold_GL.fsh │ │ ├── AdaptiveThreshold_GLES.fsh │ │ ├── AddBlend_GL.fsh │ │ ├── AddBlend_GLES.fsh │ │ ├── AlphaBlend_GL.fsh │ │ ├── AlphaBlend_GLES.fsh │ │ ├── AlphaTest_GL.fsh │ │ ├── AlphaTest_GLES.fsh │ │ ├── AverageColor.vsh │ │ ├── AverageColor_GL.fsh │ │ ├── AverageColor_GLES.fsh │ │ ├── AverageLuminance_GL.fsh │ │ ├── AverageLuminance_GLES.fsh │ │ ├── BilateralBlur.vsh │ │ ├── BilateralBlur_GL.fsh │ │ ├── BilateralBlur_GLES.fsh │ │ ├── Brightness_GL.fsh │ │ ├── Brightness_GLES.fsh │ │ ├── BulgeDistortion_GL.fsh │ │ ├── BulgeDistortion_GLES.fsh │ │ ├── CGAColorspace_GL.fsh │ │ ├── CGAColorspace_GLES.fsh │ │ ├── ChromaKeyBlend_GL.fsh │ │ ├── ChromaKeyBlend_GLES.fsh │ │ ├── ChromaKey_GL.fsh │ │ ├── ChromaKey_GLES.fsh │ │ ├── Circle.vsh │ │ ├── Circle_GL.fsh │ │ ├── Circle_GLES.fsh │ │ ├── ColorBlend_GL.fsh │ │ ├── ColorBlend_GLES.fsh │ │ ├── ColorBurnBlend_GL.fsh │ │ ├── ColorBurnBlend_GLES.fsh │ │ ├── ColorDodgeBlend_GL.fsh │ │ ├── ColorDodgeBlend_GLES.fsh │ │ ├── ColorInvert_GL.fsh │ │ ├── ColorInvert_GLES.fsh │ │ ├── ColorLocalBinaryPattern_GL.fsh │ │ ├── ColorLocalBinaryPattern_GLES.fsh │ │ ├── ColorMatrix_GL.fsh │ │ ├── ColorMatrix_GLES.fsh │ │ ├── ColorSwizzling_GL.fsh │ │ ├── ColorSwizzling_GLES.fsh │ │ ├── ColourFASTDecriptor.vsh │ │ ├── ColourFASTDecriptor_GL.fsh │ │ ├── ColourFASTDecriptor_GLES.fsh │ │ ├── Contrast_GL.fsh │ │ ├── Contrast_GLES.fsh │ │ ├── ConvertedShaders_GL.swift │ │ ├── ConvertedShaders_GLES.swift │ │ ├── Convolution3x3_GL.fsh │ │ ├── Convolution3x3_GLES.fsh │ │ ├── Crosshair.vsh │ │ ├── Crosshair_GL.fsh │ │ ├── Crosshair_GLES.fsh │ │ ├── Crosshatch_GL.fsh │ │ ├── Crosshatch_GLES.fsh │ │ ├── DarkenBlend_GL.fsh │ │ ├── DarkenBlend_GLES.fsh │ │ ├── DifferenceBlend_GL.fsh │ │ ├── DifferenceBlend_GLES.fsh │ │ ├── Dilation1_GL.fsh │ │ ├── Dilation1_GLES.fsh │ │ ├── Dilation2_GL.fsh │ │ ├── Dilation2_GLES.fsh │ │ ├── Dilation3_GL.fsh │ │ ├── Dilation3_GLES.fsh │ │ ├── Dilation4_GL.fsh │ │ ├── Dilation4_GLES.fsh │ │ ├── DirectionalNonMaximumSuppression_GL.fsh │ │ ├── DirectionalNonMaximumSuppression_GLES.fsh │ │ ├── DirectionalSobelEdgeDetection_GL.fsh │ │ ├── DirectionalSobelEdgeDetection_GLES.fsh │ │ ├── DissolveBlend_GL.fsh │ │ ├── DissolveBlend_GLES.fsh │ │ ├── DivideBlend_GL.fsh │ │ ├── DivideBlend_GLES.fsh │ │ ├── Erosion1_GL.fsh │ │ ├── Erosion1_GLES.fsh │ │ ├── Erosion2_GL.fsh │ │ ├── Erosion2_GLES.fsh │ │ ├── Erosion3_GL.fsh │ │ ├── Erosion3_GLES.fsh │ │ ├── Erosion4_GL.fsh │ │ ├── Erosion4_GLES.fsh │ │ ├── ErosionDilation1.vsh │ │ ├── ErosionDilation2.vsh │ │ ├── ErosionDilation3.vsh │ │ ├── ErosionDilation4.vsh │ │ ├── ExclusionBlend_GL.fsh │ │ ├── ExclusionBlend_GLES.fsh │ │ ├── Exposure_GL.fsh │ │ ├── Exposure_GLES.fsh │ │ ├── FalseColor_GL.fsh │ │ ├── FalseColor_GLES.fsh │ │ ├── FiveInput.vsh │ │ ├── FourInput.vsh │ │ ├── Gamma_GL.fsh │ │ ├── Gamma_GLES.fsh │ │ ├── GlassSphere_GL.fsh │ │ ├── GlassSphere_GLES.fsh │ │ ├── Halftone_GL.fsh │ │ ├── Halftone_GLES.fsh │ │ ├── HardLightBlend_GL.fsh │ │ ├── HardLightBlend_GLES.fsh │ │ ├── HarrisCornerDetector_GL.fsh │ │ ├── HarrisCornerDetector_GLES.fsh │ │ ├── Haze_GL.fsh │ │ ├── Haze_GLES.fsh │ │ ├── HighlightShadowTint_GL.fsh │ │ ├── HighlightShadowTint_GLES.fsh │ │ ├── HighlightShadow_GL.fsh │ │ ├── HighlightShadow_GLES.fsh │ │ ├── HistogramAccumulation_GL.fsh │ │ ├── HistogramAccumulation_GLES.fsh │ │ ├── HistogramBlueSampling.vsh │ │ ├── HistogramDisplay.vsh │ │ ├── HistogramDisplay_GL.fsh │ │ ├── HistogramDisplay_GLES.fsh │ │ ├── HistogramEqualizationBlue_GL.fsh │ │ ├── HistogramEqualizationBlue_GLES.fsh │ │ ├── HistogramEqualizationGreen_GL.fsh │ │ ├── HistogramEqualizationGreen_GLES.fsh │ │ ├── HistogramEqualizationLuminance_GL.fsh │ │ ├── HistogramEqualizationLuminance_GLES.fsh │ │ ├── HistogramEqualizationRGB_GL.fsh │ │ ├── HistogramEqualizationRGB_GLES.fsh │ │ ├── HistogramEqualizationRed_GL.fsh │ │ ├── HistogramEqualizationRed_GLES.fsh │ │ ├── HistogramGreenSampling.vsh │ │ ├── HistogramLuminanceSampling.vsh │ │ ├── HistogramRedSampling.vsh │ │ ├── HueBlend_GL.fsh │ │ ├── HueBlend_GLES.fsh │ │ ├── Hue_GL.fsh │ │ ├── Hue_GLES.fsh │ │ ├── KuwaharaRadius3_GL.fsh │ │ ├── KuwaharaRadius3_GLES.fsh │ │ ├── Kuwahara_GL.fsh │ │ ├── Kuwahara_GLES.fsh │ │ ├── LanczosResampling.vsh │ │ ├── LanczosResampling_GL.fsh │ │ ├── LanczosResampling_GLES.fsh │ │ ├── Laplacian_GL.fsh │ │ ├── Laplacian_GLES.fsh │ │ ├── Levels_GL.fsh │ │ ├── Levels_GLES.fsh │ │ ├── LightenBlend_GL.fsh │ │ ├── LightenBlend_GLES.fsh │ │ ├── Line.vsh │ │ ├── Line_GL.fsh │ │ ├── Line_GLES.fsh │ │ ├── LinearBurnBlend_GL.fsh │ │ ├── LinearBurnBlend_GLES.fsh │ │ ├── LocalBinaryPattern_GL.fsh │ │ ├── LocalBinaryPattern_GLES.fsh │ │ ├── Lookup_GL.fsh │ │ ├── Lookup_GLES.fsh │ │ ├── LuminanceRange_GL.fsh │ │ ├── LuminanceRange_GLES.fsh │ │ ├── LuminanceThreshold_GL.fsh │ │ ├── LuminanceThreshold_GLES.fsh │ │ ├── Luminance_GL.fsh │ │ ├── Luminance_GLES.fsh │ │ ├── LuminosityBlend_GL.fsh │ │ ├── LuminosityBlend_GLES.fsh │ │ ├── Median_GL.fsh │ │ ├── Median_GLES.fsh │ │ ├── Monochrome_GL.fsh │ │ ├── Monochrome_GLES.fsh │ │ ├── MotionBlur.vsh │ │ ├── MotionBlur_GL.fsh │ │ ├── MotionBlur_GLES.fsh │ │ ├── MotionComparison_GL.fsh │ │ ├── MotionComparison_GLES.fsh │ │ ├── MultiplyBlend_GL.fsh │ │ ├── MultiplyBlend_GLES.fsh │ │ ├── NearbyTexelSampling.vsh │ │ ├── NobleCornerDetector_GL.fsh │ │ ├── NobleCornerDetector_GLES.fsh │ │ ├── NormalBlend_GL.fsh │ │ ├── NormalBlend_GLES.fsh │ │ ├── OneInput.vsh │ │ ├── Opacity_GL.fsh │ │ ├── Opacity_GLES.fsh │ │ ├── OverlayBlend_GL.fsh │ │ ├── OverlayBlend_GLES.fsh │ │ ├── Passthrough_GL.fsh │ │ ├── Passthrough_GLES.fsh │ │ ├── PinchDistortion_GL.fsh │ │ ├── PinchDistortion_GLES.fsh │ │ ├── Pixellate_GL.fsh │ │ ├── Pixellate_GLES.fsh │ │ ├── PolarPixellate_GL.fsh │ │ ├── PolarPixellate_GLES.fsh │ │ ├── PolkaDot_GL.fsh │ │ ├── PolkaDot_GLES.fsh │ │ ├── Posterize_GL.fsh │ │ ├── Posterize_GLES.fsh │ │ ├── PrewittEdgeDetection_GL.fsh │ │ ├── PrewittEdgeDetection_GLES.fsh │ │ ├── RGBAdjustment_GL.fsh │ │ ├── RGBAdjustment_GLES.fsh │ │ ├── SaturationBlend_GL.fsh │ │ ├── SaturationBlend_GLES.fsh │ │ ├── Saturation_GL.fsh │ │ ├── Saturation_GLES.fsh │ │ ├── ScreenBlend_GL.fsh │ │ ├── ScreenBlend_GLES.fsh │ │ ├── ShaderConverter.sh │ │ ├── Sharpen.vsh │ │ ├── Sharpen_GL.fsh │ │ ├── Sharpen_GLES.fsh │ │ ├── ShiTomasiFeatureDetector_GL.fsh │ │ ├── ShiTomasiFeatureDetector_GLES.fsh │ │ ├── Sketch_GL.fsh │ │ ├── Sketch_GLES.fsh │ │ ├── SobelEdgeDetection_GL.fsh │ │ ├── SobelEdgeDetection_GLES.fsh │ │ ├── SoftLightBlend_GL.fsh │ │ ├── SoftLightBlend_GLES.fsh │ │ ├── Solarize_GL.fsh │ │ ├── Solarize_GLES.fsh │ │ ├── SourceOverBlend_GL.fsh │ │ ├── SourceOverBlend_GLES.fsh │ │ ├── SphereRefraction_GL.fsh │ │ ├── SphereRefraction_GLES.fsh │ │ ├── StretchDistortion_GL.fsh │ │ ├── StretchDistortion_GLES.fsh │ │ ├── SubtractBlend_GL.fsh │ │ ├── SubtractBlend_GLES.fsh │ │ ├── Swirl_GL.fsh │ │ ├── Swirl_GLES.fsh │ │ ├── ThreeInput.vsh │ │ ├── ThresholdEdgeDetection_GL.fsh │ │ ├── ThresholdEdgeDetection_GLES.fsh │ │ ├── ThresholdSketch_GL.fsh │ │ ├── ThresholdSketch_GLES.fsh │ │ ├── ThresholdedNonMaximumSuppression_GL.fsh │ │ ├── ThresholdedNonMaximumSuppression_GLES.fsh │ │ ├── TiltShift_GL.fsh │ │ ├── TiltShift_GLES.fsh │ │ ├── Toon_GL.fsh │ │ ├── Toon_GLES.fsh │ │ ├── Transform.vsh │ │ ├── TwoInput.vsh │ │ ├── UnsharpMask_GL.fsh │ │ ├── UnsharpMask_GLES.fsh │ │ ├── Vibrance_GL.fsh │ │ ├── Vibrance_GLES.fsh │ │ ├── Vignette_GL.fsh │ │ ├── Vignette_GLES.fsh │ │ ├── WeakPixelInclusion_GL.fsh │ │ ├── WeakPixelInclusion_GLES.fsh │ │ ├── WhiteBalance_GL.fsh │ │ ├── WhiteBalance_GLES.fsh │ │ ├── XYDerivative_GL.fsh │ │ ├── XYDerivative_GLES.fsh │ │ ├── YUVConversionFullRangeUVPlanar_GL.fsh │ │ ├── YUVConversionFullRangeUVPlanar_GLES.fsh │ │ ├── YUVConversionFullRange_GL.fsh │ │ ├── YUVConversionFullRange_GLES.fsh │ │ ├── YUVConversionVideoRange_GL.fsh │ │ ├── YUVConversionVideoRange_GLES.fsh │ │ ├── ZoomBlur_GL.fsh │ │ └── ZoomBlur_GLES.fsh │ ├── Sharpen.swift │ ├── ShiTomasiFeatureDetector.swift │ ├── SingleComponentGaussianBlur.swift │ ├── SketchFilter.swift │ ├── SmoothToonFilter.swift │ ├── SobelEdgeDetection.swift │ ├── SoftElegance.swift │ ├── SoftLightBlend.swift │ ├── Solarize.swift │ ├── SolidColorGenerator.swift │ ├── SourceOverBlend.swift │ ├── SphereRefraction.swift │ ├── StretchDistortion.swift │ ├── SubtractBlend.swift │ ├── SwirlDistortion.swift │ ├── ThresholdSketch.swift │ ├── ThresholdSobelEdgeDetection.swift │ ├── TiltShift.swift │ ├── ToonFilter.swift │ ├── TransformOperation.swift │ ├── UnsharpMask.swift │ ├── Vibrance.swift │ ├── Vignette.swift │ ├── WhiteBalance.swift │ ├── ZoomBlur.swift │ └── iOSBlur.swift ├── Pipeline.swift ├── Position.swift ├── RawDataInput.swift ├── RawDataOutput.swift ├── SerialDispatch.swift ├── ShaderProgram.swift ├── ShaderUniformSettings.swift ├── Size.swift ├── TPCircularBuffer.h ├── TPCircularBuffer.m ├── TextureInput.swift ├── TextureOutput.swift ├── TextureSamplingOperation.swift ├── Timestamp.swift ├── TwoStageOperation.swift └── iOS │ ├── Camera.swift │ ├── GPUImage.h │ ├── MovieInput.swift │ ├── MovieOutput.swift │ ├── OpenGLContext.swift │ ├── PictureInput.swift │ ├── PictureOutput.swift │ ├── RenderView.swift │ └── SpeakerOutput.swift ├── Tests ├── Pipeline_Tests.swift └── ShaderProgram_Tests.swift ├── compile-LinuxGL.sh └── compile-LinuxRPi.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/.gitignore -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/License.txt -------------------------------------------------------------------------------- /PixelSDK-GPUImage2.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/PixelSDK-GPUImage2.podspec -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/README.md -------------------------------------------------------------------------------- /examples/Linux-OpenGL/SimpleVideoFilter/Source/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/Linux-OpenGL/SimpleVideoFilter/Source/main.swift -------------------------------------------------------------------------------- /examples/Linux-OpenGL/SimpleVideoFilter/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/Linux-OpenGL/SimpleVideoFilter/compile.sh -------------------------------------------------------------------------------- /examples/Linux-RPi/SimpleVideoFilter/Source/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/Linux-RPi/SimpleVideoFilter/Source/main.swift -------------------------------------------------------------------------------- /examples/Linux-RPi/SimpleVideoFilter/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/Linux-RPi/SimpleVideoFilter/compile.sh -------------------------------------------------------------------------------- /examples/Mac/FilterShowcase/FilterShowcase.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/Mac/FilterShowcase/FilterShowcase.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/Mac/FilterShowcase/FilterShowcase/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/Mac/FilterShowcase/FilterShowcase/AppDelegate.swift -------------------------------------------------------------------------------- /examples/Mac/FilterShowcase/FilterShowcase/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/Mac/FilterShowcase/FilterShowcase/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /examples/Mac/FilterShowcase/FilterShowcase/FilterOperationTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/Mac/FilterShowcase/FilterShowcase/FilterOperationTypes.swift -------------------------------------------------------------------------------- /examples/Mac/FilterShowcase/FilterShowcase/FilterOperations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/Mac/FilterShowcase/FilterShowcase/FilterOperations.swift -------------------------------------------------------------------------------- /examples/Mac/FilterShowcase/FilterShowcase/FilterShowcaseWindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/Mac/FilterShowcase/FilterShowcase/FilterShowcaseWindowController.swift -------------------------------------------------------------------------------- /examples/Mac/FilterShowcase/FilterShowcase/FilterShowcaseWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/Mac/FilterShowcase/FilterShowcase/FilterShowcaseWindowController.xib -------------------------------------------------------------------------------- /examples/Mac/FilterShowcase/FilterShowcase/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/Mac/FilterShowcase/FilterShowcase/Info.plist -------------------------------------------------------------------------------- /examples/Mac/SimpleImageFilter/SimpleImageFilter.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/Mac/SimpleImageFilter/SimpleImageFilter.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/Mac/SimpleImageFilter/SimpleImageFilter/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/Mac/SimpleImageFilter/SimpleImageFilter/AppDelegate.swift -------------------------------------------------------------------------------- /examples/Mac/SimpleImageFilter/SimpleImageFilter/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/Mac/SimpleImageFilter/SimpleImageFilter/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /examples/Mac/SimpleImageFilter/SimpleImageFilter/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/Mac/SimpleImageFilter/SimpleImageFilter/Info.plist -------------------------------------------------------------------------------- /examples/Mac/SimpleMovieFilter/SimpleMovieFilter.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/Mac/SimpleMovieFilter/SimpleMovieFilter.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/Mac/SimpleMovieFilter/SimpleMovieFilter/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/Mac/SimpleMovieFilter/SimpleMovieFilter/AppDelegate.swift -------------------------------------------------------------------------------- /examples/Mac/SimpleMovieFilter/SimpleMovieFilter/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/Mac/SimpleMovieFilter/SimpleMovieFilter/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /examples/Mac/SimpleMovieFilter/SimpleMovieFilter/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/Mac/SimpleMovieFilter/SimpleMovieFilter/Info.plist -------------------------------------------------------------------------------- /examples/Mac/SimpleVideoFilter/SimpleVideoFilter.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/Mac/SimpleVideoFilter/SimpleVideoFilter.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/Mac/SimpleVideoFilter/SimpleVideoFilter/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/Mac/SimpleVideoFilter/SimpleVideoFilter/AppDelegate.swift -------------------------------------------------------------------------------- /examples/Mac/SimpleVideoFilter/SimpleVideoFilter/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/Mac/SimpleVideoFilter/SimpleVideoFilter/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /examples/Mac/SimpleVideoFilter/SimpleVideoFilter/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/Mac/SimpleVideoFilter/SimpleVideoFilter/Info.plist -------------------------------------------------------------------------------- /examples/Mac/SimpleVideoRecorder/SimpleVideoRecorder.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/Mac/SimpleVideoRecorder/SimpleVideoRecorder.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/Mac/SimpleVideoRecorder/SimpleVideoRecorder/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/Mac/SimpleVideoRecorder/SimpleVideoRecorder/AppDelegate.swift -------------------------------------------------------------------------------- /examples/Mac/SimpleVideoRecorder/SimpleVideoRecorder/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/Mac/SimpleVideoRecorder/SimpleVideoRecorder/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /examples/Mac/SimpleVideoRecorder/SimpleVideoRecorder/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/Mac/SimpleVideoRecorder/SimpleVideoRecorder/Info.plist -------------------------------------------------------------------------------- /examples/SharedAssets/Assets-iOS.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/SharedAssets/Assets-iOS.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /examples/SharedAssets/Assets-iOS.xcassets/AppIcon.appiconset/Icon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/SharedAssets/Assets-iOS.xcassets/AppIcon.appiconset/Icon-120.png -------------------------------------------------------------------------------- /examples/SharedAssets/Assets-iOS.xcassets/AppIcon.appiconset/Icon-121.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/SharedAssets/Assets-iOS.xcassets/AppIcon.appiconset/Icon-121.png -------------------------------------------------------------------------------- /examples/SharedAssets/Assets-iOS.xcassets/AppIcon.appiconset/Icon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/SharedAssets/Assets-iOS.xcassets/AppIcon.appiconset/Icon-152.png -------------------------------------------------------------------------------- /examples/SharedAssets/Assets-iOS.xcassets/AppIcon.appiconset/Icon-167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/SharedAssets/Assets-iOS.xcassets/AppIcon.appiconset/Icon-167.png -------------------------------------------------------------------------------- /examples/SharedAssets/Assets-iOS.xcassets/AppIcon.appiconset/Icon-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/SharedAssets/Assets-iOS.xcassets/AppIcon.appiconset/Icon-180.png -------------------------------------------------------------------------------- /examples/SharedAssets/Assets-iOS.xcassets/AppIcon.appiconset/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/SharedAssets/Assets-iOS.xcassets/AppIcon.appiconset/Icon-40.png -------------------------------------------------------------------------------- /examples/SharedAssets/Assets-iOS.xcassets/AppIcon.appiconset/Icon-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/SharedAssets/Assets-iOS.xcassets/AppIcon.appiconset/Icon-58.png -------------------------------------------------------------------------------- /examples/SharedAssets/Assets-iOS.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/SharedAssets/Assets-iOS.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /examples/SharedAssets/Assets-iOS.xcassets/AppIcon.appiconset/Icon-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/SharedAssets/Assets-iOS.xcassets/AppIcon.appiconset/Icon-80.png -------------------------------------------------------------------------------- /examples/SharedAssets/Assets-iOS.xcassets/AppIcon.appiconset/Icon-81.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/SharedAssets/Assets-iOS.xcassets/AppIcon.appiconset/Icon-81.png -------------------------------------------------------------------------------- /examples/SharedAssets/Assets-iOS.xcassets/AppIcon.appiconset/Icon-87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/SharedAssets/Assets-iOS.xcassets/AppIcon.appiconset/Icon-87.png -------------------------------------------------------------------------------- /examples/SharedAssets/Assets-iOS.xcassets/AppIcon.appiconset/Icon-Small-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/SharedAssets/Assets-iOS.xcassets/AppIcon.appiconset/Icon-Small-1.png -------------------------------------------------------------------------------- /examples/SharedAssets/Assets-iOS.xcassets/AppIcon.appiconset/Icon-Small@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/SharedAssets/Assets-iOS.xcassets/AppIcon.appiconset/Icon-Small@2x-1.png -------------------------------------------------------------------------------- /examples/SharedAssets/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/SharedAssets/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /examples/SharedAssets/Assets.xcassets/AppIcon.appiconset/GPUImageLogo-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/SharedAssets/Assets.xcassets/AppIcon.appiconset/GPUImageLogo-128.png -------------------------------------------------------------------------------- /examples/SharedAssets/Assets.xcassets/AppIcon.appiconset/GPUImageLogo-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/SharedAssets/Assets.xcassets/AppIcon.appiconset/GPUImageLogo-16.png -------------------------------------------------------------------------------- /examples/SharedAssets/Assets.xcassets/AppIcon.appiconset/GPUImageLogo-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/SharedAssets/Assets.xcassets/AppIcon.appiconset/GPUImageLogo-256.png -------------------------------------------------------------------------------- /examples/SharedAssets/Assets.xcassets/AppIcon.appiconset/GPUImageLogo-257.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/SharedAssets/Assets.xcassets/AppIcon.appiconset/GPUImageLogo-257.png -------------------------------------------------------------------------------- /examples/SharedAssets/Assets.xcassets/AppIcon.appiconset/GPUImageLogo-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/SharedAssets/Assets.xcassets/AppIcon.appiconset/GPUImageLogo-32.png -------------------------------------------------------------------------------- /examples/SharedAssets/Assets.xcassets/AppIcon.appiconset/GPUImageLogo-33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/SharedAssets/Assets.xcassets/AppIcon.appiconset/GPUImageLogo-33.png -------------------------------------------------------------------------------- /examples/SharedAssets/Assets.xcassets/AppIcon.appiconset/GPUImageLogo-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/SharedAssets/Assets.xcassets/AppIcon.appiconset/GPUImageLogo-64.png -------------------------------------------------------------------------------- /examples/SharedAssets/Assets.xcassets/AppIcon.appiconset/iTunesArtwork-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/SharedAssets/Assets.xcassets/AppIcon.appiconset/iTunesArtwork-1.png -------------------------------------------------------------------------------- /examples/SharedAssets/Assets.xcassets/AppIcon.appiconset/iTunesArtwork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/SharedAssets/Assets.xcassets/AppIcon.appiconset/iTunesArtwork.png -------------------------------------------------------------------------------- /examples/SharedAssets/Lambeau.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/SharedAssets/Lambeau.jpg -------------------------------------------------------------------------------- /examples/SharedAssets/Mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/SharedAssets/Mask.png -------------------------------------------------------------------------------- /examples/SharedAssets/WID-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/SharedAssets/WID-small.jpg -------------------------------------------------------------------------------- /examples/SharedAssets/sample_iPod.m4v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/SharedAssets/sample_iPod.m4v -------------------------------------------------------------------------------- /examples/iOS/FilterShowcase/FilterShowcase.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/iOS/FilterShowcase/FilterShowcase.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/iOS/FilterShowcase/FilterShowcaseSwift/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/iOS/FilterShowcase/FilterShowcaseSwift/AppDelegate.swift -------------------------------------------------------------------------------- /examples/iOS/FilterShowcase/FilterShowcaseSwift/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/iOS/FilterShowcase/FilterShowcaseSwift/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /examples/iOS/FilterShowcase/FilterShowcaseSwift/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/iOS/FilterShowcase/FilterShowcaseSwift/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /examples/iOS/FilterShowcase/FilterShowcaseSwift/FilterDisplayViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/iOS/FilterShowcase/FilterShowcaseSwift/FilterDisplayViewController.swift -------------------------------------------------------------------------------- /examples/iOS/FilterShowcase/FilterShowcaseSwift/FilterListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/iOS/FilterShowcase/FilterShowcaseSwift/FilterListViewController.swift -------------------------------------------------------------------------------- /examples/iOS/FilterShowcase/FilterShowcaseSwift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/iOS/FilterShowcase/FilterShowcaseSwift/Info.plist -------------------------------------------------------------------------------- /examples/iOS/SimpleImageFilter/SimpleImageFilter.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/iOS/SimpleImageFilter/SimpleImageFilter.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/iOS/SimpleImageFilter/SimpleImageFilter/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/iOS/SimpleImageFilter/SimpleImageFilter/AppDelegate.swift -------------------------------------------------------------------------------- /examples/iOS/SimpleImageFilter/SimpleImageFilter/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/iOS/SimpleImageFilter/SimpleImageFilter/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /examples/iOS/SimpleImageFilter/SimpleImageFilter/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/iOS/SimpleImageFilter/SimpleImageFilter/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /examples/iOS/SimpleImageFilter/SimpleImageFilter/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/iOS/SimpleImageFilter/SimpleImageFilter/Info.plist -------------------------------------------------------------------------------- /examples/iOS/SimpleImageFilter/SimpleImageFilter/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/iOS/SimpleImageFilter/SimpleImageFilter/ViewController.swift -------------------------------------------------------------------------------- /examples/iOS/SimpleMovieEncoding/SimpleMovieEncoding.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/iOS/SimpleMovieEncoding/SimpleMovieEncoding.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/iOS/SimpleMovieEncoding/SimpleMovieEncoding/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/iOS/SimpleMovieEncoding/SimpleMovieEncoding/AppDelegate.swift -------------------------------------------------------------------------------- /examples/iOS/SimpleMovieEncoding/SimpleMovieEncoding/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/iOS/SimpleMovieEncoding/SimpleMovieEncoding/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /examples/iOS/SimpleMovieEncoding/SimpleMovieEncoding/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/iOS/SimpleMovieEncoding/SimpleMovieEncoding/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /examples/iOS/SimpleMovieEncoding/SimpleMovieEncoding/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/iOS/SimpleMovieEncoding/SimpleMovieEncoding/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /examples/iOS/SimpleMovieEncoding/SimpleMovieEncoding/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/iOS/SimpleMovieEncoding/SimpleMovieEncoding/Info.plist -------------------------------------------------------------------------------- /examples/iOS/SimpleMovieEncoding/SimpleMovieEncoding/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/iOS/SimpleMovieEncoding/SimpleMovieEncoding/ViewController.swift -------------------------------------------------------------------------------- /examples/iOS/SimpleMovieEncoding/SimpleMovieEncoding/lookup_miss_etikate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/iOS/SimpleMovieEncoding/SimpleMovieEncoding/lookup_miss_etikate.png -------------------------------------------------------------------------------- /examples/iOS/SimpleMovieFilter/SimpleMovieFilter.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/iOS/SimpleMovieFilter/SimpleMovieFilter.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/iOS/SimpleMovieFilter/SimpleMovieFilter.xcodeproj/xcshareddata/xcschemes/SimpleMovieFilter.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/iOS/SimpleMovieFilter/SimpleMovieFilter.xcodeproj/xcshareddata/xcschemes/SimpleMovieFilter.xcscheme -------------------------------------------------------------------------------- /examples/iOS/SimpleMovieFilter/SimpleMovieFilter/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/iOS/SimpleMovieFilter/SimpleMovieFilter/AppDelegate.swift -------------------------------------------------------------------------------- /examples/iOS/SimpleMovieFilter/SimpleMovieFilter/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/iOS/SimpleMovieFilter/SimpleMovieFilter/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /examples/iOS/SimpleMovieFilter/SimpleMovieFilter/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/iOS/SimpleMovieFilter/SimpleMovieFilter/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /examples/iOS/SimpleMovieFilter/SimpleMovieFilter/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/iOS/SimpleMovieFilter/SimpleMovieFilter/Info.plist -------------------------------------------------------------------------------- /examples/iOS/SimpleMovieFilter/SimpleMovieFilter/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/iOS/SimpleMovieFilter/SimpleMovieFilter/ViewController.swift -------------------------------------------------------------------------------- /examples/iOS/SimpleVideoFilter/SimpleVideoFilter.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/iOS/SimpleVideoFilter/SimpleVideoFilter.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/iOS/SimpleVideoFilter/SimpleVideoFilter/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/iOS/SimpleVideoFilter/SimpleVideoFilter/AppDelegate.swift -------------------------------------------------------------------------------- /examples/iOS/SimpleVideoFilter/SimpleVideoFilter/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/iOS/SimpleVideoFilter/SimpleVideoFilter/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /examples/iOS/SimpleVideoFilter/SimpleVideoFilter/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/iOS/SimpleVideoFilter/SimpleVideoFilter/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /examples/iOS/SimpleVideoFilter/SimpleVideoFilter/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/iOS/SimpleVideoFilter/SimpleVideoFilter/Info.plist -------------------------------------------------------------------------------- /examples/iOS/SimpleVideoFilter/SimpleVideoFilter/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/iOS/SimpleVideoFilter/SimpleVideoFilter/ViewController.swift -------------------------------------------------------------------------------- /examples/iOS/SimpleVideoRecorder/SimpleVideoRecorder.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/iOS/SimpleVideoRecorder/SimpleVideoRecorder.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/iOS/SimpleVideoRecorder/SimpleVideoRecorder/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/iOS/SimpleVideoRecorder/SimpleVideoRecorder/AppDelegate.swift -------------------------------------------------------------------------------- /examples/iOS/SimpleVideoRecorder/SimpleVideoRecorder/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/iOS/SimpleVideoRecorder/SimpleVideoRecorder/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /examples/iOS/SimpleVideoRecorder/SimpleVideoRecorder/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/iOS/SimpleVideoRecorder/SimpleVideoRecorder/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /examples/iOS/SimpleVideoRecorder/SimpleVideoRecorder/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/iOS/SimpleVideoRecorder/SimpleVideoRecorder/Info.plist -------------------------------------------------------------------------------- /examples/iOS/SimpleVideoRecorder/SimpleVideoRecorder/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/examples/iOS/SimpleVideoRecorder/SimpleVideoRecorder/ViewController.swift -------------------------------------------------------------------------------- /framework/GPUImage.xcodeproj/GPUImageTestSuite_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/GPUImage.xcodeproj/GPUImageTestSuite_Info.plist -------------------------------------------------------------------------------- /framework/GPUImage.xcodeproj/GPUImage_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/GPUImage.xcodeproj/GPUImage_Info.plist -------------------------------------------------------------------------------- /framework/GPUImage.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/GPUImage.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /framework/LinuxCompilationGenerator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/LinuxCompilationGenerator.sh -------------------------------------------------------------------------------- /framework/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Package.swift -------------------------------------------------------------------------------- /framework/Packages/CFreeGLUT/Package.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/Packages/CFreeGLUT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Packages/CFreeGLUT/README.md -------------------------------------------------------------------------------- /framework/Packages/CFreeGLUT/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Packages/CFreeGLUT/module.modulemap -------------------------------------------------------------------------------- /framework/Packages/COpenGL/Package.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/Packages/COpenGL/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Packages/COpenGL/module.modulemap -------------------------------------------------------------------------------- /framework/Packages/COpenGL/proto.h: -------------------------------------------------------------------------------- 1 | #define GL_GLEXT_PROTOTYPES 1 -------------------------------------------------------------------------------- /framework/Packages/COpenGLES/Package.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/Packages/COpenGLES/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Packages/COpenGLES/module.modulemap -------------------------------------------------------------------------------- /framework/Packages/CVideo4Linux/Package.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/Packages/CVideo4Linux/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Packages/CVideo4Linux/module.modulemap -------------------------------------------------------------------------------- /framework/Packages/CVideo4Linux/stubs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Packages/CVideo4Linux/stubs.h -------------------------------------------------------------------------------- /framework/Packages/CVideoCore/Package.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/Packages/CVideoCore/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Packages/CVideoCore/module.modulemap -------------------------------------------------------------------------------- /framework/Source/BasicOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/BasicOperation.swift -------------------------------------------------------------------------------- /framework/Source/CameraConversion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/CameraConversion.swift -------------------------------------------------------------------------------- /framework/Source/Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Color.swift -------------------------------------------------------------------------------- /framework/Source/FillMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/FillMode.swift -------------------------------------------------------------------------------- /framework/Source/Framebuffer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Framebuffer.swift -------------------------------------------------------------------------------- /framework/Source/FramebufferCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/FramebufferCache.swift -------------------------------------------------------------------------------- /framework/Source/GPUImage-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/GPUImage-Bridging-Header.h -------------------------------------------------------------------------------- /framework/Source/ImageGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/ImageGenerator.swift -------------------------------------------------------------------------------- /framework/Source/ImageOrientation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/ImageOrientation.swift -------------------------------------------------------------------------------- /framework/Source/Linux/GLUTRenderWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Linux/GLUTRenderWindow.swift -------------------------------------------------------------------------------- /framework/Source/Linux/OpenGLContext-RPi.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Linux/OpenGLContext-RPi.swift -------------------------------------------------------------------------------- /framework/Source/Linux/OpenGLContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Linux/OpenGLContext.swift -------------------------------------------------------------------------------- /framework/Source/Linux/RPiRenderWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Linux/RPiRenderWindow.swift -------------------------------------------------------------------------------- /framework/Source/Linux/V4LCamera.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Linux/V4LCamera.swift -------------------------------------------------------------------------------- /framework/Source/Linux/v4lfuncs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Linux/v4lfuncs.c -------------------------------------------------------------------------------- /framework/Source/Linux/v4lfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Linux/v4lfuncs.h -------------------------------------------------------------------------------- /framework/Source/Mac/Camera.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Mac/Camera.swift -------------------------------------------------------------------------------- /framework/Source/Mac/MovieInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Mac/MovieInput.swift -------------------------------------------------------------------------------- /framework/Source/Mac/MovieOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Mac/MovieOutput.swift -------------------------------------------------------------------------------- /framework/Source/Mac/OpenGLContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Mac/OpenGLContext.swift -------------------------------------------------------------------------------- /framework/Source/Mac/PictureInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Mac/PictureInput.swift -------------------------------------------------------------------------------- /framework/Source/Mac/PictureOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Mac/PictureOutput.swift -------------------------------------------------------------------------------- /framework/Source/Mac/RenderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Mac/RenderView.swift -------------------------------------------------------------------------------- /framework/Source/Matrix.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Matrix.swift -------------------------------------------------------------------------------- /framework/Source/NSObject+Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/NSObject+Exception.h -------------------------------------------------------------------------------- /framework/Source/NSObject+Exception.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/NSObject+Exception.m -------------------------------------------------------------------------------- /framework/Source/OpenGLContext_Shared.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/OpenGLContext_Shared.swift -------------------------------------------------------------------------------- /framework/Source/OpenGLRendering.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/OpenGLRendering.swift -------------------------------------------------------------------------------- /framework/Source/OperationGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/OperationGroup.swift -------------------------------------------------------------------------------- /framework/Source/Operations/AdaptiveThreshold.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/AdaptiveThreshold.swift -------------------------------------------------------------------------------- /framework/Source/Operations/AddBlend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/AddBlend.swift -------------------------------------------------------------------------------- /framework/Source/Operations/AlphaBlend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/AlphaBlend.swift -------------------------------------------------------------------------------- /framework/Source/Operations/AmatorkaFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/AmatorkaFilter.swift -------------------------------------------------------------------------------- /framework/Source/Operations/AverageColorExtractor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/AverageColorExtractor.swift -------------------------------------------------------------------------------- /framework/Source/Operations/AverageLuminanceExtractor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/AverageLuminanceExtractor.swift -------------------------------------------------------------------------------- /framework/Source/Operations/AverageLuminanceThreshold.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/AverageLuminanceThreshold.swift -------------------------------------------------------------------------------- /framework/Source/Operations/BilateralBlur.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/BilateralBlur.swift -------------------------------------------------------------------------------- /framework/Source/Operations/BoxBlur.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/BoxBlur.swift -------------------------------------------------------------------------------- /framework/Source/Operations/BrightnessAdjustment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/BrightnessAdjustment.swift -------------------------------------------------------------------------------- /framework/Source/Operations/BulgeDistortion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/BulgeDistortion.swift -------------------------------------------------------------------------------- /framework/Source/Operations/CGAColorspaceFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/CGAColorspaceFilter.swift -------------------------------------------------------------------------------- /framework/Source/Operations/CannyEdgeDetection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/CannyEdgeDetection.swift -------------------------------------------------------------------------------- /framework/Source/Operations/ChromaKeyBlend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/ChromaKeyBlend.swift -------------------------------------------------------------------------------- /framework/Source/Operations/ChromaKeying.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/ChromaKeying.swift -------------------------------------------------------------------------------- /framework/Source/Operations/CircleGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/CircleGenerator.swift -------------------------------------------------------------------------------- /framework/Source/Operations/ClosingFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/ClosingFilter.swift -------------------------------------------------------------------------------- /framework/Source/Operations/ColorBlend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/ColorBlend.swift -------------------------------------------------------------------------------- /framework/Source/Operations/ColorBurnBlend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/ColorBurnBlend.swift -------------------------------------------------------------------------------- /framework/Source/Operations/ColorDodgeBlend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/ColorDodgeBlend.swift -------------------------------------------------------------------------------- /framework/Source/Operations/ColorInversion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/ColorInversion.swift -------------------------------------------------------------------------------- /framework/Source/Operations/ColorLocalBinaryPattern.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/ColorLocalBinaryPattern.swift -------------------------------------------------------------------------------- /framework/Source/Operations/ColorMatrixFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/ColorMatrixFilter.swift -------------------------------------------------------------------------------- /framework/Source/Operations/ColourFASTFeatureDetection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/ColourFASTFeatureDetection.swift -------------------------------------------------------------------------------- /framework/Source/Operations/ContrastAdjustment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/ContrastAdjustment.swift -------------------------------------------------------------------------------- /framework/Source/Operations/Convolution3x3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Convolution3x3.swift -------------------------------------------------------------------------------- /framework/Source/Operations/Crop.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Crop.swift -------------------------------------------------------------------------------- /framework/Source/Operations/CrosshairGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/CrosshairGenerator.swift -------------------------------------------------------------------------------- /framework/Source/Operations/Crosshatch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Crosshatch.swift -------------------------------------------------------------------------------- /framework/Source/Operations/DarkenBlend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/DarkenBlend.swift -------------------------------------------------------------------------------- /framework/Source/Operations/DifferenceBlend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/DifferenceBlend.swift -------------------------------------------------------------------------------- /framework/Source/Operations/Dilation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Dilation.swift -------------------------------------------------------------------------------- /framework/Source/Operations/DissolveBlend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/DissolveBlend.swift -------------------------------------------------------------------------------- /framework/Source/Operations/DivideBlend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/DivideBlend.swift -------------------------------------------------------------------------------- /framework/Source/Operations/EmbossFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/EmbossFilter.swift -------------------------------------------------------------------------------- /framework/Source/Operations/Erosion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Erosion.swift -------------------------------------------------------------------------------- /framework/Source/Operations/ExclusionBlend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/ExclusionBlend.swift -------------------------------------------------------------------------------- /framework/Source/Operations/ExposureAdjustment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/ExposureAdjustment.swift -------------------------------------------------------------------------------- /framework/Source/Operations/FalseColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/FalseColor.swift -------------------------------------------------------------------------------- /framework/Source/Operations/GammaAdjustment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/GammaAdjustment.swift -------------------------------------------------------------------------------- /framework/Source/Operations/GaussianBlur.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/GaussianBlur.swift -------------------------------------------------------------------------------- /framework/Source/Operations/GlassSphereRefraction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/GlassSphereRefraction.swift -------------------------------------------------------------------------------- /framework/Source/Operations/Halftone.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Halftone.swift -------------------------------------------------------------------------------- /framework/Source/Operations/HardLightBlend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/HardLightBlend.swift -------------------------------------------------------------------------------- /framework/Source/Operations/HarrisCornerDetector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/HarrisCornerDetector.swift -------------------------------------------------------------------------------- /framework/Source/Operations/Haze.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Haze.swift -------------------------------------------------------------------------------- /framework/Source/Operations/HighPassFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/HighPassFilter.swift -------------------------------------------------------------------------------- /framework/Source/Operations/HighlightAndShadowTint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/HighlightAndShadowTint.swift -------------------------------------------------------------------------------- /framework/Source/Operations/HighlightsAndShadows.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/HighlightsAndShadows.swift -------------------------------------------------------------------------------- /framework/Source/Operations/Histogram.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Histogram.swift -------------------------------------------------------------------------------- /framework/Source/Operations/HistogramDisplay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/HistogramDisplay.swift -------------------------------------------------------------------------------- /framework/Source/Operations/HistogramEqualization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/HistogramEqualization.swift -------------------------------------------------------------------------------- /framework/Source/Operations/HueAdjustment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/HueAdjustment.swift -------------------------------------------------------------------------------- /framework/Source/Operations/HueBlend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/HueBlend.swift -------------------------------------------------------------------------------- /framework/Source/Operations/ImageBuffer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/ImageBuffer.swift -------------------------------------------------------------------------------- /framework/Source/Operations/KuwaharaFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/KuwaharaFilter.swift -------------------------------------------------------------------------------- /framework/Source/Operations/KuwaharaRadius3Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/KuwaharaRadius3Filter.swift -------------------------------------------------------------------------------- /framework/Source/Operations/LanczosResampling.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/LanczosResampling.swift -------------------------------------------------------------------------------- /framework/Source/Operations/Laplacian.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Laplacian.swift -------------------------------------------------------------------------------- /framework/Source/Operations/LevelsAdjustment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/LevelsAdjustment.swift -------------------------------------------------------------------------------- /framework/Source/Operations/LightenBlend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/LightenBlend.swift -------------------------------------------------------------------------------- /framework/Source/Operations/LineGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/LineGenerator.swift -------------------------------------------------------------------------------- /framework/Source/Operations/LinearBurnBlend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/LinearBurnBlend.swift -------------------------------------------------------------------------------- /framework/Source/Operations/LocalBinaryPattern.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/LocalBinaryPattern.swift -------------------------------------------------------------------------------- /framework/Source/Operations/LookupFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/LookupFilter.swift -------------------------------------------------------------------------------- /framework/Source/Operations/LookupImages/lookup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/LookupImages/lookup.png -------------------------------------------------------------------------------- /framework/Source/Operations/LookupImages/lookup_amatorka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/LookupImages/lookup_amatorka.png -------------------------------------------------------------------------------- /framework/Source/Operations/LookupImages/lookup_miss_etikate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/LookupImages/lookup_miss_etikate.png -------------------------------------------------------------------------------- /framework/Source/Operations/LookupImages/lookup_soft_elegance_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/LookupImages/lookup_soft_elegance_1.png -------------------------------------------------------------------------------- /framework/Source/Operations/LookupImages/lookup_soft_elegance_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/LookupImages/lookup_soft_elegance_2.png -------------------------------------------------------------------------------- /framework/Source/Operations/LowPassFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/LowPassFilter.swift -------------------------------------------------------------------------------- /framework/Source/Operations/Luminance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Luminance.swift -------------------------------------------------------------------------------- /framework/Source/Operations/LuminanceRangeReduction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/LuminanceRangeReduction.swift -------------------------------------------------------------------------------- /framework/Source/Operations/LuminanceThreshold.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/LuminanceThreshold.swift -------------------------------------------------------------------------------- /framework/Source/Operations/LuminosityBlend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/LuminosityBlend.swift -------------------------------------------------------------------------------- /framework/Source/Operations/MedianFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/MedianFilter.swift -------------------------------------------------------------------------------- /framework/Source/Operations/MissEtikateFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/MissEtikateFilter.swift -------------------------------------------------------------------------------- /framework/Source/Operations/MonochromeFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/MonochromeFilter.swift -------------------------------------------------------------------------------- /framework/Source/Operations/MotionBlur.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/MotionBlur.swift -------------------------------------------------------------------------------- /framework/Source/Operations/MotionDetector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/MotionDetector.swift -------------------------------------------------------------------------------- /framework/Source/Operations/MultiplyBlend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/MultiplyBlend.swift -------------------------------------------------------------------------------- /framework/Source/Operations/NobleCornerDetector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/NobleCornerDetector.swift -------------------------------------------------------------------------------- /framework/Source/Operations/NormalBlend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/NormalBlend.swift -------------------------------------------------------------------------------- /framework/Source/Operations/OpacityAdjustment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/OpacityAdjustment.swift -------------------------------------------------------------------------------- /framework/Source/Operations/OpeningFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/OpeningFilter.swift -------------------------------------------------------------------------------- /framework/Source/Operations/OverlayBlend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/OverlayBlend.swift -------------------------------------------------------------------------------- /framework/Source/Operations/PinchDistortion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/PinchDistortion.swift -------------------------------------------------------------------------------- /framework/Source/Operations/Pixellate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Pixellate.swift -------------------------------------------------------------------------------- /framework/Source/Operations/PolarPixellate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/PolarPixellate.swift -------------------------------------------------------------------------------- /framework/Source/Operations/PolkaDot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/PolkaDot.swift -------------------------------------------------------------------------------- /framework/Source/Operations/Posterize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Posterize.swift -------------------------------------------------------------------------------- /framework/Source/Operations/PrewittEdgeDetection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/PrewittEdgeDetection.swift -------------------------------------------------------------------------------- /framework/Source/Operations/RGBAdjustmentFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/RGBAdjustmentFilter.swift -------------------------------------------------------------------------------- /framework/Source/Operations/SaturationAdjustment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/SaturationAdjustment.swift -------------------------------------------------------------------------------- /framework/Source/Operations/SaturationBlend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/SaturationBlend.swift -------------------------------------------------------------------------------- /framework/Source/Operations/ScreenBlend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/ScreenBlend.swift -------------------------------------------------------------------------------- /framework/Source/Operations/SepiaToneFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/SepiaToneFilter.swift -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/AdaptiveThreshold_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/AdaptiveThreshold_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/AdaptiveThreshold_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/AdaptiveThreshold_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/AddBlend_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/AddBlend_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/AddBlend_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/AddBlend_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/AlphaBlend_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/AlphaBlend_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/AlphaBlend_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/AlphaBlend_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/AlphaTest_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/AlphaTest_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/AlphaTest_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/AlphaTest_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/AverageColor.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/AverageColor.vsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/AverageColor_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/AverageColor_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/AverageColor_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/AverageColor_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/AverageLuminance_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/AverageLuminance_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/AverageLuminance_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/AverageLuminance_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/BilateralBlur.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/BilateralBlur.vsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/BilateralBlur_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/BilateralBlur_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/BilateralBlur_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/BilateralBlur_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Brightness_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Brightness_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Brightness_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Brightness_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/BulgeDistortion_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/BulgeDistortion_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/BulgeDistortion_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/BulgeDistortion_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/CGAColorspace_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/CGAColorspace_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/CGAColorspace_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/CGAColorspace_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ChromaKeyBlend_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ChromaKeyBlend_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ChromaKeyBlend_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ChromaKeyBlend_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ChromaKey_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ChromaKey_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ChromaKey_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ChromaKey_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Circle.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Circle.vsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Circle_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Circle_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Circle_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Circle_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ColorBlend_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ColorBlend_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ColorBlend_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ColorBlend_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ColorBurnBlend_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ColorBurnBlend_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ColorBurnBlend_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ColorBurnBlend_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ColorDodgeBlend_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ColorDodgeBlend_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ColorDodgeBlend_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ColorDodgeBlend_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ColorInvert_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ColorInvert_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ColorInvert_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ColorInvert_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ColorLocalBinaryPattern_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ColorLocalBinaryPattern_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ColorLocalBinaryPattern_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ColorLocalBinaryPattern_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ColorMatrix_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ColorMatrix_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ColorMatrix_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ColorMatrix_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ColorSwizzling_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ColorSwizzling_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ColorSwizzling_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ColorSwizzling_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ColourFASTDecriptor.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ColourFASTDecriptor.vsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ColourFASTDecriptor_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ColourFASTDecriptor_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ColourFASTDecriptor_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ColourFASTDecriptor_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Contrast_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Contrast_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Contrast_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Contrast_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ConvertedShaders_GL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ConvertedShaders_GL.swift -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ConvertedShaders_GLES.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ConvertedShaders_GLES.swift -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Convolution3x3_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Convolution3x3_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Convolution3x3_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Convolution3x3_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Crosshair.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Crosshair.vsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Crosshair_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Crosshair_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Crosshair_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Crosshair_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Crosshatch_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Crosshatch_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Crosshatch_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Crosshatch_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/DarkenBlend_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/DarkenBlend_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/DarkenBlend_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/DarkenBlend_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/DifferenceBlend_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/DifferenceBlend_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/DifferenceBlend_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/DifferenceBlend_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Dilation1_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Dilation1_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Dilation1_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Dilation1_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Dilation2_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Dilation2_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Dilation2_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Dilation2_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Dilation3_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Dilation3_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Dilation3_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Dilation3_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Dilation4_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Dilation4_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Dilation4_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Dilation4_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/DirectionalNonMaximumSuppression_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/DirectionalNonMaximumSuppression_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/DirectionalNonMaximumSuppression_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/DirectionalNonMaximumSuppression_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/DirectionalSobelEdgeDetection_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/DirectionalSobelEdgeDetection_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/DirectionalSobelEdgeDetection_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/DirectionalSobelEdgeDetection_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/DissolveBlend_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/DissolveBlend_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/DissolveBlend_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/DissolveBlend_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/DivideBlend_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/DivideBlend_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/DivideBlend_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/DivideBlend_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Erosion1_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Erosion1_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Erosion1_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Erosion1_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Erosion2_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Erosion2_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Erosion2_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Erosion2_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Erosion3_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Erosion3_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Erosion3_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Erosion3_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Erosion4_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Erosion4_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Erosion4_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Erosion4_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ErosionDilation1.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ErosionDilation1.vsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ErosionDilation2.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ErosionDilation2.vsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ErosionDilation3.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ErosionDilation3.vsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ErosionDilation4.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ErosionDilation4.vsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ExclusionBlend_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ExclusionBlend_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ExclusionBlend_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ExclusionBlend_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Exposure_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Exposure_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Exposure_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Exposure_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/FalseColor_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/FalseColor_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/FalseColor_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/FalseColor_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/FiveInput.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/FiveInput.vsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/FourInput.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/FourInput.vsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Gamma_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Gamma_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Gamma_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Gamma_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/GlassSphere_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/GlassSphere_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/GlassSphere_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/GlassSphere_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Halftone_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Halftone_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Halftone_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Halftone_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/HardLightBlend_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/HardLightBlend_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/HardLightBlend_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/HardLightBlend_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/HarrisCornerDetector_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/HarrisCornerDetector_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/HarrisCornerDetector_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/HarrisCornerDetector_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Haze_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Haze_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Haze_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Haze_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/HighlightShadowTint_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/HighlightShadowTint_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/HighlightShadowTint_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/HighlightShadowTint_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/HighlightShadow_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/HighlightShadow_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/HighlightShadow_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/HighlightShadow_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/HistogramAccumulation_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/HistogramAccumulation_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/HistogramAccumulation_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/HistogramAccumulation_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/HistogramBlueSampling.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/HistogramBlueSampling.vsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/HistogramDisplay.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/HistogramDisplay.vsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/HistogramDisplay_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/HistogramDisplay_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/HistogramDisplay_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/HistogramDisplay_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/HistogramEqualizationBlue_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/HistogramEqualizationBlue_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/HistogramEqualizationBlue_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/HistogramEqualizationBlue_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/HistogramEqualizationGreen_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/HistogramEqualizationGreen_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/HistogramEqualizationGreen_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/HistogramEqualizationGreen_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/HistogramEqualizationLuminance_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/HistogramEqualizationLuminance_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/HistogramEqualizationLuminance_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/HistogramEqualizationLuminance_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/HistogramEqualizationRGB_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/HistogramEqualizationRGB_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/HistogramEqualizationRGB_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/HistogramEqualizationRGB_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/HistogramEqualizationRed_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/HistogramEqualizationRed_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/HistogramEqualizationRed_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/HistogramEqualizationRed_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/HistogramGreenSampling.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/HistogramGreenSampling.vsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/HistogramLuminanceSampling.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/HistogramLuminanceSampling.vsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/HistogramRedSampling.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/HistogramRedSampling.vsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/HueBlend_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/HueBlend_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/HueBlend_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/HueBlend_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Hue_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Hue_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Hue_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Hue_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/KuwaharaRadius3_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/KuwaharaRadius3_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/KuwaharaRadius3_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/KuwaharaRadius3_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Kuwahara_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Kuwahara_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Kuwahara_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Kuwahara_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/LanczosResampling.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/LanczosResampling.vsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/LanczosResampling_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/LanczosResampling_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/LanczosResampling_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/LanczosResampling_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Laplacian_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Laplacian_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Laplacian_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Laplacian_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Levels_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Levels_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Levels_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Levels_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/LightenBlend_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/LightenBlend_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/LightenBlend_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/LightenBlend_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Line.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Line.vsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Line_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Line_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Line_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Line_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/LinearBurnBlend_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/LinearBurnBlend_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/LinearBurnBlend_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/LinearBurnBlend_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/LocalBinaryPattern_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/LocalBinaryPattern_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/LocalBinaryPattern_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/LocalBinaryPattern_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Lookup_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Lookup_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Lookup_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Lookup_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/LuminanceRange_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/LuminanceRange_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/LuminanceRange_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/LuminanceRange_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/LuminanceThreshold_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/LuminanceThreshold_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/LuminanceThreshold_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/LuminanceThreshold_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Luminance_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Luminance_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Luminance_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Luminance_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/LuminosityBlend_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/LuminosityBlend_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/LuminosityBlend_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/LuminosityBlend_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Median_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Median_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Median_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Median_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Monochrome_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Monochrome_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Monochrome_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Monochrome_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/MotionBlur.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/MotionBlur.vsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/MotionBlur_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/MotionBlur_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/MotionBlur_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/MotionBlur_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/MotionComparison_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/MotionComparison_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/MotionComparison_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/MotionComparison_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/MultiplyBlend_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/MultiplyBlend_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/MultiplyBlend_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/MultiplyBlend_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/NearbyTexelSampling.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/NearbyTexelSampling.vsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/NobleCornerDetector_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/NobleCornerDetector_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/NobleCornerDetector_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/NobleCornerDetector_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/NormalBlend_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/NormalBlend_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/NormalBlend_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/NormalBlend_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/OneInput.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/OneInput.vsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Opacity_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Opacity_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Opacity_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Opacity_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/OverlayBlend_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/OverlayBlend_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/OverlayBlend_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/OverlayBlend_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Passthrough_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Passthrough_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Passthrough_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Passthrough_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/PinchDistortion_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/PinchDistortion_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/PinchDistortion_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/PinchDistortion_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Pixellate_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Pixellate_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Pixellate_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Pixellate_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/PolarPixellate_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/PolarPixellate_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/PolarPixellate_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/PolarPixellate_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/PolkaDot_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/PolkaDot_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/PolkaDot_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/PolkaDot_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Posterize_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Posterize_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Posterize_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Posterize_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/PrewittEdgeDetection_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/PrewittEdgeDetection_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/PrewittEdgeDetection_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/PrewittEdgeDetection_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/RGBAdjustment_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/RGBAdjustment_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/RGBAdjustment_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/RGBAdjustment_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/SaturationBlend_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/SaturationBlend_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/SaturationBlend_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/SaturationBlend_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Saturation_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Saturation_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Saturation_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Saturation_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ScreenBlend_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ScreenBlend_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ScreenBlend_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ScreenBlend_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ShaderConverter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ShaderConverter.sh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Sharpen.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Sharpen.vsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Sharpen_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Sharpen_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Sharpen_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Sharpen_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ShiTomasiFeatureDetector_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ShiTomasiFeatureDetector_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ShiTomasiFeatureDetector_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ShiTomasiFeatureDetector_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Sketch_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Sketch_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Sketch_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Sketch_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/SobelEdgeDetection_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/SobelEdgeDetection_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/SobelEdgeDetection_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/SobelEdgeDetection_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/SoftLightBlend_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/SoftLightBlend_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/SoftLightBlend_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/SoftLightBlend_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Solarize_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Solarize_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Solarize_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Solarize_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/SourceOverBlend_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/SourceOverBlend_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/SourceOverBlend_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/SourceOverBlend_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/SphereRefraction_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/SphereRefraction_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/SphereRefraction_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/SphereRefraction_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/StretchDistortion_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/StretchDistortion_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/StretchDistortion_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/StretchDistortion_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/SubtractBlend_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/SubtractBlend_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/SubtractBlend_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/SubtractBlend_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Swirl_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Swirl_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Swirl_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Swirl_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ThreeInput.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ThreeInput.vsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ThresholdEdgeDetection_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ThresholdEdgeDetection_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ThresholdEdgeDetection_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ThresholdEdgeDetection_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ThresholdSketch_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ThresholdSketch_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ThresholdSketch_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ThresholdSketch_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ThresholdedNonMaximumSuppression_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ThresholdedNonMaximumSuppression_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ThresholdedNonMaximumSuppression_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ThresholdedNonMaximumSuppression_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/TiltShift_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/TiltShift_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/TiltShift_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/TiltShift_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Toon_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Toon_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Toon_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Toon_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Transform.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Transform.vsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/TwoInput.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/TwoInput.vsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/UnsharpMask_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/UnsharpMask_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/UnsharpMask_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/UnsharpMask_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Vibrance_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Vibrance_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Vibrance_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Vibrance_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Vignette_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Vignette_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/Vignette_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/Vignette_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/WeakPixelInclusion_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/WeakPixelInclusion_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/WeakPixelInclusion_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/WeakPixelInclusion_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/WhiteBalance_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/WhiteBalance_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/WhiteBalance_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/WhiteBalance_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/XYDerivative_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/XYDerivative_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/XYDerivative_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/XYDerivative_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/YUVConversionFullRangeUVPlanar_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/YUVConversionFullRangeUVPlanar_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/YUVConversionFullRangeUVPlanar_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/YUVConversionFullRangeUVPlanar_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/YUVConversionFullRange_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/YUVConversionFullRange_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/YUVConversionFullRange_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/YUVConversionFullRange_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/YUVConversionVideoRange_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/YUVConversionVideoRange_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/YUVConversionVideoRange_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/YUVConversionVideoRange_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ZoomBlur_GL.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ZoomBlur_GL.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Shaders/ZoomBlur_GLES.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Shaders/ZoomBlur_GLES.fsh -------------------------------------------------------------------------------- /framework/Source/Operations/Sharpen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Sharpen.swift -------------------------------------------------------------------------------- /framework/Source/Operations/ShiTomasiFeatureDetector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/ShiTomasiFeatureDetector.swift -------------------------------------------------------------------------------- /framework/Source/Operations/SingleComponentGaussianBlur.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/SingleComponentGaussianBlur.swift -------------------------------------------------------------------------------- /framework/Source/Operations/SketchFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/SketchFilter.swift -------------------------------------------------------------------------------- /framework/Source/Operations/SmoothToonFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/SmoothToonFilter.swift -------------------------------------------------------------------------------- /framework/Source/Operations/SobelEdgeDetection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/SobelEdgeDetection.swift -------------------------------------------------------------------------------- /framework/Source/Operations/SoftElegance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/SoftElegance.swift -------------------------------------------------------------------------------- /framework/Source/Operations/SoftLightBlend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/SoftLightBlend.swift -------------------------------------------------------------------------------- /framework/Source/Operations/Solarize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Solarize.swift -------------------------------------------------------------------------------- /framework/Source/Operations/SolidColorGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/SolidColorGenerator.swift -------------------------------------------------------------------------------- /framework/Source/Operations/SourceOverBlend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/SourceOverBlend.swift -------------------------------------------------------------------------------- /framework/Source/Operations/SphereRefraction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/SphereRefraction.swift -------------------------------------------------------------------------------- /framework/Source/Operations/StretchDistortion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/StretchDistortion.swift -------------------------------------------------------------------------------- /framework/Source/Operations/SubtractBlend.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/SubtractBlend.swift -------------------------------------------------------------------------------- /framework/Source/Operations/SwirlDistortion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/SwirlDistortion.swift -------------------------------------------------------------------------------- /framework/Source/Operations/ThresholdSketch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/ThresholdSketch.swift -------------------------------------------------------------------------------- /framework/Source/Operations/ThresholdSobelEdgeDetection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/ThresholdSobelEdgeDetection.swift -------------------------------------------------------------------------------- /framework/Source/Operations/TiltShift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/TiltShift.swift -------------------------------------------------------------------------------- /framework/Source/Operations/ToonFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/ToonFilter.swift -------------------------------------------------------------------------------- /framework/Source/Operations/TransformOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/TransformOperation.swift -------------------------------------------------------------------------------- /framework/Source/Operations/UnsharpMask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/UnsharpMask.swift -------------------------------------------------------------------------------- /framework/Source/Operations/Vibrance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Vibrance.swift -------------------------------------------------------------------------------- /framework/Source/Operations/Vignette.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/Vignette.swift -------------------------------------------------------------------------------- /framework/Source/Operations/WhiteBalance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/WhiteBalance.swift -------------------------------------------------------------------------------- /framework/Source/Operations/ZoomBlur.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/ZoomBlur.swift -------------------------------------------------------------------------------- /framework/Source/Operations/iOSBlur.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Operations/iOSBlur.swift -------------------------------------------------------------------------------- /framework/Source/Pipeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Pipeline.swift -------------------------------------------------------------------------------- /framework/Source/Position.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Position.swift -------------------------------------------------------------------------------- /framework/Source/RawDataInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/RawDataInput.swift -------------------------------------------------------------------------------- /framework/Source/RawDataOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/RawDataOutput.swift -------------------------------------------------------------------------------- /framework/Source/SerialDispatch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/SerialDispatch.swift -------------------------------------------------------------------------------- /framework/Source/ShaderProgram.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/ShaderProgram.swift -------------------------------------------------------------------------------- /framework/Source/ShaderUniformSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/ShaderUniformSettings.swift -------------------------------------------------------------------------------- /framework/Source/Size.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Size.swift -------------------------------------------------------------------------------- /framework/Source/TPCircularBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/TPCircularBuffer.h -------------------------------------------------------------------------------- /framework/Source/TPCircularBuffer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/TPCircularBuffer.m -------------------------------------------------------------------------------- /framework/Source/TextureInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/TextureInput.swift -------------------------------------------------------------------------------- /framework/Source/TextureOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/TextureOutput.swift -------------------------------------------------------------------------------- /framework/Source/TextureSamplingOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/TextureSamplingOperation.swift -------------------------------------------------------------------------------- /framework/Source/Timestamp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/Timestamp.swift -------------------------------------------------------------------------------- /framework/Source/TwoStageOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/TwoStageOperation.swift -------------------------------------------------------------------------------- /framework/Source/iOS/Camera.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/iOS/Camera.swift -------------------------------------------------------------------------------- /framework/Source/iOS/GPUImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/iOS/GPUImage.h -------------------------------------------------------------------------------- /framework/Source/iOS/MovieInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/iOS/MovieInput.swift -------------------------------------------------------------------------------- /framework/Source/iOS/MovieOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/iOS/MovieOutput.swift -------------------------------------------------------------------------------- /framework/Source/iOS/OpenGLContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/iOS/OpenGLContext.swift -------------------------------------------------------------------------------- /framework/Source/iOS/PictureInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/iOS/PictureInput.swift -------------------------------------------------------------------------------- /framework/Source/iOS/PictureOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/iOS/PictureOutput.swift -------------------------------------------------------------------------------- /framework/Source/iOS/RenderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/iOS/RenderView.swift -------------------------------------------------------------------------------- /framework/Source/iOS/SpeakerOutput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Source/iOS/SpeakerOutput.swift -------------------------------------------------------------------------------- /framework/Tests/Pipeline_Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Tests/Pipeline_Tests.swift -------------------------------------------------------------------------------- /framework/Tests/ShaderProgram_Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/Tests/ShaderProgram_Tests.swift -------------------------------------------------------------------------------- /framework/compile-LinuxGL.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/compile-LinuxGL.sh -------------------------------------------------------------------------------- /framework/compile-LinuxRPi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GottaYotta/GPUImage2/HEAD/framework/compile-LinuxRPi.sh --------------------------------------------------------------------------------