├── .gitignore ├── .swift-version ├── .travis.yml ├── Example ├── MaskingLayer.podspec ├── MaskingLayer.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── MaskingLayer-Example.xcscheme ├── MaskingLayer.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── MaskingLayer │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Camera.storyboard │ ├── CameraViewController.swift │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Mask.png │ │ │ ├── Mask@2x-1.png │ │ │ ├── Mask@2x-2.png │ │ │ ├── Mask@2x-3.png │ │ │ ├── Mask@2x.png │ │ │ ├── Mask@3x-1.png │ │ │ ├── Mask@3x-2.png │ │ │ ├── Mask@3x-3.png │ │ │ └── Mask@3x.png │ │ ├── Contents.json │ │ ├── IMG_4011.imageset │ │ │ ├── Contents.json │ │ │ └── IMG_4011.jpg │ │ ├── Mask.imageset │ │ │ ├── Contents.json │ │ │ └── Mask.png │ │ └── Reset.imageset │ │ │ ├── Contents.json │ │ │ ├── Rest.png │ │ │ ├── Rest@2x.png │ │ │ └── Rest@3x.png │ ├── Info.plist │ ├── MaskButtonView.swift │ ├── SceneDelegate.swift │ ├── TabBarController.swift │ ├── ViewController+Extension.swift │ └── ViewController.swift ├── Podfile ├── Podfile.lock ├── Pods │ ├── Manifest.lock │ ├── MaskingLayer │ │ ├── LICENSE │ │ ├── Pods │ │ │ └── MaskingLayer │ │ │ │ └── Classes │ │ │ │ ├── DefalutExtension │ │ │ │ └── MaskExtension.swift │ │ │ │ ├── MaskProtocol │ │ │ │ └── MaskProtocol.swift │ │ │ │ ├── Model │ │ │ │ ├── MaskCollectionDelegateModel.swift │ │ │ │ ├── MaskFilterBuiltinsMatte.swift │ │ │ │ ├── MaskObservable.swift │ │ │ │ ├── MaskPortraitMatte.swift │ │ │ │ └── MaskingLayerModel.swift │ │ │ │ ├── PathStruct │ │ │ │ └── PathStruct.swift │ │ │ │ ├── Util │ │ │ │ ├── MaskGesture.swift │ │ │ │ └── MaskImagePicker.swift │ │ │ │ ├── View │ │ │ │ ├── MaskingLayerModelView.swift │ │ │ │ ├── SliiderObjectsView.swift │ │ │ │ └── SliiderObjectsView.xib │ │ │ │ └── ViwModel │ │ │ │ ├── MaskGestureViewModel.swift │ │ │ │ ├── MaskLayer.swift │ │ │ │ └── MaskingLayerViewModel.swift │ │ └── README.md │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── MaskingLayer │ │ ├── MaskingLayer-Info.plist │ │ ├── MaskingLayer-dummy.m │ │ ├── MaskingLayer-prefix.pch │ │ ├── MaskingLayer-umbrella.h │ │ ├── MaskingLayer.debug.xcconfig │ │ ├── MaskingLayer.modulemap │ │ └── MaskingLayer.release.xcconfig │ │ └── Pods-MaskingLayer_Example │ │ ├── Pods-MaskingLayer_Example-Info.plist │ │ ├── Pods-MaskingLayer_Example-acknowledgements.markdown │ │ ├── Pods-MaskingLayer_Example-acknowledgements.plist │ │ ├── Pods-MaskingLayer_Example-dummy.m │ │ ├── Pods-MaskingLayer_Example-frameworks.sh │ │ ├── Pods-MaskingLayer_Example-umbrella.h │ │ ├── Pods-MaskingLayer_Example.debug.xcconfig │ │ ├── Pods-MaskingLayer_Example.modulemap │ │ └── Pods-MaskingLayer_Example.release.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── MaskImage.png ├── README.md └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.0 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/MaskingLayer.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/MaskingLayer.podspec -------------------------------------------------------------------------------- /Example/MaskingLayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/MaskingLayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/MaskingLayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/MaskingLayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/MaskingLayer.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/MaskingLayer.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/MaskingLayer.xcodeproj/xcshareddata/xcschemes/MaskingLayer-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/MaskingLayer.xcodeproj/xcshareddata/xcschemes/MaskingLayer-Example.xcscheme -------------------------------------------------------------------------------- /Example/MaskingLayer.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/MaskingLayer.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/MaskingLayer.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/MaskingLayer.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/MaskingLayer/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/MaskingLayer/AppDelegate.swift -------------------------------------------------------------------------------- /Example/MaskingLayer/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/MaskingLayer/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/MaskingLayer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/MaskingLayer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/MaskingLayer/Camera.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/MaskingLayer/Camera.storyboard -------------------------------------------------------------------------------- /Example/MaskingLayer/CameraViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/MaskingLayer/CameraViewController.swift -------------------------------------------------------------------------------- /Example/MaskingLayer/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/MaskingLayer/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/MaskingLayer/Images.xcassets/AppIcon.appiconset/Mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/MaskingLayer/Images.xcassets/AppIcon.appiconset/Mask.png -------------------------------------------------------------------------------- /Example/MaskingLayer/Images.xcassets/AppIcon.appiconset/Mask@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/MaskingLayer/Images.xcassets/AppIcon.appiconset/Mask@2x-1.png -------------------------------------------------------------------------------- /Example/MaskingLayer/Images.xcassets/AppIcon.appiconset/Mask@2x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/MaskingLayer/Images.xcassets/AppIcon.appiconset/Mask@2x-2.png -------------------------------------------------------------------------------- /Example/MaskingLayer/Images.xcassets/AppIcon.appiconset/Mask@2x-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/MaskingLayer/Images.xcassets/AppIcon.appiconset/Mask@2x-3.png -------------------------------------------------------------------------------- /Example/MaskingLayer/Images.xcassets/AppIcon.appiconset/Mask@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/MaskingLayer/Images.xcassets/AppIcon.appiconset/Mask@2x.png -------------------------------------------------------------------------------- /Example/MaskingLayer/Images.xcassets/AppIcon.appiconset/Mask@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/MaskingLayer/Images.xcassets/AppIcon.appiconset/Mask@3x-1.png -------------------------------------------------------------------------------- /Example/MaskingLayer/Images.xcassets/AppIcon.appiconset/Mask@3x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/MaskingLayer/Images.xcassets/AppIcon.appiconset/Mask@3x-2.png -------------------------------------------------------------------------------- /Example/MaskingLayer/Images.xcassets/AppIcon.appiconset/Mask@3x-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/MaskingLayer/Images.xcassets/AppIcon.appiconset/Mask@3x-3.png -------------------------------------------------------------------------------- /Example/MaskingLayer/Images.xcassets/AppIcon.appiconset/Mask@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/MaskingLayer/Images.xcassets/AppIcon.appiconset/Mask@3x.png -------------------------------------------------------------------------------- /Example/MaskingLayer/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/MaskingLayer/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/MaskingLayer/Images.xcassets/IMG_4011.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/MaskingLayer/Images.xcassets/IMG_4011.imageset/Contents.json -------------------------------------------------------------------------------- /Example/MaskingLayer/Images.xcassets/IMG_4011.imageset/IMG_4011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/MaskingLayer/Images.xcassets/IMG_4011.imageset/IMG_4011.jpg -------------------------------------------------------------------------------- /Example/MaskingLayer/Images.xcassets/Mask.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/MaskingLayer/Images.xcassets/Mask.imageset/Contents.json -------------------------------------------------------------------------------- /Example/MaskingLayer/Images.xcassets/Mask.imageset/Mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/MaskingLayer/Images.xcassets/Mask.imageset/Mask.png -------------------------------------------------------------------------------- /Example/MaskingLayer/Images.xcassets/Reset.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/MaskingLayer/Images.xcassets/Reset.imageset/Contents.json -------------------------------------------------------------------------------- /Example/MaskingLayer/Images.xcassets/Reset.imageset/Rest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/MaskingLayer/Images.xcassets/Reset.imageset/Rest.png -------------------------------------------------------------------------------- /Example/MaskingLayer/Images.xcassets/Reset.imageset/Rest@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/MaskingLayer/Images.xcassets/Reset.imageset/Rest@2x.png -------------------------------------------------------------------------------- /Example/MaskingLayer/Images.xcassets/Reset.imageset/Rest@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/MaskingLayer/Images.xcassets/Reset.imageset/Rest@3x.png -------------------------------------------------------------------------------- /Example/MaskingLayer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/MaskingLayer/Info.plist -------------------------------------------------------------------------------- /Example/MaskingLayer/MaskButtonView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/MaskingLayer/MaskButtonView.swift -------------------------------------------------------------------------------- /Example/MaskingLayer/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/MaskingLayer/SceneDelegate.swift -------------------------------------------------------------------------------- /Example/MaskingLayer/TabBarController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/MaskingLayer/TabBarController.swift -------------------------------------------------------------------------------- /Example/MaskingLayer/ViewController+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/MaskingLayer/ViewController+Extension.swift -------------------------------------------------------------------------------- /Example/MaskingLayer/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/MaskingLayer/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/MaskingLayer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/Pods/MaskingLayer/LICENSE -------------------------------------------------------------------------------- /Example/Pods/MaskingLayer/Pods/MaskingLayer/Classes/DefalutExtension/MaskExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/Pods/MaskingLayer/Pods/MaskingLayer/Classes/DefalutExtension/MaskExtension.swift -------------------------------------------------------------------------------- /Example/Pods/MaskingLayer/Pods/MaskingLayer/Classes/MaskProtocol/MaskProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/Pods/MaskingLayer/Pods/MaskingLayer/Classes/MaskProtocol/MaskProtocol.swift -------------------------------------------------------------------------------- /Example/Pods/MaskingLayer/Pods/MaskingLayer/Classes/Model/MaskCollectionDelegateModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/Pods/MaskingLayer/Pods/MaskingLayer/Classes/Model/MaskCollectionDelegateModel.swift -------------------------------------------------------------------------------- /Example/Pods/MaskingLayer/Pods/MaskingLayer/Classes/Model/MaskFilterBuiltinsMatte.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/Pods/MaskingLayer/Pods/MaskingLayer/Classes/Model/MaskFilterBuiltinsMatte.swift -------------------------------------------------------------------------------- /Example/Pods/MaskingLayer/Pods/MaskingLayer/Classes/Model/MaskObservable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/Pods/MaskingLayer/Pods/MaskingLayer/Classes/Model/MaskObservable.swift -------------------------------------------------------------------------------- /Example/Pods/MaskingLayer/Pods/MaskingLayer/Classes/Model/MaskPortraitMatte.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/Pods/MaskingLayer/Pods/MaskingLayer/Classes/Model/MaskPortraitMatte.swift -------------------------------------------------------------------------------- /Example/Pods/MaskingLayer/Pods/MaskingLayer/Classes/Model/MaskingLayerModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/Pods/MaskingLayer/Pods/MaskingLayer/Classes/Model/MaskingLayerModel.swift -------------------------------------------------------------------------------- /Example/Pods/MaskingLayer/Pods/MaskingLayer/Classes/PathStruct/PathStruct.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/Pods/MaskingLayer/Pods/MaskingLayer/Classes/PathStruct/PathStruct.swift -------------------------------------------------------------------------------- /Example/Pods/MaskingLayer/Pods/MaskingLayer/Classes/Util/MaskGesture.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/Pods/MaskingLayer/Pods/MaskingLayer/Classes/Util/MaskGesture.swift -------------------------------------------------------------------------------- /Example/Pods/MaskingLayer/Pods/MaskingLayer/Classes/Util/MaskImagePicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/Pods/MaskingLayer/Pods/MaskingLayer/Classes/Util/MaskImagePicker.swift -------------------------------------------------------------------------------- /Example/Pods/MaskingLayer/Pods/MaskingLayer/Classes/View/MaskingLayerModelView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/Pods/MaskingLayer/Pods/MaskingLayer/Classes/View/MaskingLayerModelView.swift -------------------------------------------------------------------------------- /Example/Pods/MaskingLayer/Pods/MaskingLayer/Classes/View/SliiderObjectsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/Pods/MaskingLayer/Pods/MaskingLayer/Classes/View/SliiderObjectsView.swift -------------------------------------------------------------------------------- /Example/Pods/MaskingLayer/Pods/MaskingLayer/Classes/View/SliiderObjectsView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/Pods/MaskingLayer/Pods/MaskingLayer/Classes/View/SliiderObjectsView.xib -------------------------------------------------------------------------------- /Example/Pods/MaskingLayer/Pods/MaskingLayer/Classes/ViwModel/MaskGestureViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/Pods/MaskingLayer/Pods/MaskingLayer/Classes/ViwModel/MaskGestureViewModel.swift -------------------------------------------------------------------------------- /Example/Pods/MaskingLayer/Pods/MaskingLayer/Classes/ViwModel/MaskLayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/Pods/MaskingLayer/Pods/MaskingLayer/Classes/ViwModel/MaskLayer.swift -------------------------------------------------------------------------------- /Example/Pods/MaskingLayer/Pods/MaskingLayer/Classes/ViwModel/MaskingLayerViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/Pods/MaskingLayer/Pods/MaskingLayer/Classes/ViwModel/MaskingLayerViewModel.swift -------------------------------------------------------------------------------- /Example/Pods/MaskingLayer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/Pods/MaskingLayer/README.md -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MaskingLayer/MaskingLayer-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/Pods/Target Support Files/MaskingLayer/MaskingLayer-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MaskingLayer/MaskingLayer-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/Pods/Target Support Files/MaskingLayer/MaskingLayer-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MaskingLayer/MaskingLayer-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/Pods/Target Support Files/MaskingLayer/MaskingLayer-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MaskingLayer/MaskingLayer-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/Pods/Target Support Files/MaskingLayer/MaskingLayer-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MaskingLayer/MaskingLayer.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/Pods/Target Support Files/MaskingLayer/MaskingLayer.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MaskingLayer/MaskingLayer.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/Pods/Target Support Files/MaskingLayer/MaskingLayer.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MaskingLayer/MaskingLayer.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/Pods/Target Support Files/MaskingLayer/MaskingLayer.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MaskingLayer_Example/Pods-MaskingLayer_Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/Pods/Target Support Files/Pods-MaskingLayer_Example/Pods-MaskingLayer_Example-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MaskingLayer_Example/Pods-MaskingLayer_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/Pods/Target Support Files/Pods-MaskingLayer_Example/Pods-MaskingLayer_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MaskingLayer_Example/Pods-MaskingLayer_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/Pods/Target Support Files/Pods-MaskingLayer_Example/Pods-MaskingLayer_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MaskingLayer_Example/Pods-MaskingLayer_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/Pods/Target Support Files/Pods-MaskingLayer_Example/Pods-MaskingLayer_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MaskingLayer_Example/Pods-MaskingLayer_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/Pods/Target Support Files/Pods-MaskingLayer_Example/Pods-MaskingLayer_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MaskingLayer_Example/Pods-MaskingLayer_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/Pods/Target Support Files/Pods-MaskingLayer_Example/Pods-MaskingLayer_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MaskingLayer_Example/Pods-MaskingLayer_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/Pods/Target Support Files/Pods-MaskingLayer_Example/Pods-MaskingLayer_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MaskingLayer_Example/Pods-MaskingLayer_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/Pods/Target Support Files/Pods-MaskingLayer_Example/Pods-MaskingLayer_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MaskingLayer_Example/Pods-MaskingLayer_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/Pods/Target Support Files/Pods-MaskingLayer_Example/Pods-MaskingLayer_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/LICENSE -------------------------------------------------------------------------------- /MaskImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/MaskImage.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaisukeNagata/MaskingLayer/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------