├── .gitignore ├── Core Image by Example.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── LICENSE ├── README.md ├── Shared ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── CameraController.swift ├── ContentView.swift ├── CoreImageExampleApp.swift ├── FilterController.swift ├── Helpers │ └── Combine+SelfBindings.swift └── PreviewView.swift ├── iOS ├── Info.plist └── OrientationObserver.swift └── macOS ├── Info.plist └── macOS.entitlements /.gitignore: -------------------------------------------------------------------------------- 1 | xcuserdata 2 | *.xccheckout -------------------------------------------------------------------------------- /Core Image by Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankschlegel/core-image-by-example/HEAD/Core Image by Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Core Image by Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankschlegel/core-image-by-example/HEAD/Core Image by Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Core Image by Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankschlegel/core-image-by-example/HEAD/Core Image by Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankschlegel/core-image-by-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankschlegel/core-image-by-example/HEAD/README.md -------------------------------------------------------------------------------- /Shared/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankschlegel/core-image-by-example/HEAD/Shared/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Shared/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankschlegel/core-image-by-example/HEAD/Shared/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Shared/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankschlegel/core-image-by-example/HEAD/Shared/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Shared/CameraController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankschlegel/core-image-by-example/HEAD/Shared/CameraController.swift -------------------------------------------------------------------------------- /Shared/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankschlegel/core-image-by-example/HEAD/Shared/ContentView.swift -------------------------------------------------------------------------------- /Shared/CoreImageExampleApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankschlegel/core-image-by-example/HEAD/Shared/CoreImageExampleApp.swift -------------------------------------------------------------------------------- /Shared/FilterController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankschlegel/core-image-by-example/HEAD/Shared/FilterController.swift -------------------------------------------------------------------------------- /Shared/Helpers/Combine+SelfBindings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankschlegel/core-image-by-example/HEAD/Shared/Helpers/Combine+SelfBindings.swift -------------------------------------------------------------------------------- /Shared/PreviewView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankschlegel/core-image-by-example/HEAD/Shared/PreviewView.swift -------------------------------------------------------------------------------- /iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankschlegel/core-image-by-example/HEAD/iOS/Info.plist -------------------------------------------------------------------------------- /iOS/OrientationObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankschlegel/core-image-by-example/HEAD/iOS/OrientationObserver.swift -------------------------------------------------------------------------------- /macOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankschlegel/core-image-by-example/HEAD/macOS/Info.plist -------------------------------------------------------------------------------- /macOS/macOS.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frankschlegel/core-image-by-example/HEAD/macOS/macOS.entitlements --------------------------------------------------------------------------------