├── .DS_Store ├── ICETest ├── .DS_Store ├── ICETest.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ ├── gmi.xcuserdatad │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ │ └── jianhuazhang.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── ICETest │ ├── .DS_Store │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Chat.ice │ ├── ChatController.h │ ├── ChatController.m │ ├── ChatSession.ice │ ├── ChatView.xib │ ├── Info.plist │ ├── LoginController.h │ ├── LoginController.m │ ├── LoginView.xib │ ├── UserController.h │ ├── UserController.m │ ├── UserView.xib │ ├── ViewController.h │ ├── ViewController.m │ ├── VoiceManager │ ├── BNRAudioData.h │ ├── BNRAudioData.m │ ├── CMG711.cpp │ ├── CMG711.h │ ├── VoiceConvertHandle.h │ └── VoiceConvertHandle.m │ ├── VoiceTools.h │ ├── VoiceTools.m │ ├── cacert.der │ ├── config.client │ └── main.m ├── NoName ├── .DS_Store ├── NoName.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── gmi.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── NoName.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── NoName │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── 1.imageset │ │ │ ├── 1547722586_556626.png │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon-1024.png │ │ │ ├── icon-20@2x.png │ │ │ ├── icon-20@3x.png │ │ │ ├── icon-29@2x.png │ │ │ ├── icon-29@3x.png │ │ │ ├── icon-40@2x.png │ │ │ ├── icon-40@3x.png │ │ │ ├── icon-60@2x.png │ │ │ └── icon-60@3x.png │ │ ├── Contents.json │ │ └── bg.imageset │ │ │ ├── Contents.json │ │ │ └── bg.png │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── CollectionViewController.h │ ├── CollectionViewController.m │ ├── GIFGenerator.h │ ├── GIFGenerator.m │ ├── ImageCollectionViewCell.h │ ├── ImageCollectionViewCell.m │ ├── Info.plist │ ├── Login │ │ ├── BaseViewController.h │ │ ├── BaseViewController.m │ │ ├── LoginViewController.h │ │ ├── LoginViewController.m │ │ ├── LoginViewController.xib │ │ ├── RegisterViewController.h │ │ ├── RegisterViewController.m │ │ ├── RegisterViewController.xib │ │ ├── UserData.h │ │ └── UserData.m │ ├── LookViewController.h │ ├── LookViewController.m │ ├── PhotoBrowser │ │ ├── Animation │ │ │ ├── ZLAnimateTransition.h │ │ │ ├── ZLAnimateTransition.m │ │ │ ├── ZLInteractiveAnimateProtocol.h │ │ │ ├── ZLInteractiveTrasition.h │ │ │ ├── ZLInteractiveTrasition.m │ │ │ ├── ZLPullDownInteractiveTransition.h │ │ │ └── ZLPullDownInteractiveTransition.m │ │ ├── NSBundle+ZLPhotoBrowser.h │ │ ├── NSBundle+ZLPhotoBrowser.m │ │ ├── ToastUtils.h │ │ ├── ToastUtils.m │ │ ├── UIButton+EnlargeTouchArea.h │ │ ├── UIButton+EnlargeTouchArea.m │ │ ├── UIImage+ZLPhotoBrowser.h │ │ ├── UIImage+ZLPhotoBrowser.m │ │ ├── ZLBigImageCell.h │ │ ├── ZLBigImageCell.m │ │ ├── ZLCollectionCell.h │ │ ├── ZLCollectionCell.m │ │ ├── ZLCustomCamera.h │ │ ├── ZLCustomCamera.m │ │ ├── ZLDefine.h │ │ ├── ZLEditVideoController.h │ │ ├── ZLEditVideoController.m │ │ ├── ZLEditViewController.h │ │ ├── ZLEditViewController.m │ │ ├── ZLForceTouchPreviewController.h │ │ ├── ZLForceTouchPreviewController.m │ │ ├── ZLImageEditTools │ │ │ ├── ZLBrushBoardImageView.h │ │ │ ├── ZLBrushBoardImageView.m │ │ │ ├── ZLClipItem.h │ │ │ ├── ZLClipItem.m │ │ │ ├── ZLDrawItem.h │ │ │ ├── ZLDrawItem.m │ │ │ ├── ZLEditImageView.h │ │ │ ├── ZLFilterItem.h │ │ │ ├── ZLFilterItem.m │ │ │ ├── ZLFilterTool.h │ │ │ ├── ZLFilterTool.m │ │ │ ├── ZLImageEditTool.h │ │ │ └── ZLImageEditTool.m │ │ ├── ZLNoAuthorityViewController.h │ │ ├── ZLNoAuthorityViewController.m │ │ ├── ZLPhotoActionSheet.h │ │ ├── ZLPhotoActionSheet.m │ │ ├── ZLPhotoBrowser.h │ │ ├── ZLPhotoBrowser.m │ │ ├── ZLPhotoBrowserCell.h │ │ ├── ZLPhotoBrowserCell.m │ │ ├── ZLPhotoConfiguration.h │ │ ├── ZLPhotoConfiguration.m │ │ ├── ZLPhotoManager.h │ │ ├── ZLPhotoManager.m │ │ ├── ZLPhotoModel.h │ │ ├── ZLPhotoModel.m │ │ ├── ZLPlayer.h │ │ ├── ZLPlayer.m │ │ ├── ZLProgressHUD.h │ │ ├── ZLProgressHUD.m │ │ ├── ZLShowBigImgViewController.h │ │ ├── ZLShowBigImgViewController.m │ │ ├── ZLThumbnailViewController.h │ │ ├── ZLThumbnailViewController.m │ │ └── resource │ │ │ ├── ZLPhotoActionSheet.xib │ │ │ ├── ZLPhotoBrowser.bundle │ │ │ ├── en.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── ja-US.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── zh-Hans.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── zh-Hant.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── zl_arrow_down@2x.png │ │ │ ├── zl_arrow_down@3x.png │ │ │ ├── zl_btn_circle@2x.png │ │ │ ├── zl_btn_circle@3x.png │ │ │ ├── zl_btn_original_circle.png │ │ │ ├── zl_btn_original_circle@2x.png │ │ │ ├── zl_btn_original_circle@3x.png │ │ │ ├── zl_btn_rotate.png │ │ │ ├── zl_btn_selected.png │ │ │ ├── zl_btn_selected@2x.png │ │ │ ├── zl_btn_selected@3x.png │ │ │ ├── zl_btn_unselected.png │ │ │ ├── zl_btn_unselected@2x.png │ │ │ ├── zl_btn_unselected@3x.png │ │ │ ├── zl_clip@2x.png │ │ │ ├── zl_clip@3x.png │ │ │ ├── zl_defaultphoto.png │ │ │ ├── zl_draw@2x.png │ │ │ ├── zl_draw@3x.png │ │ │ ├── zl_fennen.png │ │ │ ├── zl_filter@2x.png │ │ │ ├── zl_filter@3x.png │ │ │ ├── zl_focus@2x.png │ │ │ ├── zl_focus@3x.png │ │ │ ├── zl_ic_left@2x.png │ │ │ ├── zl_ic_left@3x.png │ │ │ ├── zl_ic_right@2x.png │ │ │ ├── zl_ic_right@3x.png │ │ │ ├── zl_livePhoto@2x.png │ │ │ ├── zl_livePhoto@3x.png │ │ │ ├── zl_lock.png │ │ │ ├── zl_navBack@2x.png │ │ │ ├── zl_navBack@3x.png │ │ │ ├── zl_playVideo@2x.png │ │ │ ├── zl_playVideo@3x.png │ │ │ ├── zl_retake@2x.png │ │ │ ├── zl_retake@3x.png │ │ │ ├── zl_revoke@2x.png │ │ │ ├── zl_revoke@3x.png │ │ │ ├── zl_rotateimage.png │ │ │ ├── zl_rotateimage@2x.png │ │ │ ├── zl_rotateimage@3x.png │ │ │ ├── zl_takePhoto@2x.png │ │ │ ├── zl_takePhoto@3x.png │ │ │ ├── zl_takeok@2x.png │ │ │ ├── zl_takeok@3x.png │ │ │ ├── zl_toggle_camera@2x.png │ │ │ ├── zl_toggle_camera@3x.png │ │ │ ├── zl_video@2x.png │ │ │ ├── zl_video@3x.png │ │ │ ├── zl_videoLoadFailed@2x.png │ │ │ ├── zl_videoLoadFailed@3x.png │ │ │ ├── zl_videoView@2x.png │ │ │ └── zl_videoView@3x.png │ │ │ └── ZLPhotoBrowserCell.xib │ ├── PrefixHeader.pch │ ├── ToolsVideo.h │ ├── ToolsVideo.m │ ├── UIColor+Define.h │ ├── UIColor+Define.m │ ├── ViewController.h │ ├── ViewController.m │ ├── WebViewController.h │ ├── WebViewController.m │ ├── add.png │ ├── ja.lproj │ │ ├── LaunchScreen.strings │ │ └── Main.strings │ ├── ko.lproj │ │ ├── LaunchScreen.strings │ │ └── Main.strings │ ├── main.m │ ├── prompt.png │ ├── ru.lproj │ │ ├── LaunchScreen.strings │ │ └── Main.strings │ ├── zh-Hans.lproj │ │ ├── LaunchScreen.strings │ │ └── Main.strings │ ├── 历史.png │ └── 帮助.png ├── Podfile ├── Podfile.lock └── Pods │ ├── FLEX │ ├── Classes │ │ ├── Editing │ │ │ ├── ArgumentInputViews │ │ │ │ ├── FLEXArgumentInputColorView.h │ │ │ │ ├── FLEXArgumentInputColorView.m │ │ │ │ ├── FLEXArgumentInputDateView.h │ │ │ │ ├── FLEXArgumentInputDateView.m │ │ │ │ ├── FLEXArgumentInputFontView.h │ │ │ │ ├── FLEXArgumentInputFontView.m │ │ │ │ ├── FLEXArgumentInputFontsPickerView.h │ │ │ │ ├── FLEXArgumentInputFontsPickerView.m │ │ │ │ ├── FLEXArgumentInputJSONObjectView.h │ │ │ │ ├── FLEXArgumentInputJSONObjectView.m │ │ │ │ ├── FLEXArgumentInputNotSupportedView.h │ │ │ │ ├── FLEXArgumentInputNotSupportedView.m │ │ │ │ ├── FLEXArgumentInputNumberView.h │ │ │ │ ├── FLEXArgumentInputNumberView.m │ │ │ │ ├── FLEXArgumentInputStringView.h │ │ │ │ ├── FLEXArgumentInputStringView.m │ │ │ │ ├── FLEXArgumentInputStructView.h │ │ │ │ ├── FLEXArgumentInputStructView.m │ │ │ │ ├── FLEXArgumentInputSwitchView.h │ │ │ │ ├── FLEXArgumentInputSwitchView.m │ │ │ │ ├── FLEXArgumentInputTextView.h │ │ │ │ ├── FLEXArgumentInputTextView.m │ │ │ │ ├── FLEXArgumentInputView.h │ │ │ │ ├── FLEXArgumentInputView.m │ │ │ │ ├── FLEXArgumentInputViewFactory.h │ │ │ │ └── FLEXArgumentInputViewFactory.m │ │ │ ├── FLEXDefaultEditorViewController.h │ │ │ ├── FLEXDefaultEditorViewController.m │ │ │ ├── FLEXFieldEditorView.h │ │ │ ├── FLEXFieldEditorView.m │ │ │ ├── FLEXFieldEditorViewController.h │ │ │ ├── FLEXFieldEditorViewController.m │ │ │ ├── FLEXIvarEditorViewController.h │ │ │ ├── FLEXIvarEditorViewController.m │ │ │ ├── FLEXMethodCallingViewController.h │ │ │ ├── FLEXMethodCallingViewController.m │ │ │ ├── FLEXPropertyEditorViewController.h │ │ │ └── FLEXPropertyEditorViewController.m │ │ ├── ExplorerInterface │ │ │ ├── FLEXExplorerViewController.h │ │ │ ├── FLEXExplorerViewController.m │ │ │ ├── FLEXWindow.h │ │ │ └── FLEXWindow.m │ │ ├── FLEX.h │ │ ├── FLEXManager.h │ │ ├── GlobalStateExplorers │ │ │ ├── DatabaseBrowser │ │ │ │ ├── FLEXDatabaseManager.h │ │ │ │ ├── FLEXMultiColumnTableView.h │ │ │ │ ├── FLEXMultiColumnTableView.m │ │ │ │ ├── FLEXRealmDatabaseManager.h │ │ │ │ ├── FLEXRealmDatabaseManager.m │ │ │ │ ├── FLEXRealmDefines.h │ │ │ │ ├── FLEXSQLiteDatabaseManager.h │ │ │ │ ├── FLEXSQLiteDatabaseManager.m │ │ │ │ ├── FLEXTableColumnHeader.h │ │ │ │ ├── FLEXTableColumnHeader.m │ │ │ │ ├── FLEXTableContentCell.h │ │ │ │ ├── FLEXTableContentCell.m │ │ │ │ ├── FLEXTableContentViewController.h │ │ │ │ ├── FLEXTableContentViewController.m │ │ │ │ ├── FLEXTableLeftCell.h │ │ │ │ ├── FLEXTableLeftCell.m │ │ │ │ ├── FLEXTableListViewController.h │ │ │ │ └── FLEXTableListViewController.m │ │ │ ├── FLEXClassesTableViewController.h │ │ │ ├── FLEXClassesTableViewController.m │ │ │ ├── FLEXCookiesTableViewController.h │ │ │ ├── FLEXCookiesTableViewController.m │ │ │ ├── FLEXFileBrowserFileOperationController.h │ │ │ ├── FLEXFileBrowserFileOperationController.m │ │ │ ├── FLEXFileBrowserSearchOperation.h │ │ │ ├── FLEXFileBrowserSearchOperation.m │ │ │ ├── FLEXFileBrowserTableViewController.h │ │ │ ├── FLEXFileBrowserTableViewController.m │ │ │ ├── FLEXGlobalsTableViewController.h │ │ │ ├── FLEXGlobalsTableViewController.m │ │ │ ├── FLEXInstancesTableViewController.h │ │ │ ├── FLEXInstancesTableViewController.m │ │ │ ├── FLEXLibrariesTableViewController.h │ │ │ ├── FLEXLibrariesTableViewController.m │ │ │ ├── FLEXLiveObjectsTableViewController.h │ │ │ ├── FLEXLiveObjectsTableViewController.m │ │ │ ├── FLEXWebViewController.h │ │ │ ├── FLEXWebViewController.m │ │ │ └── SystemLog │ │ │ │ ├── FLEXSystemLogMessage.h │ │ │ │ ├── FLEXSystemLogMessage.m │ │ │ │ ├── FLEXSystemLogTableViewCell.h │ │ │ │ ├── FLEXSystemLogTableViewCell.m │ │ │ │ ├── FLEXSystemLogTableViewController.h │ │ │ │ └── FLEXSystemLogTableViewController.m │ │ ├── Manager │ │ │ ├── FLEXManager+Private.h │ │ │ └── FLEXManager.m │ │ ├── Network │ │ │ ├── FLEXNetworkCurlLogger.h │ │ │ ├── FLEXNetworkCurlLogger.m │ │ │ ├── FLEXNetworkHistoryTableViewController.h │ │ │ ├── FLEXNetworkHistoryTableViewController.m │ │ │ ├── FLEXNetworkRecorder.h │ │ │ ├── FLEXNetworkRecorder.m │ │ │ ├── FLEXNetworkSettingsTableViewController.h │ │ │ ├── FLEXNetworkSettingsTableViewController.m │ │ │ ├── FLEXNetworkTransaction.h │ │ │ ├── FLEXNetworkTransaction.m │ │ │ ├── FLEXNetworkTransactionDetailTableViewController.h │ │ │ ├── FLEXNetworkTransactionDetailTableViewController.m │ │ │ ├── FLEXNetworkTransactionTableViewCell.h │ │ │ ├── FLEXNetworkTransactionTableViewCell.m │ │ │ └── PonyDebugger │ │ │ │ ├── FLEXNetworkObserver.h │ │ │ │ └── FLEXNetworkObserver.m │ │ ├── ObjectExplorers │ │ │ ├── FLEXArrayExplorerViewController.h │ │ │ ├── FLEXArrayExplorerViewController.m │ │ │ ├── FLEXClassExplorerViewController.h │ │ │ ├── FLEXClassExplorerViewController.m │ │ │ ├── FLEXDefaultsExplorerViewController.h │ │ │ ├── FLEXDefaultsExplorerViewController.m │ │ │ ├── FLEXDictionaryExplorerViewController.h │ │ │ ├── FLEXDictionaryExplorerViewController.m │ │ │ ├── FLEXGlobalsTableViewControllerEntry.h │ │ │ ├── FLEXGlobalsTableViewControllerEntry.m │ │ │ ├── FLEXImageExplorerViewController.h │ │ │ ├── FLEXImageExplorerViewController.m │ │ │ ├── FLEXLayerExplorerViewController.h │ │ │ ├── FLEXLayerExplorerViewController.m │ │ │ ├── FLEXObjectExplorerFactory.h │ │ │ ├── FLEXObjectExplorerFactory.m │ │ │ ├── FLEXObjectExplorerViewController.h │ │ │ ├── FLEXObjectExplorerViewController.m │ │ │ ├── FLEXSetExplorerViewController.h │ │ │ ├── FLEXSetExplorerViewController.m │ │ │ ├── FLEXViewControllerExplorerViewController.h │ │ │ ├── FLEXViewControllerExplorerViewController.m │ │ │ ├── FLEXViewExplorerViewController.h │ │ │ └── FLEXViewExplorerViewController.m │ │ ├── Toolbar │ │ │ ├── FLEXExplorerToolbar.h │ │ │ ├── FLEXExplorerToolbar.m │ │ │ ├── FLEXToolbarItem.h │ │ │ └── FLEXToolbarItem.m │ │ ├── Utility │ │ │ ├── FLEXHeapEnumerator.h │ │ │ ├── FLEXHeapEnumerator.m │ │ │ ├── FLEXKeyboardHelpViewController.h │ │ │ ├── FLEXKeyboardHelpViewController.m │ │ │ ├── FLEXKeyboardShortcutManager.h │ │ │ ├── FLEXKeyboardShortcutManager.m │ │ │ ├── FLEXMultilineTableViewCell.h │ │ │ ├── FLEXMultilineTableViewCell.m │ │ │ ├── FLEXResources.h │ │ │ ├── FLEXResources.m │ │ │ ├── FLEXRuntimeUtility.h │ │ │ ├── FLEXRuntimeUtility.m │ │ │ ├── FLEXUtility.h │ │ │ └── FLEXUtility.m │ │ └── ViewHierarchy │ │ │ ├── FLEXHierarchyTableViewCell.h │ │ │ ├── FLEXHierarchyTableViewCell.m │ │ │ ├── FLEXHierarchyTableViewController.h │ │ │ ├── FLEXHierarchyTableViewController.m │ │ │ ├── FLEXImagePreviewViewController.h │ │ │ └── FLEXImagePreviewViewController.m │ ├── LICENSE │ └── README.md │ ├── GPUImage │ ├── License.txt │ ├── README.md │ └── framework │ │ ├── Resources │ │ ├── lookup.png │ │ ├── lookup_amatorka.png │ │ ├── lookup_miss_etikate.png │ │ ├── lookup_soft_elegance_1.png │ │ └── lookup_soft_elegance_2.png │ │ └── Source │ │ ├── GLProgram.h │ │ ├── GLProgram.m │ │ ├── GPUImage.h │ │ ├── GPUImage3x3ConvolutionFilter.h │ │ ├── GPUImage3x3ConvolutionFilter.m │ │ ├── GPUImage3x3TextureSamplingFilter.h │ │ ├── GPUImage3x3TextureSamplingFilter.m │ │ ├── GPUImageAdaptiveThresholdFilter.h │ │ ├── GPUImageAdaptiveThresholdFilter.m │ │ ├── GPUImageAddBlendFilter.h │ │ ├── GPUImageAddBlendFilter.m │ │ ├── GPUImageAlphaBlendFilter.h │ │ ├── GPUImageAlphaBlendFilter.m │ │ ├── GPUImageAmatorkaFilter.h │ │ ├── GPUImageAmatorkaFilter.m │ │ ├── GPUImageAverageColor.h │ │ ├── GPUImageAverageColor.m │ │ ├── GPUImageAverageLuminanceThresholdFilter.h │ │ ├── GPUImageAverageLuminanceThresholdFilter.m │ │ ├── GPUImageBilateralFilter.h │ │ ├── GPUImageBilateralFilter.m │ │ ├── GPUImageBoxBlurFilter.h │ │ ├── GPUImageBoxBlurFilter.m │ │ ├── GPUImageBrightnessFilter.h │ │ ├── GPUImageBrightnessFilter.m │ │ ├── GPUImageBuffer.h │ │ ├── GPUImageBuffer.m │ │ ├── GPUImageBulgeDistortionFilter.h │ │ ├── GPUImageBulgeDistortionFilter.m │ │ ├── GPUImageCGAColorspaceFilter.h │ │ ├── GPUImageCGAColorspaceFilter.m │ │ ├── GPUImageCannyEdgeDetectionFilter.h │ │ ├── GPUImageCannyEdgeDetectionFilter.m │ │ ├── GPUImageChromaKeyBlendFilter.h │ │ ├── GPUImageChromaKeyBlendFilter.m │ │ ├── GPUImageChromaKeyFilter.h │ │ ├── GPUImageChromaKeyFilter.m │ │ ├── GPUImageClosingFilter.h │ │ ├── GPUImageClosingFilter.m │ │ ├── GPUImageColorBlendFilter.h │ │ ├── GPUImageColorBlendFilter.m │ │ ├── GPUImageColorBurnBlendFilter.h │ │ ├── GPUImageColorBurnBlendFilter.m │ │ ├── GPUImageColorDodgeBlendFilter.h │ │ ├── GPUImageColorDodgeBlendFilter.m │ │ ├── GPUImageColorInvertFilter.h │ │ ├── GPUImageColorInvertFilter.m │ │ ├── GPUImageColorMatrixFilter.h │ │ ├── GPUImageColorMatrixFilter.m │ │ ├── GPUImageColorPackingFilter.h │ │ ├── GPUImageColorPackingFilter.m │ │ ├── GPUImageContrastFilter.h │ │ ├── GPUImageContrastFilter.m │ │ ├── GPUImageCropFilter.h │ │ ├── GPUImageCropFilter.m │ │ ├── GPUImageCrosshairGenerator.h │ │ ├── GPUImageCrosshairGenerator.m │ │ ├── GPUImageCrosshatchFilter.h │ │ ├── GPUImageCrosshatchFilter.m │ │ ├── GPUImageDarkenBlendFilter.h │ │ ├── GPUImageDarkenBlendFilter.m │ │ ├── GPUImageDifferenceBlendFilter.h │ │ ├── GPUImageDifferenceBlendFilter.m │ │ ├── GPUImageDilationFilter.h │ │ ├── GPUImageDilationFilter.m │ │ ├── GPUImageDirectionalNonMaximumSuppressionFilter.h │ │ ├── GPUImageDirectionalNonMaximumSuppressionFilter.m │ │ ├── GPUImageDirectionalSobelEdgeDetectionFilter.h │ │ ├── GPUImageDirectionalSobelEdgeDetectionFilter.m │ │ ├── GPUImageDissolveBlendFilter.h │ │ ├── GPUImageDissolveBlendFilter.m │ │ ├── GPUImageDivideBlendFilter.h │ │ ├── GPUImageDivideBlendFilter.m │ │ ├── GPUImageEmbossFilter.h │ │ ├── GPUImageEmbossFilter.m │ │ ├── GPUImageErosionFilter.h │ │ ├── GPUImageErosionFilter.m │ │ ├── GPUImageExclusionBlendFilter.h │ │ ├── GPUImageExclusionBlendFilter.m │ │ ├── GPUImageExposureFilter.h │ │ ├── GPUImageExposureFilter.m │ │ ├── GPUImageFASTCornerDetectionFilter.h │ │ ├── GPUImageFASTCornerDetectionFilter.m │ │ ├── GPUImageFalseColorFilter.h │ │ ├── GPUImageFalseColorFilter.m │ │ ├── GPUImageFilter.h │ │ ├── GPUImageFilter.m │ │ ├── GPUImageFilterGroup.h │ │ ├── GPUImageFilterGroup.m │ │ ├── GPUImageFilterPipeline.h │ │ ├── GPUImageFilterPipeline.m │ │ ├── GPUImageFramebuffer.h │ │ ├── GPUImageFramebuffer.m │ │ ├── GPUImageFramebufferCache.h │ │ ├── GPUImageFramebufferCache.m │ │ ├── GPUImageGammaFilter.h │ │ ├── GPUImageGammaFilter.m │ │ ├── GPUImageGaussianBlurFilter.h │ │ ├── GPUImageGaussianBlurFilter.m │ │ ├── GPUImageGaussianBlurPositionFilter.h │ │ ├── GPUImageGaussianBlurPositionFilter.m │ │ ├── GPUImageGaussianSelectiveBlurFilter.h │ │ ├── GPUImageGaussianSelectiveBlurFilter.m │ │ ├── GPUImageGlassSphereFilter.h │ │ ├── GPUImageGlassSphereFilter.m │ │ ├── GPUImageGrayscaleFilter.h │ │ ├── GPUImageGrayscaleFilter.m │ │ ├── GPUImageHSBFilter.h │ │ ├── GPUImageHSBFilter.m │ │ ├── GPUImageHalftoneFilter.h │ │ ├── GPUImageHalftoneFilter.m │ │ ├── GPUImageHardLightBlendFilter.h │ │ ├── GPUImageHardLightBlendFilter.m │ │ ├── GPUImageHarrisCornerDetectionFilter.h │ │ ├── GPUImageHarrisCornerDetectionFilter.m │ │ ├── GPUImageHazeFilter.h │ │ ├── GPUImageHazeFilter.m │ │ ├── GPUImageHighPassFilter.h │ │ ├── GPUImageHighPassFilter.m │ │ ├── GPUImageHighlightShadowFilter.h │ │ ├── GPUImageHighlightShadowFilter.m │ │ ├── GPUImageHistogramEqualizationFilter.h │ │ ├── GPUImageHistogramEqualizationFilter.m │ │ ├── GPUImageHistogramFilter.h │ │ ├── GPUImageHistogramFilter.m │ │ ├── GPUImageHistogramGenerator.h │ │ ├── GPUImageHistogramGenerator.m │ │ ├── GPUImageHoughTransformLineDetector.h │ │ ├── GPUImageHoughTransformLineDetector.m │ │ ├── GPUImageHueBlendFilter.h │ │ ├── GPUImageHueBlendFilter.m │ │ ├── GPUImageHueFilter.h │ │ ├── GPUImageHueFilter.m │ │ ├── GPUImageJFAVoronoiFilter.h │ │ ├── GPUImageJFAVoronoiFilter.m │ │ ├── GPUImageKuwaharaFilter.h │ │ ├── GPUImageKuwaharaFilter.m │ │ ├── GPUImageKuwaharaRadius3Filter.h │ │ ├── GPUImageKuwaharaRadius3Filter.m │ │ ├── GPUImageLanczosResamplingFilter.h │ │ ├── GPUImageLanczosResamplingFilter.m │ │ ├── GPUImageLaplacianFilter.h │ │ ├── GPUImageLaplacianFilter.m │ │ ├── GPUImageLevelsFilter.h │ │ ├── GPUImageLevelsFilter.m │ │ ├── GPUImageLightenBlendFilter.h │ │ ├── GPUImageLightenBlendFilter.m │ │ ├── GPUImageLineGenerator.h │ │ ├── GPUImageLineGenerator.m │ │ ├── GPUImageLinearBurnBlendFilter.h │ │ ├── GPUImageLinearBurnBlendFilter.m │ │ ├── GPUImageLocalBinaryPatternFilter.h │ │ ├── GPUImageLocalBinaryPatternFilter.m │ │ ├── GPUImageLookupFilter.h │ │ ├── GPUImageLookupFilter.m │ │ ├── GPUImageLowPassFilter.h │ │ ├── GPUImageLowPassFilter.m │ │ ├── GPUImageLuminanceRangeFilter.h │ │ ├── GPUImageLuminanceRangeFilter.m │ │ ├── GPUImageLuminanceThresholdFilter.h │ │ ├── GPUImageLuminanceThresholdFilter.m │ │ ├── GPUImageLuminosity.h │ │ ├── GPUImageLuminosity.m │ │ ├── GPUImageLuminosityBlendFilter.h │ │ ├── GPUImageLuminosityBlendFilter.m │ │ ├── GPUImageMaskFilter.h │ │ ├── GPUImageMaskFilter.m │ │ ├── GPUImageMedianFilter.h │ │ ├── GPUImageMedianFilter.m │ │ ├── GPUImageMissEtikateFilter.h │ │ ├── GPUImageMissEtikateFilter.m │ │ ├── GPUImageMonochromeFilter.h │ │ ├── GPUImageMonochromeFilter.m │ │ ├── GPUImageMosaicFilter.h │ │ ├── GPUImageMosaicFilter.m │ │ ├── GPUImageMotionBlurFilter.h │ │ ├── GPUImageMotionBlurFilter.m │ │ ├── GPUImageMotionDetector.h │ │ ├── GPUImageMotionDetector.m │ │ ├── GPUImageMovie.h │ │ ├── GPUImageMovie.m │ │ ├── GPUImageMovieComposition.h │ │ ├── GPUImageMovieComposition.m │ │ ├── GPUImageMultiplyBlendFilter.h │ │ ├── GPUImageMultiplyBlendFilter.m │ │ ├── GPUImageNobleCornerDetectionFilter.h │ │ ├── GPUImageNobleCornerDetectionFilter.m │ │ ├── GPUImageNonMaximumSuppressionFilter.h │ │ ├── GPUImageNonMaximumSuppressionFilter.m │ │ ├── GPUImageNormalBlendFilter.h │ │ ├── GPUImageNormalBlendFilter.m │ │ ├── GPUImageOpacityFilter.h │ │ ├── GPUImageOpacityFilter.m │ │ ├── GPUImageOpeningFilter.h │ │ ├── GPUImageOpeningFilter.m │ │ ├── GPUImageOutput.h │ │ ├── GPUImageOutput.m │ │ ├── GPUImageOverlayBlendFilter.h │ │ ├── GPUImageOverlayBlendFilter.m │ │ ├── GPUImageParallelCoordinateLineTransformFilter.h │ │ ├── GPUImageParallelCoordinateLineTransformFilter.m │ │ ├── GPUImagePerlinNoiseFilter.h │ │ ├── GPUImagePerlinNoiseFilter.m │ │ ├── GPUImagePinchDistortionFilter.h │ │ ├── GPUImagePinchDistortionFilter.m │ │ ├── GPUImagePixellateFilter.h │ │ ├── GPUImagePixellateFilter.m │ │ ├── GPUImagePixellatePositionFilter.h │ │ ├── GPUImagePixellatePositionFilter.m │ │ ├── GPUImagePoissonBlendFilter.h │ │ ├── GPUImagePoissonBlendFilter.m │ │ ├── GPUImagePolarPixellateFilter.h │ │ ├── GPUImagePolarPixellateFilter.m │ │ ├── GPUImagePolkaDotFilter.h │ │ ├── GPUImagePolkaDotFilter.m │ │ ├── GPUImagePosterizeFilter.h │ │ ├── GPUImagePosterizeFilter.m │ │ ├── GPUImagePrewittEdgeDetectionFilter.h │ │ ├── GPUImagePrewittEdgeDetectionFilter.m │ │ ├── GPUImageRGBClosingFilter.h │ │ ├── GPUImageRGBClosingFilter.m │ │ ├── GPUImageRGBDilationFilter.h │ │ ├── GPUImageRGBDilationFilter.m │ │ ├── GPUImageRGBErosionFilter.h │ │ ├── GPUImageRGBErosionFilter.m │ │ ├── GPUImageRGBFilter.h │ │ ├── GPUImageRGBFilter.m │ │ ├── GPUImageRGBOpeningFilter.h │ │ ├── GPUImageRGBOpeningFilter.m │ │ ├── GPUImageRawDataInput.h │ │ ├── GPUImageRawDataInput.m │ │ ├── GPUImageRawDataOutput.h │ │ ├── GPUImageRawDataOutput.m │ │ ├── GPUImageSaturationBlendFilter.h │ │ ├── GPUImageSaturationBlendFilter.m │ │ ├── GPUImageSaturationFilter.h │ │ ├── GPUImageSaturationFilter.m │ │ ├── GPUImageScreenBlendFilter.h │ │ ├── GPUImageScreenBlendFilter.m │ │ ├── GPUImageSepiaFilter.h │ │ ├── GPUImageSepiaFilter.m │ │ ├── GPUImageSharpenFilter.h │ │ ├── GPUImageSharpenFilter.m │ │ ├── GPUImageShiTomasiFeatureDetectionFilter.h │ │ ├── GPUImageShiTomasiFeatureDetectionFilter.m │ │ ├── GPUImageSingleComponentGaussianBlurFilter.h │ │ ├── GPUImageSingleComponentGaussianBlurFilter.m │ │ ├── GPUImageSketchFilter.h │ │ ├── GPUImageSketchFilter.m │ │ ├── GPUImageSmoothToonFilter.h │ │ ├── GPUImageSmoothToonFilter.m │ │ ├── GPUImageSobelEdgeDetectionFilter.h │ │ ├── GPUImageSobelEdgeDetectionFilter.m │ │ ├── GPUImageSoftEleganceFilter.h │ │ ├── GPUImageSoftEleganceFilter.m │ │ ├── GPUImageSoftLightBlendFilter.h │ │ ├── GPUImageSoftLightBlendFilter.m │ │ ├── GPUImageSolidColorGenerator.h │ │ ├── GPUImageSolidColorGenerator.m │ │ ├── GPUImageSourceOverBlendFilter.h │ │ ├── GPUImageSourceOverBlendFilter.m │ │ ├── GPUImageSphereRefractionFilter.h │ │ ├── GPUImageSphereRefractionFilter.m │ │ ├── GPUImageStillCamera.h │ │ ├── GPUImageStillCamera.m │ │ ├── GPUImageStretchDistortionFilter.h │ │ ├── GPUImageStretchDistortionFilter.m │ │ ├── GPUImageSubtractBlendFilter.h │ │ ├── GPUImageSubtractBlendFilter.m │ │ ├── GPUImageSwirlFilter.h │ │ ├── GPUImageSwirlFilter.m │ │ ├── GPUImageTextureInput.h │ │ ├── GPUImageTextureInput.m │ │ ├── GPUImageTextureOutput.h │ │ ├── GPUImageTextureOutput.m │ │ ├── GPUImageThreeInputFilter.h │ │ ├── GPUImageThreeInputFilter.m │ │ ├── GPUImageThresholdEdgeDetectionFilter.h │ │ ├── GPUImageThresholdEdgeDetectionFilter.m │ │ ├── GPUImageThresholdSketchFilter.h │ │ ├── GPUImageThresholdSketchFilter.m │ │ ├── GPUImageThresholdedNonMaximumSuppressionFilter.h │ │ ├── GPUImageThresholdedNonMaximumSuppressionFilter.m │ │ ├── GPUImageTiltShiftFilter.h │ │ ├── GPUImageTiltShiftFilter.m │ │ ├── GPUImageToneCurveFilter.h │ │ ├── GPUImageToneCurveFilter.m │ │ ├── GPUImageToonFilter.h │ │ ├── GPUImageToonFilter.m │ │ ├── GPUImageTransformFilter.h │ │ ├── GPUImageTransformFilter.m │ │ ├── GPUImageTwoInputCrossTextureSamplingFilter.h │ │ ├── GPUImageTwoInputCrossTextureSamplingFilter.m │ │ ├── GPUImageTwoInputFilter.h │ │ ├── GPUImageTwoInputFilter.m │ │ ├── GPUImageTwoPassFilter.h │ │ ├── GPUImageTwoPassFilter.m │ │ ├── GPUImageTwoPassTextureSamplingFilter.h │ │ ├── GPUImageTwoPassTextureSamplingFilter.m │ │ ├── GPUImageUIElement.h │ │ ├── GPUImageUIElement.m │ │ ├── GPUImageUnsharpMaskFilter.h │ │ ├── GPUImageUnsharpMaskFilter.m │ │ ├── GPUImageVideoCamera.h │ │ ├── GPUImageVideoCamera.m │ │ ├── GPUImageVignetteFilter.h │ │ ├── GPUImageVignetteFilter.m │ │ ├── GPUImageVoronoiConsumerFilter.h │ │ ├── GPUImageVoronoiConsumerFilter.m │ │ ├── GPUImageWeakPixelInclusionFilter.h │ │ ├── GPUImageWeakPixelInclusionFilter.m │ │ ├── GPUImageWhiteBalanceFilter.h │ │ ├── GPUImageWhiteBalanceFilter.m │ │ ├── GPUImageXYDerivativeFilter.h │ │ ├── GPUImageXYDerivativeFilter.m │ │ ├── GPUImageZoomBlurFilter.h │ │ ├── GPUImageZoomBlurFilter.m │ │ ├── GPUImageiOSBlurFilter.h │ │ ├── GPUImageiOSBlurFilter.m │ │ └── iOS │ │ ├── Framework │ │ └── GPUImageFramework.h │ │ ├── GPUImageContext.h │ │ ├── GPUImageContext.m │ │ ├── GPUImageMovieWriter.h │ │ ├── GPUImageMovieWriter.m │ │ ├── GPUImagePicture+TextureSubimage.h │ │ ├── GPUImagePicture+TextureSubimage.m │ │ ├── GPUImagePicture.h │ │ ├── GPUImagePicture.m │ │ ├── GPUImageView.h │ │ └── GPUImageView.m │ ├── Headers │ ├── Private │ │ ├── FLEX │ │ │ ├── FLEX.h │ │ │ ├── FLEXArgumentInputColorView.h │ │ │ ├── FLEXArgumentInputDateView.h │ │ │ ├── FLEXArgumentInputFontView.h │ │ │ ├── FLEXArgumentInputFontsPickerView.h │ │ │ ├── FLEXArgumentInputJSONObjectView.h │ │ │ ├── FLEXArgumentInputNotSupportedView.h │ │ │ ├── FLEXArgumentInputNumberView.h │ │ │ ├── FLEXArgumentInputStringView.h │ │ │ ├── FLEXArgumentInputStructView.h │ │ │ ├── FLEXArgumentInputSwitchView.h │ │ │ ├── FLEXArgumentInputTextView.h │ │ │ ├── FLEXArgumentInputView.h │ │ │ ├── FLEXArgumentInputViewFactory.h │ │ │ ├── FLEXArrayExplorerViewController.h │ │ │ ├── FLEXClassExplorerViewController.h │ │ │ ├── FLEXClassesTableViewController.h │ │ │ ├── FLEXCookiesTableViewController.h │ │ │ ├── FLEXDatabaseManager.h │ │ │ ├── FLEXDefaultEditorViewController.h │ │ │ ├── FLEXDefaultsExplorerViewController.h │ │ │ ├── FLEXDictionaryExplorerViewController.h │ │ │ ├── FLEXExplorerToolbar.h │ │ │ ├── FLEXExplorerViewController.h │ │ │ ├── FLEXFieldEditorView.h │ │ │ ├── FLEXFieldEditorViewController.h │ │ │ ├── FLEXFileBrowserFileOperationController.h │ │ │ ├── FLEXFileBrowserSearchOperation.h │ │ │ ├── FLEXFileBrowserTableViewController.h │ │ │ ├── FLEXGlobalsTableViewController.h │ │ │ ├── FLEXGlobalsTableViewControllerEntry.h │ │ │ ├── FLEXHeapEnumerator.h │ │ │ ├── FLEXHierarchyTableViewCell.h │ │ │ ├── FLEXHierarchyTableViewController.h │ │ │ ├── FLEXImageExplorerViewController.h │ │ │ ├── FLEXImagePreviewViewController.h │ │ │ ├── FLEXInstancesTableViewController.h │ │ │ ├── FLEXIvarEditorViewController.h │ │ │ ├── FLEXKeyboardHelpViewController.h │ │ │ ├── FLEXKeyboardShortcutManager.h │ │ │ ├── FLEXLayerExplorerViewController.h │ │ │ ├── FLEXLibrariesTableViewController.h │ │ │ ├── FLEXLiveObjectsTableViewController.h │ │ │ ├── FLEXManager+Private.h │ │ │ ├── FLEXManager.h │ │ │ ├── FLEXMethodCallingViewController.h │ │ │ ├── FLEXMultiColumnTableView.h │ │ │ ├── FLEXMultilineTableViewCell.h │ │ │ ├── FLEXNetworkCurlLogger.h │ │ │ ├── FLEXNetworkHistoryTableViewController.h │ │ │ ├── FLEXNetworkObserver.h │ │ │ ├── FLEXNetworkRecorder.h │ │ │ ├── FLEXNetworkSettingsTableViewController.h │ │ │ ├── FLEXNetworkTransaction.h │ │ │ ├── FLEXNetworkTransactionDetailTableViewController.h │ │ │ ├── FLEXNetworkTransactionTableViewCell.h │ │ │ ├── FLEXObjectExplorerFactory.h │ │ │ ├── FLEXObjectExplorerViewController.h │ │ │ ├── FLEXPropertyEditorViewController.h │ │ │ ├── FLEXRealmDatabaseManager.h │ │ │ ├── FLEXRealmDefines.h │ │ │ ├── FLEXResources.h │ │ │ ├── FLEXRuntimeUtility.h │ │ │ ├── FLEXSQLiteDatabaseManager.h │ │ │ ├── FLEXSetExplorerViewController.h │ │ │ ├── FLEXSystemLogMessage.h │ │ │ ├── FLEXSystemLogTableViewCell.h │ │ │ ├── FLEXSystemLogTableViewController.h │ │ │ ├── FLEXTableColumnHeader.h │ │ │ ├── FLEXTableContentCell.h │ │ │ ├── FLEXTableContentViewController.h │ │ │ ├── FLEXTableLeftCell.h │ │ │ ├── FLEXTableListViewController.h │ │ │ ├── FLEXToolbarItem.h │ │ │ ├── FLEXUtility.h │ │ │ ├── FLEXViewControllerExplorerViewController.h │ │ │ ├── FLEXViewExplorerViewController.h │ │ │ ├── FLEXWebViewController.h │ │ │ └── FLEXWindow.h │ │ ├── GPUImage │ │ │ ├── GLProgram.h │ │ │ ├── GPUImage.h │ │ │ ├── GPUImage3x3ConvolutionFilter.h │ │ │ ├── GPUImage3x3TextureSamplingFilter.h │ │ │ ├── GPUImageAdaptiveThresholdFilter.h │ │ │ ├── GPUImageAddBlendFilter.h │ │ │ ├── GPUImageAlphaBlendFilter.h │ │ │ ├── GPUImageAmatorkaFilter.h │ │ │ ├── GPUImageAverageColor.h │ │ │ ├── GPUImageAverageLuminanceThresholdFilter.h │ │ │ ├── GPUImageBilateralFilter.h │ │ │ ├── GPUImageBoxBlurFilter.h │ │ │ ├── GPUImageBrightnessFilter.h │ │ │ ├── GPUImageBuffer.h │ │ │ ├── GPUImageBulgeDistortionFilter.h │ │ │ ├── GPUImageCGAColorspaceFilter.h │ │ │ ├── GPUImageCannyEdgeDetectionFilter.h │ │ │ ├── GPUImageChromaKeyBlendFilter.h │ │ │ ├── GPUImageChromaKeyFilter.h │ │ │ ├── GPUImageClosingFilter.h │ │ │ ├── GPUImageColorBlendFilter.h │ │ │ ├── GPUImageColorBurnBlendFilter.h │ │ │ ├── GPUImageColorDodgeBlendFilter.h │ │ │ ├── GPUImageColorInvertFilter.h │ │ │ ├── GPUImageColorMatrixFilter.h │ │ │ ├── GPUImageColorPackingFilter.h │ │ │ ├── GPUImageContext.h │ │ │ ├── GPUImageContrastFilter.h │ │ │ ├── GPUImageCropFilter.h │ │ │ ├── GPUImageCrosshairGenerator.h │ │ │ ├── GPUImageCrosshatchFilter.h │ │ │ ├── GPUImageDarkenBlendFilter.h │ │ │ ├── GPUImageDifferenceBlendFilter.h │ │ │ ├── GPUImageDilationFilter.h │ │ │ ├── GPUImageDirectionalNonMaximumSuppressionFilter.h │ │ │ ├── GPUImageDirectionalSobelEdgeDetectionFilter.h │ │ │ ├── GPUImageDissolveBlendFilter.h │ │ │ ├── GPUImageDivideBlendFilter.h │ │ │ ├── GPUImageEmbossFilter.h │ │ │ ├── GPUImageErosionFilter.h │ │ │ ├── GPUImageExclusionBlendFilter.h │ │ │ ├── GPUImageExposureFilter.h │ │ │ ├── GPUImageFASTCornerDetectionFilter.h │ │ │ ├── GPUImageFalseColorFilter.h │ │ │ ├── GPUImageFilter.h │ │ │ ├── GPUImageFilterGroup.h │ │ │ ├── GPUImageFilterPipeline.h │ │ │ ├── GPUImageFramebuffer.h │ │ │ ├── GPUImageFramebufferCache.h │ │ │ ├── GPUImageFramework.h │ │ │ ├── GPUImageGammaFilter.h │ │ │ ├── GPUImageGaussianBlurFilter.h │ │ │ ├── GPUImageGaussianBlurPositionFilter.h │ │ │ ├── GPUImageGaussianSelectiveBlurFilter.h │ │ │ ├── GPUImageGlassSphereFilter.h │ │ │ ├── GPUImageGrayscaleFilter.h │ │ │ ├── GPUImageHSBFilter.h │ │ │ ├── GPUImageHalftoneFilter.h │ │ │ ├── GPUImageHardLightBlendFilter.h │ │ │ ├── GPUImageHarrisCornerDetectionFilter.h │ │ │ ├── GPUImageHazeFilter.h │ │ │ ├── GPUImageHighPassFilter.h │ │ │ ├── GPUImageHighlightShadowFilter.h │ │ │ ├── GPUImageHistogramEqualizationFilter.h │ │ │ ├── GPUImageHistogramFilter.h │ │ │ ├── GPUImageHistogramGenerator.h │ │ │ ├── GPUImageHoughTransformLineDetector.h │ │ │ ├── GPUImageHueBlendFilter.h │ │ │ ├── GPUImageHueFilter.h │ │ │ ├── GPUImageJFAVoronoiFilter.h │ │ │ ├── GPUImageKuwaharaFilter.h │ │ │ ├── GPUImageKuwaharaRadius3Filter.h │ │ │ ├── GPUImageLanczosResamplingFilter.h │ │ │ ├── GPUImageLaplacianFilter.h │ │ │ ├── GPUImageLevelsFilter.h │ │ │ ├── GPUImageLightenBlendFilter.h │ │ │ ├── GPUImageLineGenerator.h │ │ │ ├── GPUImageLinearBurnBlendFilter.h │ │ │ ├── GPUImageLocalBinaryPatternFilter.h │ │ │ ├── GPUImageLookupFilter.h │ │ │ ├── GPUImageLowPassFilter.h │ │ │ ├── GPUImageLuminanceRangeFilter.h │ │ │ ├── GPUImageLuminanceThresholdFilter.h │ │ │ ├── GPUImageLuminosity.h │ │ │ ├── GPUImageLuminosityBlendFilter.h │ │ │ ├── GPUImageMaskFilter.h │ │ │ ├── GPUImageMedianFilter.h │ │ │ ├── GPUImageMissEtikateFilter.h │ │ │ ├── GPUImageMonochromeFilter.h │ │ │ ├── GPUImageMosaicFilter.h │ │ │ ├── GPUImageMotionBlurFilter.h │ │ │ ├── GPUImageMotionDetector.h │ │ │ ├── GPUImageMovie.h │ │ │ ├── GPUImageMovieComposition.h │ │ │ ├── GPUImageMovieWriter.h │ │ │ ├── GPUImageMultiplyBlendFilter.h │ │ │ ├── GPUImageNobleCornerDetectionFilter.h │ │ │ ├── GPUImageNonMaximumSuppressionFilter.h │ │ │ ├── GPUImageNormalBlendFilter.h │ │ │ ├── GPUImageOpacityFilter.h │ │ │ ├── GPUImageOpeningFilter.h │ │ │ ├── GPUImageOutput.h │ │ │ ├── GPUImageOverlayBlendFilter.h │ │ │ ├── GPUImageParallelCoordinateLineTransformFilter.h │ │ │ ├── GPUImagePerlinNoiseFilter.h │ │ │ ├── GPUImagePicture+TextureSubimage.h │ │ │ ├── GPUImagePicture.h │ │ │ ├── GPUImagePinchDistortionFilter.h │ │ │ ├── GPUImagePixellateFilter.h │ │ │ ├── GPUImagePixellatePositionFilter.h │ │ │ ├── GPUImagePoissonBlendFilter.h │ │ │ ├── GPUImagePolarPixellateFilter.h │ │ │ ├── GPUImagePolkaDotFilter.h │ │ │ ├── GPUImagePosterizeFilter.h │ │ │ ├── GPUImagePrewittEdgeDetectionFilter.h │ │ │ ├── GPUImageRGBClosingFilter.h │ │ │ ├── GPUImageRGBDilationFilter.h │ │ │ ├── GPUImageRGBErosionFilter.h │ │ │ ├── GPUImageRGBFilter.h │ │ │ ├── GPUImageRGBOpeningFilter.h │ │ │ ├── GPUImageRawDataInput.h │ │ │ ├── GPUImageRawDataOutput.h │ │ │ ├── GPUImageSaturationBlendFilter.h │ │ │ ├── GPUImageSaturationFilter.h │ │ │ ├── GPUImageScreenBlendFilter.h │ │ │ ├── GPUImageSepiaFilter.h │ │ │ ├── GPUImageSharpenFilter.h │ │ │ ├── GPUImageShiTomasiFeatureDetectionFilter.h │ │ │ ├── GPUImageSingleComponentGaussianBlurFilter.h │ │ │ ├── GPUImageSketchFilter.h │ │ │ ├── GPUImageSmoothToonFilter.h │ │ │ ├── GPUImageSobelEdgeDetectionFilter.h │ │ │ ├── GPUImageSoftEleganceFilter.h │ │ │ ├── GPUImageSoftLightBlendFilter.h │ │ │ ├── GPUImageSolidColorGenerator.h │ │ │ ├── GPUImageSourceOverBlendFilter.h │ │ │ ├── GPUImageSphereRefractionFilter.h │ │ │ ├── GPUImageStillCamera.h │ │ │ ├── GPUImageStretchDistortionFilter.h │ │ │ ├── GPUImageSubtractBlendFilter.h │ │ │ ├── GPUImageSwirlFilter.h │ │ │ ├── GPUImageTextureInput.h │ │ │ ├── GPUImageTextureOutput.h │ │ │ ├── GPUImageThreeInputFilter.h │ │ │ ├── GPUImageThresholdEdgeDetectionFilter.h │ │ │ ├── GPUImageThresholdSketchFilter.h │ │ │ ├── GPUImageThresholdedNonMaximumSuppressionFilter.h │ │ │ ├── GPUImageTiltShiftFilter.h │ │ │ ├── GPUImageToneCurveFilter.h │ │ │ ├── GPUImageToonFilter.h │ │ │ ├── GPUImageTransformFilter.h │ │ │ ├── GPUImageTwoInputCrossTextureSamplingFilter.h │ │ │ ├── GPUImageTwoInputFilter.h │ │ │ ├── GPUImageTwoPassFilter.h │ │ │ ├── GPUImageTwoPassTextureSamplingFilter.h │ │ │ ├── GPUImageUIElement.h │ │ │ ├── GPUImageUnsharpMaskFilter.h │ │ │ ├── GPUImageVideoCamera.h │ │ │ ├── GPUImageView.h │ │ │ ├── GPUImageVignetteFilter.h │ │ │ ├── GPUImageVoronoiConsumerFilter.h │ │ │ ├── GPUImageWeakPixelInclusionFilter.h │ │ │ ├── GPUImageWhiteBalanceFilter.h │ │ │ ├── GPUImageXYDerivativeFilter.h │ │ │ ├── GPUImageZoomBlurFilter.h │ │ │ └── GPUImageiOSBlurFilter.h │ │ └── SDWebImage │ │ │ ├── NSButton+WebCache.h │ │ │ ├── NSData+ImageContentType.h │ │ │ ├── NSImage+WebCache.h │ │ │ ├── SDAnimatedImageRep.h │ │ │ ├── SDImageCache.h │ │ │ ├── SDImageCacheConfig.h │ │ │ ├── SDWebImageCoder.h │ │ │ ├── SDWebImageCoderHelper.h │ │ │ ├── SDWebImageCodersManager.h │ │ │ ├── SDWebImageCompat.h │ │ │ ├── SDWebImageDownloader.h │ │ │ ├── SDWebImageDownloaderOperation.h │ │ │ ├── SDWebImageFrame.h │ │ │ ├── SDWebImageGIFCoder.h │ │ │ ├── SDWebImageImageIOCoder.h │ │ │ ├── SDWebImageManager.h │ │ │ ├── SDWebImageOperation.h │ │ │ ├── SDWebImagePrefetcher.h │ │ │ ├── SDWebImageTransition.h │ │ │ ├── UIButton+WebCache.h │ │ │ ├── UIImage+ForceDecode.h │ │ │ ├── UIImage+GIF.h │ │ │ ├── UIImage+MultiFormat.h │ │ │ ├── UIImageView+HighlightedWebCache.h │ │ │ ├── UIImageView+WebCache.h │ │ │ ├── UIView+WebCache.h │ │ │ └── UIView+WebCacheOperation.h │ └── Public │ │ ├── FLEX │ │ ├── FLEX.h │ │ └── FLEXManager.h │ │ ├── GPUImage │ │ ├── GLProgram.h │ │ ├── GPUImage.h │ │ ├── GPUImage3x3ConvolutionFilter.h │ │ ├── GPUImage3x3TextureSamplingFilter.h │ │ ├── GPUImageAdaptiveThresholdFilter.h │ │ ├── GPUImageAddBlendFilter.h │ │ ├── GPUImageAlphaBlendFilter.h │ │ ├── GPUImageAmatorkaFilter.h │ │ ├── GPUImageAverageColor.h │ │ ├── GPUImageAverageLuminanceThresholdFilter.h │ │ ├── GPUImageBilateralFilter.h │ │ ├── GPUImageBoxBlurFilter.h │ │ ├── GPUImageBrightnessFilter.h │ │ ├── GPUImageBuffer.h │ │ ├── GPUImageBulgeDistortionFilter.h │ │ ├── GPUImageCGAColorspaceFilter.h │ │ ├── GPUImageCannyEdgeDetectionFilter.h │ │ ├── GPUImageChromaKeyBlendFilter.h │ │ ├── GPUImageChromaKeyFilter.h │ │ ├── GPUImageClosingFilter.h │ │ ├── GPUImageColorBlendFilter.h │ │ ├── GPUImageColorBurnBlendFilter.h │ │ ├── GPUImageColorDodgeBlendFilter.h │ │ ├── GPUImageColorInvertFilter.h │ │ ├── GPUImageColorMatrixFilter.h │ │ ├── GPUImageColorPackingFilter.h │ │ ├── GPUImageContext.h │ │ ├── GPUImageContrastFilter.h │ │ ├── GPUImageCropFilter.h │ │ ├── GPUImageCrosshairGenerator.h │ │ ├── GPUImageCrosshatchFilter.h │ │ ├── GPUImageDarkenBlendFilter.h │ │ ├── GPUImageDifferenceBlendFilter.h │ │ ├── GPUImageDilationFilter.h │ │ ├── GPUImageDirectionalNonMaximumSuppressionFilter.h │ │ ├── GPUImageDirectionalSobelEdgeDetectionFilter.h │ │ ├── GPUImageDissolveBlendFilter.h │ │ ├── GPUImageDivideBlendFilter.h │ │ ├── GPUImageEmbossFilter.h │ │ ├── GPUImageErosionFilter.h │ │ ├── GPUImageExclusionBlendFilter.h │ │ ├── GPUImageExposureFilter.h │ │ ├── GPUImageFASTCornerDetectionFilter.h │ │ ├── GPUImageFalseColorFilter.h │ │ ├── GPUImageFilter.h │ │ ├── GPUImageFilterGroup.h │ │ ├── GPUImageFilterPipeline.h │ │ ├── GPUImageFramebuffer.h │ │ ├── GPUImageFramebufferCache.h │ │ ├── GPUImageFramework.h │ │ ├── GPUImageGammaFilter.h │ │ ├── GPUImageGaussianBlurFilter.h │ │ ├── GPUImageGaussianBlurPositionFilter.h │ │ ├── GPUImageGaussianSelectiveBlurFilter.h │ │ ├── GPUImageGlassSphereFilter.h │ │ ├── GPUImageGrayscaleFilter.h │ │ ├── GPUImageHSBFilter.h │ │ ├── GPUImageHalftoneFilter.h │ │ ├── GPUImageHardLightBlendFilter.h │ │ ├── GPUImageHarrisCornerDetectionFilter.h │ │ ├── GPUImageHazeFilter.h │ │ ├── GPUImageHighPassFilter.h │ │ ├── GPUImageHighlightShadowFilter.h │ │ ├── GPUImageHistogramEqualizationFilter.h │ │ ├── GPUImageHistogramFilter.h │ │ ├── GPUImageHistogramGenerator.h │ │ ├── GPUImageHoughTransformLineDetector.h │ │ ├── GPUImageHueBlendFilter.h │ │ ├── GPUImageHueFilter.h │ │ ├── GPUImageJFAVoronoiFilter.h │ │ ├── GPUImageKuwaharaFilter.h │ │ ├── GPUImageKuwaharaRadius3Filter.h │ │ ├── GPUImageLanczosResamplingFilter.h │ │ ├── GPUImageLaplacianFilter.h │ │ ├── GPUImageLevelsFilter.h │ │ ├── GPUImageLightenBlendFilter.h │ │ ├── GPUImageLineGenerator.h │ │ ├── GPUImageLinearBurnBlendFilter.h │ │ ├── GPUImageLocalBinaryPatternFilter.h │ │ ├── GPUImageLookupFilter.h │ │ ├── GPUImageLowPassFilter.h │ │ ├── GPUImageLuminanceRangeFilter.h │ │ ├── GPUImageLuminanceThresholdFilter.h │ │ ├── GPUImageLuminosity.h │ │ ├── GPUImageLuminosityBlendFilter.h │ │ ├── GPUImageMaskFilter.h │ │ ├── GPUImageMedianFilter.h │ │ ├── GPUImageMissEtikateFilter.h │ │ ├── GPUImageMonochromeFilter.h │ │ ├── GPUImageMosaicFilter.h │ │ ├── GPUImageMotionBlurFilter.h │ │ ├── GPUImageMotionDetector.h │ │ ├── GPUImageMovie.h │ │ ├── GPUImageMovieComposition.h │ │ ├── GPUImageMovieWriter.h │ │ ├── GPUImageMultiplyBlendFilter.h │ │ ├── GPUImageNobleCornerDetectionFilter.h │ │ ├── GPUImageNonMaximumSuppressionFilter.h │ │ ├── GPUImageNormalBlendFilter.h │ │ ├── GPUImageOpacityFilter.h │ │ ├── GPUImageOpeningFilter.h │ │ ├── GPUImageOutput.h │ │ ├── GPUImageOverlayBlendFilter.h │ │ ├── GPUImageParallelCoordinateLineTransformFilter.h │ │ ├── GPUImagePerlinNoiseFilter.h │ │ ├── GPUImagePicture+TextureSubimage.h │ │ ├── GPUImagePicture.h │ │ ├── GPUImagePinchDistortionFilter.h │ │ ├── GPUImagePixellateFilter.h │ │ ├── GPUImagePixellatePositionFilter.h │ │ ├── GPUImagePoissonBlendFilter.h │ │ ├── GPUImagePolarPixellateFilter.h │ │ ├── GPUImagePolkaDotFilter.h │ │ ├── GPUImagePosterizeFilter.h │ │ ├── GPUImagePrewittEdgeDetectionFilter.h │ │ ├── GPUImageRGBClosingFilter.h │ │ ├── GPUImageRGBDilationFilter.h │ │ ├── GPUImageRGBErosionFilter.h │ │ ├── GPUImageRGBFilter.h │ │ ├── GPUImageRGBOpeningFilter.h │ │ ├── GPUImageRawDataInput.h │ │ ├── GPUImageRawDataOutput.h │ │ ├── GPUImageSaturationBlendFilter.h │ │ ├── GPUImageSaturationFilter.h │ │ ├── GPUImageScreenBlendFilter.h │ │ ├── GPUImageSepiaFilter.h │ │ ├── GPUImageSharpenFilter.h │ │ ├── GPUImageShiTomasiFeatureDetectionFilter.h │ │ ├── GPUImageSingleComponentGaussianBlurFilter.h │ │ ├── GPUImageSketchFilter.h │ │ ├── GPUImageSmoothToonFilter.h │ │ ├── GPUImageSobelEdgeDetectionFilter.h │ │ ├── GPUImageSoftEleganceFilter.h │ │ ├── GPUImageSoftLightBlendFilter.h │ │ ├── GPUImageSolidColorGenerator.h │ │ ├── GPUImageSourceOverBlendFilter.h │ │ ├── GPUImageSphereRefractionFilter.h │ │ ├── GPUImageStillCamera.h │ │ ├── GPUImageStretchDistortionFilter.h │ │ ├── GPUImageSubtractBlendFilter.h │ │ ├── GPUImageSwirlFilter.h │ │ ├── GPUImageTextureInput.h │ │ ├── GPUImageTextureOutput.h │ │ ├── GPUImageThreeInputFilter.h │ │ ├── GPUImageThresholdEdgeDetectionFilter.h │ │ ├── GPUImageThresholdSketchFilter.h │ │ ├── GPUImageThresholdedNonMaximumSuppressionFilter.h │ │ ├── GPUImageTiltShiftFilter.h │ │ ├── GPUImageToneCurveFilter.h │ │ ├── GPUImageToonFilter.h │ │ ├── GPUImageTransformFilter.h │ │ ├── GPUImageTwoInputCrossTextureSamplingFilter.h │ │ ├── GPUImageTwoInputFilter.h │ │ ├── GPUImageTwoPassFilter.h │ │ ├── GPUImageTwoPassTextureSamplingFilter.h │ │ ├── GPUImageUIElement.h │ │ ├── GPUImageUnsharpMaskFilter.h │ │ ├── GPUImageVideoCamera.h │ │ ├── GPUImageView.h │ │ ├── GPUImageVignetteFilter.h │ │ ├── GPUImageVoronoiConsumerFilter.h │ │ ├── GPUImageWeakPixelInclusionFilter.h │ │ ├── GPUImageWhiteBalanceFilter.h │ │ ├── GPUImageXYDerivativeFilter.h │ │ ├── GPUImageZoomBlurFilter.h │ │ └── GPUImageiOSBlurFilter.h │ │ └── SDWebImage │ │ ├── NSButton+WebCache.h │ │ ├── NSData+ImageContentType.h │ │ ├── NSImage+WebCache.h │ │ ├── SDAnimatedImageRep.h │ │ ├── SDImageCache.h │ │ ├── SDImageCacheConfig.h │ │ ├── SDWebImageCoder.h │ │ ├── SDWebImageCoderHelper.h │ │ ├── SDWebImageCodersManager.h │ │ ├── SDWebImageCompat.h │ │ ├── SDWebImageDownloader.h │ │ ├── SDWebImageDownloaderOperation.h │ │ ├── SDWebImageFrame.h │ │ ├── SDWebImageGIFCoder.h │ │ ├── SDWebImageImageIOCoder.h │ │ ├── SDWebImageManager.h │ │ ├── SDWebImageOperation.h │ │ ├── SDWebImagePrefetcher.h │ │ ├── SDWebImageTransition.h │ │ ├── UIButton+WebCache.h │ │ ├── UIImage+ForceDecode.h │ │ ├── UIImage+GIF.h │ │ ├── UIImage+MultiFormat.h │ │ ├── UIImageView+HighlightedWebCache.h │ │ ├── UIImageView+WebCache.h │ │ ├── UIView+WebCache.h │ │ └── UIView+WebCacheOperation.h │ ├── Manifest.lock │ ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── gmi.xcuserdatad │ │ └── xcschemes │ │ ├── FLEX.xcscheme │ │ ├── GPUImage.xcscheme │ │ ├── Pods-NoName.xcscheme │ │ ├── SDWebImage.xcscheme │ │ └── xcschememanagement.plist │ ├── SDWebImage │ ├── LICENSE │ ├── README.md │ └── SDWebImage │ │ ├── NSButton+WebCache.h │ │ ├── NSButton+WebCache.m │ │ ├── NSData+ImageContentType.h │ │ ├── NSData+ImageContentType.m │ │ ├── NSImage+WebCache.h │ │ ├── NSImage+WebCache.m │ │ ├── SDAnimatedImageRep.h │ │ ├── SDAnimatedImageRep.m │ │ ├── SDImageCache.h │ │ ├── SDImageCache.m │ │ ├── SDImageCacheConfig.h │ │ ├── SDImageCacheConfig.m │ │ ├── SDWebImageCoder.h │ │ ├── SDWebImageCoder.m │ │ ├── SDWebImageCoderHelper.h │ │ ├── SDWebImageCoderHelper.m │ │ ├── SDWebImageCodersManager.h │ │ ├── SDWebImageCodersManager.m │ │ ├── SDWebImageCompat.h │ │ ├── SDWebImageCompat.m │ │ ├── SDWebImageDownloader.h │ │ ├── SDWebImageDownloader.m │ │ ├── SDWebImageDownloaderOperation.h │ │ ├── SDWebImageDownloaderOperation.m │ │ ├── SDWebImageFrame.h │ │ ├── SDWebImageFrame.m │ │ ├── SDWebImageGIFCoder.h │ │ ├── SDWebImageGIFCoder.m │ │ ├── SDWebImageImageIOCoder.h │ │ ├── SDWebImageImageIOCoder.m │ │ ├── SDWebImageManager.h │ │ ├── SDWebImageManager.m │ │ ├── SDWebImageOperation.h │ │ ├── SDWebImagePrefetcher.h │ │ ├── SDWebImagePrefetcher.m │ │ ├── SDWebImageTransition.h │ │ ├── SDWebImageTransition.m │ │ ├── UIButton+WebCache.h │ │ ├── UIButton+WebCache.m │ │ ├── UIImage+ForceDecode.h │ │ ├── UIImage+ForceDecode.m │ │ ├── UIImage+GIF.h │ │ ├── UIImage+GIF.m │ │ ├── UIImage+MultiFormat.h │ │ ├── UIImage+MultiFormat.m │ │ ├── UIImageView+HighlightedWebCache.h │ │ ├── UIImageView+HighlightedWebCache.m │ │ ├── UIImageView+WebCache.h │ │ ├── UIImageView+WebCache.m │ │ ├── UIView+WebCache.h │ │ ├── UIView+WebCache.m │ │ ├── UIView+WebCacheOperation.h │ │ └── UIView+WebCacheOperation.m │ └── Target Support Files │ ├── FLEX │ ├── FLEX-dummy.m │ ├── FLEX-prefix.pch │ └── FLEX.xcconfig │ ├── GPUImage │ ├── GPUImage-dummy.m │ ├── GPUImage-prefix.pch │ └── GPUImage.xcconfig │ ├── Pods-NoName │ ├── Pods-NoName-acknowledgements.markdown │ ├── Pods-NoName-acknowledgements.plist │ ├── Pods-NoName-dummy.m │ ├── Pods-NoName-frameworks.sh │ ├── Pods-NoName-resources.sh │ ├── Pods-NoName.debug.xcconfig │ └── Pods-NoName.release.xcconfig │ └── SDWebImage │ ├── SDWebImage-dummy.m │ ├── SDWebImage-prefix.pch │ └── SDWebImage.xcconfig ├── README.md ├── _config.yml ├── flutter_ios_push ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── flutteriospush │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── ios │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── BPush.h │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── Runner-Bridging-Header.h │ │ ├── Runner.entitlements │ │ └── libBPush.a ├── lib │ └── main.dart ├── pubspec.yaml └── test │ └── widget_test.dart └── show ├── .DS_Store ├── MyShow.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ ├── gmi.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ ├── jianhuazhang.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ └── zjh.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── gmi.xcuserdatad │ └── xcschemes │ │ └── xcschememanagement.plist │ ├── jianhuazhang.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ └── xcschememanagement.plist │ └── zjh.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── MyShow.xcscheme │ └── xcschememanagement.plist ├── MyShow.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── gmi.xcuserdatad │ └── UserInterfaceState.xcuserstate ├── MyShow ├── .DS_Store ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Classes │ ├── .DS_Store │ ├── Base │ │ ├── BaseViewController │ │ │ ├── BaseViewController.h │ │ │ └── BaseViewController.m │ │ └── base │ │ │ ├── DefineConstant.h │ │ │ └── DefineConstant.m │ ├── Configs │ │ └── PrefixHeader.pch │ └── Home │ │ ├── .DS_Store │ │ ├── AboutMe │ │ ├── AboutMeViewController.h │ │ ├── AboutMeViewController.m │ │ ├── AboutMeViewController.xib │ │ ├── Zhangjh.h │ │ └── Zhangjh.m │ │ ├── AlertController │ │ ├── ZJHAlertViewController.h │ │ └── ZJHAlertViewController.m │ │ ├── Animation │ │ ├── AnimationViewController.h │ │ ├── AnimationViewController.m │ │ ├── AnimationViewController.xib │ │ ├── LoadingLabel.h │ │ └── LoadingLabel.m │ │ ├── BlueTooth │ │ ├── BlueToothViewController.h │ │ ├── BlueToothViewController.m │ │ ├── BlueToothViewController.xib │ │ ├── BluetoothEncryption.h │ │ ├── BluetoothEncryption.m │ │ ├── YMBlueToothTool.h │ │ ├── YMBlueToothTool.m │ │ ├── ZBlueToothTools.h │ │ └── ZBlueToothTools.m │ │ ├── Controller │ │ ├── JHHomeViewController.h │ │ ├── JHHomeViewController.m │ │ └── JHHomeViewController.xib │ │ ├── LoadingAnimation │ │ ├── ZLoadingView.h │ │ └── ZLoadingView.m │ │ ├── RadomLottery │ │ ├── RandomLotteryViewController.h │ │ ├── RandomLotteryViewController.m │ │ └── RandomLotteryViewController.xib │ │ ├── Turntable │ │ ├── TurntableView │ │ │ ├── TurntableView.h │ │ │ └── TurntableView.m │ │ ├── TurntableViewController.h │ │ ├── TurntableViewController.m │ │ └── TurntableViewController.xib │ │ └── View │ │ └── .DS_Store ├── Info.plist ├── Resource │ ├── 1.jpg │ └── pointer.png ├── ViewController.h ├── ViewController.m └── main.m ├── MyShowTests ├── Info.plist └── MyShowTests.m ├── MyShowUITests ├── Info.plist └── MyShowUITests.m ├── Podfile ├── Podfile.lock └── Pods ├── AFNetworking ├── AFNetworking │ ├── AFCompatibilityMacros.h │ ├── AFHTTPSessionManager.h │ ├── AFHTTPSessionManager.m │ ├── AFNetworkReachabilityManager.h │ ├── AFNetworkReachabilityManager.m │ ├── AFNetworking.h │ ├── AFSecurityPolicy.h │ ├── AFSecurityPolicy.m │ ├── AFURLRequestSerialization.h │ ├── AFURLRequestSerialization.m │ ├── AFURLResponseSerialization.h │ ├── AFURLResponseSerialization.m │ ├── AFURLSessionManager.h │ └── AFURLSessionManager.m ├── LICENSE ├── README.md └── UIKit+AFNetworking │ ├── AFAutoPurgingImageCache.h │ ├── AFAutoPurgingImageCache.m │ ├── AFImageDownloader.h │ ├── AFImageDownloader.m │ ├── AFNetworkActivityIndicatorManager.h │ ├── AFNetworkActivityIndicatorManager.m │ ├── UIActivityIndicatorView+AFNetworking.h │ ├── UIActivityIndicatorView+AFNetworking.m │ ├── UIButton+AFNetworking.h │ ├── UIButton+AFNetworking.m │ ├── UIImage+AFNetworking.h │ ├── UIImageView+AFNetworking.h │ ├── UIImageView+AFNetworking.m │ ├── UIKit+AFNetworking.h │ ├── UIProgressView+AFNetworking.h │ ├── UIProgressView+AFNetworking.m │ ├── UIRefreshControl+AFNetworking.h │ ├── UIRefreshControl+AFNetworking.m │ ├── UIWebView+AFNetworking.h │ └── UIWebView+AFNetworking.m ├── Headers ├── Private │ └── AFNetworking │ │ ├── AFAutoPurgingImageCache.h │ │ ├── AFCompatibilityMacros.h │ │ ├── AFHTTPSessionManager.h │ │ ├── AFImageDownloader.h │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLResponseSerialization.h │ │ ├── AFURLSessionManager.h │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ ├── UIButton+AFNetworking.h │ │ ├── UIImage+AFNetworking.h │ │ ├── UIImageView+AFNetworking.h │ │ ├── UIKit+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.h │ │ ├── UIRefreshControl+AFNetworking.h │ │ └── UIWebView+AFNetworking.h └── Public │ └── AFNetworking │ ├── AFAutoPurgingImageCache.h │ ├── AFCompatibilityMacros.h │ ├── AFHTTPSessionManager.h │ ├── AFImageDownloader.h │ ├── AFNetworkActivityIndicatorManager.h │ ├── AFNetworkReachabilityManager.h │ ├── AFNetworking.h │ ├── AFSecurityPolicy.h │ ├── AFURLRequestSerialization.h │ ├── AFURLResponseSerialization.h │ ├── AFURLSessionManager.h │ ├── UIActivityIndicatorView+AFNetworking.h │ ├── UIButton+AFNetworking.h │ ├── UIImage+AFNetworking.h │ ├── UIImageView+AFNetworking.h │ ├── UIKit+AFNetworking.h │ ├── UIProgressView+AFNetworking.h │ ├── UIRefreshControl+AFNetworking.h │ └── UIWebView+AFNetworking.h ├── Manifest.lock ├── Pods.xcodeproj ├── project.pbxproj └── xcuserdata │ └── gmi.xcuserdatad │ └── xcschemes │ ├── AFNetworking.xcscheme │ ├── Pods-MyShow.xcscheme │ └── xcschememanagement.plist └── Target Support Files ├── AFNetworking ├── AFNetworking-dummy.m ├── AFNetworking-prefix.pch └── AFNetworking.xcconfig └── Pods-MyShow ├── Pods-MyShow-acknowledgements.markdown ├── Pods-MyShow-acknowledgements.plist ├── Pods-MyShow-dummy.m ├── Pods-MyShow-frameworks.sh ├── Pods-MyShow-resources.sh ├── Pods-MyShow.debug.xcconfig └── Pods-MyShow.release.xcconfig /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/.DS_Store -------------------------------------------------------------------------------- /ICETest/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/ICETest/.DS_Store -------------------------------------------------------------------------------- /ICETest/ICETest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ICETest/ICETest.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ICETest/ICETest/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/ICETest/ICETest/.DS_Store -------------------------------------------------------------------------------- /ICETest/ICETest/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // ICETest 4 | // 5 | // Created by 划落永恒 on 2018/12/17. 6 | // Copyright © 2018 com.hualuoyongheng. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /ICETest/ICETest/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /ICETest/ICETest/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // ICETest 4 | // 5 | // Created by 划落永恒 on 2018/12/17. 6 | // Copyright © 2018 com.hualuoyongheng. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /ICETest/ICETest/cacert.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/ICETest/ICETest/cacert.der -------------------------------------------------------------------------------- /ICETest/ICETest/config.client: -------------------------------------------------------------------------------- 1 | # 2 | # Set the default router to the zeroc.com chat proxy 3 | # 4 | Ice.Default.Router=Glacier2/router:wss -p 443 -h zeroc.com -r /demo-proxy/chat/glacier2 -t 10000 5 | 6 | IceSSL.UsePlatformCAs=1 7 | IceSSL.CheckCertName=1 8 | -------------------------------------------------------------------------------- /NoName/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/.DS_Store -------------------------------------------------------------------------------- /NoName/NoName.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /NoName/NoName.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /NoName/NoName.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /NoName/NoName.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /NoName/NoName/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // NoName 4 | // 5 | // Created by 划落永恒 on 2018/12/11. 6 | // Copyright © 2018 com.hualuoyongheng. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /NoName/NoName/Assets.xcassets/1.imageset/1547722586_556626.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/Assets.xcassets/1.imageset/1547722586_556626.png -------------------------------------------------------------------------------- /NoName/NoName/Assets.xcassets/AppIcon.appiconset/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/Assets.xcassets/AppIcon.appiconset/icon-1024.png -------------------------------------------------------------------------------- /NoName/NoName/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/Assets.xcassets/AppIcon.appiconset/icon-20@2x.png -------------------------------------------------------------------------------- /NoName/NoName/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/Assets.xcassets/AppIcon.appiconset/icon-20@3x.png -------------------------------------------------------------------------------- /NoName/NoName/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /NoName/NoName/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /NoName/NoName/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /NoName/NoName/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /NoName/NoName/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /NoName/NoName/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /NoName/NoName/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /NoName/NoName/Assets.xcassets/bg.imageset/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/Assets.xcassets/bg.imageset/bg.png -------------------------------------------------------------------------------- /NoName/NoName/Login/BaseViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // BaseViewController.h 3 | // NoName 4 | // 5 | // Created by 划落永恒 on 2018/12/11. 6 | // Copyright © 2018 com.hualuoyongheng. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | NS_ASSUME_NONNULL_BEGIN 12 | 13 | @interface BaseViewController : UIViewController 14 | 15 | @end 16 | 17 | NS_ASSUME_NONNULL_END 18 | -------------------------------------------------------------------------------- /NoName/NoName/Login/LoginViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // LoginViewController.h 3 | // NoName 4 | // 5 | // Created by 划落永恒 on 2018/12/11. 6 | // Copyright © 2018 com.hualuoyongheng. All rights reserved. 7 | // 8 | 9 | #import "BaseViewController.h" 10 | NS_ASSUME_NONNULL_BEGIN 11 | 12 | @interface LoginViewController : BaseViewController 13 | 14 | @end 15 | 16 | NS_ASSUME_NONNULL_END 17 | -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/Animation/ZLInteractiveAnimateProtocol.h: -------------------------------------------------------------------------------- 1 | // 2 | // ZLInteractiveAnimateProtocol.h 3 | // ZLPhotoBrowser 4 | // 5 | // Created by long on 2018/8/16. 6 | // Copyright © 2018年 long. All rights reserved. 7 | // 8 | 9 | @protocol ZLInteractiveAnimateProtocol 10 | 11 | - (void)scrollToIndex:(NSInteger)index; 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/UIImage+ZLPhotoBrowser.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIImage+ZLPhotoBrowser.h 3 | // ZLPhotoBrowser 4 | // 5 | // Created by long on 2017/12/23. 6 | // Copyright © 2017年 long. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIImage (ZLPhotoBrowser) 12 | 13 | - (UIImage*)rotate:(UIImageOrientation)orient; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/ZLNoAuthorityViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ZLNoAuthorityViewController.h 3 | // 多选相册照片 4 | // 5 | // Created by long on 15/11/30. 6 | // Copyright © 2015年 long. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ZLNoAuthorityViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/ZLProgressHUD.h: -------------------------------------------------------------------------------- 1 | // 2 | // ZLProgressHUD.h 3 | // ZLPhotoBrowser 4 | // 5 | // Created by long on 16/2/15. 6 | // Copyright © 2016年 long. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ZLProgressHUD : UIView 12 | 13 | - (void)show; 14 | 15 | - (void)hide; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_arrow_down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_arrow_down@2x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_arrow_down@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_arrow_down@3x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_btn_circle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_btn_circle@2x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_btn_circle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_btn_circle@3x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_btn_original_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_btn_original_circle.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_btn_original_circle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_btn_original_circle@2x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_btn_original_circle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_btn_original_circle@3x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_btn_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_btn_rotate.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_btn_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_btn_selected.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_btn_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_btn_selected@2x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_btn_selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_btn_selected@3x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_btn_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_btn_unselected.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_btn_unselected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_btn_unselected@2x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_btn_unselected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_btn_unselected@3x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_clip@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_clip@2x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_clip@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_clip@3x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_defaultphoto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_defaultphoto.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_draw@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_draw@2x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_draw@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_draw@3x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_fennen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_fennen.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_filter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_filter@2x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_filter@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_filter@3x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_focus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_focus@2x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_focus@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_focus@3x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_ic_left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_ic_left@2x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_ic_left@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_ic_left@3x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_ic_right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_ic_right@2x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_ic_right@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_ic_right@3x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_livePhoto@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_livePhoto@2x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_livePhoto@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_livePhoto@3x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_lock.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_navBack@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_navBack@2x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_navBack@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_navBack@3x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_playVideo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_playVideo@2x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_playVideo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_playVideo@3x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_retake@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_retake@2x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_retake@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_retake@3x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_revoke@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_revoke@2x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_revoke@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_revoke@3x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_rotateimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_rotateimage.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_rotateimage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_rotateimage@2x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_rotateimage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_rotateimage@3x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_takePhoto@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_takePhoto@2x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_takePhoto@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_takePhoto@3x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_takeok@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_takeok@2x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_takeok@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_takeok@3x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_toggle_camera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_toggle_camera@2x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_toggle_camera@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_toggle_camera@3x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_video@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_video@2x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_video@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_video@3x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_videoLoadFailed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_videoLoadFailed@2x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_videoLoadFailed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_videoLoadFailed@3x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_videoView@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_videoView@2x.png -------------------------------------------------------------------------------- /NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_videoView@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/PhotoBrowser/resource/ZLPhotoBrowser.bundle/zl_videoView@3x.png -------------------------------------------------------------------------------- /NoName/NoName/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // NoName 4 | // 5 | // Created by 划落永恒 on 2018/12/11. 6 | // Copyright © 2018 com.hualuoyongheng. All rights reserved. 7 | // 8 | 9 | #import 10 | @interface ViewController : UIViewController 11 | 12 | - (void)fsf; 13 | 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /NoName/NoName/WebViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // WebViewController.h 3 | // NoName 4 | // 5 | // Created by 划落永恒 on 2019/1/17. 6 | // Copyright © 2019 com.hualuoyongheng. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | NS_ASSUME_NONNULL_BEGIN 12 | 13 | @interface WebViewController : UIViewController 14 | 15 | @end 16 | 17 | NS_ASSUME_NONNULL_END 18 | -------------------------------------------------------------------------------- /NoName/NoName/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/add.png -------------------------------------------------------------------------------- /NoName/NoName/ja.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /NoName/NoName/ja.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /NoName/NoName/ko.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /NoName/NoName/ko.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /NoName/NoName/prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/prompt.png -------------------------------------------------------------------------------- /NoName/NoName/ru.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /NoName/NoName/ru.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /NoName/NoName/zh-Hans.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /NoName/NoName/zh-Hans.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /NoName/NoName/历史.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/历史.png -------------------------------------------------------------------------------- /NoName/NoName/帮助.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/NoName/帮助.png -------------------------------------------------------------------------------- /NoName/Podfile: -------------------------------------------------------------------------------- 1 | platform :ios, '9.0' 2 | 3 | target 'NoName' do 4 | pod 'SDWebImage' 5 | pod 'GPUImage' 6 | pod 'FLEX' 7 | end -------------------------------------------------------------------------------- /NoName/Pods/FLEX/Classes/Editing/ArgumentInputViews/FLEXArgumentInputFontView.h: -------------------------------------------------------------------------------- 1 | // 2 | // FLEXArgumentInputFontView.h 3 | // Flipboard 4 | // 5 | // Created by Ryan Olson on 6/28/14. 6 | // Copyright (c) 2014 Flipboard. All rights reserved. 7 | // 8 | 9 | #import "FLEXArgumentInputView.h" 10 | 11 | @interface FLEXArgumentInputFontView : FLEXArgumentInputView 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /NoName/Pods/FLEX/Classes/FLEX.h: -------------------------------------------------------------------------------- 1 | // 2 | // FLEX.h 3 | // FLEX 4 | // 5 | // Created by Eric Horacek on 7/18/15. 6 | // Copyright (c) 2015 Flipboard. All rights reserved. 7 | // 8 | 9 | #import 10 | -------------------------------------------------------------------------------- /NoName/Pods/FLEX/Classes/GlobalStateExplorers/FLEXCookiesTableViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // FLEXCookiesTableViewController.h 3 | // FLEX 4 | // 5 | // Created by Rich Robinson on 19/10/2015. 6 | // Copyright © 2015 Flipboard. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface FLEXCookiesTableViewController : UITableViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /NoName/Pods/FLEX/Classes/Network/FLEXNetworkSettingsTableViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // FLEXNetworkSettingsTableViewController.h 3 | // FLEXInjected 4 | // 5 | // Created by Ryan Olson on 2/20/15. 6 | // 7 | // 8 | 9 | #import 10 | 11 | @interface FLEXNetworkSettingsTableViewController : UITableViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /NoName/Pods/FLEX/Classes/Utility/FLEXKeyboardHelpViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // FLEXKeyboardHelpViewController.h 3 | // UICatalog 4 | // 5 | // Created by Ryan Olson on 9/19/15. 6 | // Copyright © 2015 f. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface FLEXKeyboardHelpViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Resources/lookup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/Pods/GPUImage/framework/Resources/lookup.png -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Resources/lookup_amatorka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/Pods/GPUImage/framework/Resources/lookup_amatorka.png -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Resources/lookup_miss_etikate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/Pods/GPUImage/framework/Resources/lookup_miss_etikate.png -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Resources/lookup_soft_elegance_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/Pods/GPUImage/framework/Resources/lookup_soft_elegance_1.png -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Resources/lookup_soft_elegance_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/NoName/Pods/GPUImage/framework/Resources/lookup_soft_elegance_2.png -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageAdaptiveThresholdFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageFilterGroup.h" 2 | 3 | @interface GPUImageAdaptiveThresholdFilter : GPUImageFilterGroup 4 | 5 | /** A multiplier for the background averaging blur radius in pixels, with a default of 4 6 | */ 7 | @property(readwrite, nonatomic) CGFloat blurRadiusInPixels; 8 | 9 | @end 10 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageAddBlendFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageTwoInputFilter.h" 2 | 3 | @interface GPUImageAddBlendFilter : GPUImageTwoInputFilter 4 | 5 | @end 6 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageAlphaBlendFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageTwoInputFilter.h" 2 | 3 | @interface GPUImageAlphaBlendFilter : GPUImageTwoInputFilter 4 | { 5 | GLint mixUniform; 6 | } 7 | 8 | // Mix ranges from 0.0 (only image 1) to 1.0 (only image 2), with 1.0 as the normal level 9 | @property(readwrite, nonatomic) CGFloat mix; 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageBoxBlurFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageGaussianBlurFilter.h" 2 | 3 | /** A hardware-accelerated box blur of an image 4 | */ 5 | @interface GPUImageBoxBlurFilter : GPUImageGaussianBlurFilter 6 | 7 | @end 8 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageBrightnessFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageFilter.h" 2 | 3 | @interface GPUImageBrightnessFilter : GPUImageFilter 4 | { 5 | GLint brightnessUniform; 6 | } 7 | 8 | // Brightness ranges from -1.0 to 1.0, with 0.0 as the normal level 9 | @property(readwrite, nonatomic) CGFloat brightness; 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageBuffer.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageFilter.h" 2 | 3 | @interface GPUImageBuffer : GPUImageFilter 4 | { 5 | NSMutableArray *bufferedFramebuffers; 6 | } 7 | 8 | @property(readwrite, nonatomic) NSUInteger bufferSize; 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageCGAColorspaceFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageFilter.h" 2 | 3 | @interface GPUImageCGAColorspaceFilter : GPUImageFilter 4 | 5 | @end 6 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageColorBlendFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageTwoInputFilter.h" 2 | 3 | @interface GPUImageColorBlendFilter : GPUImageTwoInputFilter 4 | 5 | @end 6 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageColorBurnBlendFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageTwoInputFilter.h" 2 | 3 | /** Applies a color burn blend of two images 4 | */ 5 | @interface GPUImageColorBurnBlendFilter : GPUImageTwoInputFilter 6 | { 7 | } 8 | 9 | @end 10 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageColorDodgeBlendFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageTwoInputFilter.h" 2 | 3 | /** Applies a color dodge blend of two images 4 | */ 5 | @interface GPUImageColorDodgeBlendFilter : GPUImageTwoInputFilter 6 | { 7 | } 8 | 9 | @end 10 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageColorInvertFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageFilter.h" 2 | 3 | @interface GPUImageColorInvertFilter : GPUImageFilter 4 | { 5 | } 6 | 7 | @end 8 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageColorPackingFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageFilter.h" 2 | 3 | @interface GPUImageColorPackingFilter : GPUImageFilter 4 | { 5 | GLint texelWidthUniform, texelHeightUniform; 6 | 7 | CGFloat texelWidth, texelHeight; 8 | } 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageDarkenBlendFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageTwoInputFilter.h" 2 | 3 | @interface GPUImageDarkenBlendFilter : GPUImageTwoInputFilter 4 | { 5 | } 6 | 7 | @end 8 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageDifferenceBlendFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageTwoInputFilter.h" 2 | 3 | @interface GPUImageDifferenceBlendFilter : GPUImageTwoInputFilter 4 | { 5 | } 6 | 7 | @end 8 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageDirectionalSobelEdgeDetectionFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImage3x3TextureSamplingFilter.h" 2 | 3 | @interface GPUImageDirectionalSobelEdgeDetectionFilter : GPUImage3x3TextureSamplingFilter 4 | 5 | @end 6 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageDivideBlendFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageTwoInputFilter.h" 2 | 3 | @interface GPUImageDivideBlendFilter : GPUImageTwoInputFilter 4 | 5 | @end 6 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageEmbossFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImage3x3ConvolutionFilter.h" 2 | 3 | @interface GPUImageEmbossFilter : GPUImage3x3ConvolutionFilter 4 | 5 | // The strength of the embossing, from 0.0 to 4.0, with 1.0 as the normal level 6 | @property(readwrite, nonatomic) CGFloat intensity; 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageExclusionBlendFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageTwoInputFilter.h" 2 | 3 | @interface GPUImageExclusionBlendFilter : GPUImageTwoInputFilter 4 | { 5 | } 6 | 7 | @end 8 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageExposureFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageFilter.h" 2 | 3 | @interface GPUImageExposureFilter : GPUImageFilter 4 | { 5 | GLint exposureUniform; 6 | } 7 | 8 | // Exposure ranges from -10.0 to 10.0, with 0.0 as the normal level 9 | @property(readwrite, nonatomic) CGFloat exposure; 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageGammaFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageFilter.h" 2 | 3 | @interface GPUImageGammaFilter : GPUImageFilter 4 | { 5 | GLint gammaUniform; 6 | } 7 | 8 | // Gamma ranges from 0.0 to 3.0, with 1.0 as the normal level 9 | @property(readwrite, nonatomic) CGFloat gamma; 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageGlassSphereFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageSphereRefractionFilter.h" 2 | 3 | @interface GPUImageGlassSphereFilter : GPUImageSphereRefractionFilter 4 | 5 | @end 6 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageHalftoneFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImagePixellateFilter.h" 2 | 3 | @interface GPUImageHalftoneFilter : GPUImagePixellateFilter 4 | 5 | @end 6 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageHardLightBlendFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageTwoInputFilter.h" 2 | 3 | @interface GPUImageHardLightBlendFilter : GPUImageTwoInputFilter 4 | { 5 | } 6 | 7 | @end 8 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageHistogramGenerator.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageFilter.h" 2 | 3 | @interface GPUImageHistogramGenerator : GPUImageFilter 4 | { 5 | GLint backgroundColorUniform; 6 | } 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageHueBlendFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageTwoInputFilter.h" 2 | 3 | @interface GPUImageHueBlendFilter : GPUImageTwoInputFilter 4 | 5 | @end 6 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageHueFilter.h: -------------------------------------------------------------------------------- 1 | 2 | #import "GPUImageFilter.h" 3 | 4 | @interface GPUImageHueFilter : GPUImageFilter 5 | { 6 | GLint hueAdjustUniform; 7 | 8 | } 9 | @property (nonatomic, readwrite) CGFloat hue; 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageKuwaharaRadius3Filter.h: -------------------------------------------------------------------------------- 1 | // 2 | // GPUImageKuwaharaRadius3Filter.h 3 | 4 | #import "GPUImageFilter.h" 5 | 6 | @interface GPUImageKuwaharaRadius3Filter : GPUImageFilter 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageLanczosResamplingFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageTwoPassTextureSamplingFilter.h" 2 | 3 | @interface GPUImageLanczosResamplingFilter : GPUImageTwoPassTextureSamplingFilter 4 | 5 | @property(readwrite, nonatomic) CGSize originalImageSize; 6 | 7 | @end 8 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageLaplacianFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImage3x3ConvolutionFilter.h" 2 | 3 | @interface GPUImageLaplacianFilter : GPUImage3x3ConvolutionFilter 4 | 5 | @end 6 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageLightenBlendFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageTwoInputFilter.h" 2 | 3 | /// Blends two images by taking the maximum value of each color component between the images 4 | @interface GPUImageLightenBlendFilter : GPUImageTwoInputFilter 5 | { 6 | } 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageLinearBurnBlendFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageTwoInputFilter.h" 2 | 3 | @interface GPUImageLinearBurnBlendFilter : GPUImageTwoInputFilter 4 | 5 | @end 6 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageLocalBinaryPatternFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImage3x3TextureSamplingFilter.h" 2 | 3 | @interface GPUImageLocalBinaryPatternFilter : GPUImage3x3TextureSamplingFilter 4 | 5 | @end 6 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageLuminosityBlendFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageTwoInputFilter.h" 2 | 3 | @interface GPUImageLuminosityBlendFilter : GPUImageTwoInputFilter 4 | 5 | @end 6 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageMaskFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageTwoInputFilter.h" 2 | 3 | @interface GPUImageMaskFilter : GPUImageTwoInputFilter 4 | 5 | @end 6 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageMedianFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImage3x3TextureSamplingFilter.h" 2 | 3 | @interface GPUImageMedianFilter : GPUImage3x3TextureSamplingFilter 4 | 5 | @end 6 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageMultiplyBlendFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageTwoInputFilter.h" 2 | 3 | @interface GPUImageMultiplyBlendFilter : GPUImageTwoInputFilter 4 | { 5 | } 6 | 7 | @end 8 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageNonMaximumSuppressionFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImage3x3TextureSamplingFilter.h" 2 | 3 | @interface GPUImageNonMaximumSuppressionFilter : GPUImage3x3TextureSamplingFilter 4 | 5 | @end 6 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageNormalBlendFilter.h: -------------------------------------------------------------------------------- 1 | // Created by Jorge Garcia on 9/5/12. 2 | // 3 | 4 | #import "GPUImageTwoInputFilter.h" 5 | 6 | @interface GPUImageNormalBlendFilter : GPUImageTwoInputFilter 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageOpacityFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageFilter.h" 2 | 3 | @interface GPUImageOpacityFilter : GPUImageFilter 4 | { 5 | GLint opacityUniform; 6 | } 7 | 8 | // Opacity ranges from 0.0 to 1.0, with 1.0 as the normal setting 9 | @property(readwrite, nonatomic) CGFloat opacity; 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageOverlayBlendFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageTwoInputFilter.h" 2 | 3 | @interface GPUImageOverlayBlendFilter : GPUImageTwoInputFilter 4 | 5 | @end 6 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImagePolkaDotFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImagePixellateFilter.h" 2 | 3 | @interface GPUImagePolkaDotFilter : GPUImagePixellateFilter 4 | { 5 | GLint dotScalingUniform; 6 | } 7 | 8 | @property(readwrite, nonatomic) CGFloat dotScaling; 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImagePrewittEdgeDetectionFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageSobelEdgeDetectionFilter.h" 2 | 3 | @interface GPUImagePrewittEdgeDetectionFilter : GPUImageSobelEdgeDetectionFilter 4 | 5 | @end 6 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageSaturationBlendFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageTwoInputFilter.h" 2 | 3 | @interface GPUImageSaturationBlendFilter : GPUImageTwoInputFilter 4 | 5 | @end 6 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageScreenBlendFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageTwoInputFilter.h" 2 | 3 | @interface GPUImageScreenBlendFilter : GPUImageTwoInputFilter 4 | { 5 | } 6 | 7 | @end 8 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageSepiaFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageColorMatrixFilter.h" 2 | 3 | /// Simple sepia tone filter 4 | @interface GPUImageSepiaFilter : GPUImageColorMatrixFilter 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageSingleComponentGaussianBlurFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageGaussianBlurFilter.h" 2 | 3 | // This filter merely performs the standard Gaussian blur on the red color channel (assuming a luminance image) 4 | 5 | @interface GPUImageSingleComponentGaussianBlurFilter : GPUImageGaussianBlurFilter 6 | 7 | @end 8 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageSketchFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageSobelEdgeDetectionFilter.h" 2 | 3 | /** Converts video to look like a sketch. 4 | 5 | This is just the Sobel edge detection filter with the colors inverted. 6 | */ 7 | @interface GPUImageSketchFilter : GPUImageSobelEdgeDetectionFilter 8 | { 9 | } 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageSoftLightBlendFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageTwoInputFilter.h" 2 | 3 | @interface GPUImageSoftLightBlendFilter : GPUImageTwoInputFilter 4 | { 5 | } 6 | 7 | @end 8 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageSourceOverBlendFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageTwoInputFilter.h" 2 | 3 | @interface GPUImageSourceOverBlendFilter : GPUImageTwoInputFilter 4 | 5 | @end 6 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageSubtractBlendFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageTwoInputFilter.h" 2 | 3 | @interface GPUImageSubtractBlendFilter : GPUImageTwoInputFilter 4 | 5 | @end 6 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageThresholdSketchFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageThresholdEdgeDetectionFilter.h" 2 | 3 | @interface GPUImageThresholdSketchFilter : GPUImageThresholdEdgeDetectionFilter 4 | 5 | @end 6 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageVoronoiConsumerFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageTwoInputFilter.h" 2 | 3 | @interface GPUImageVoronoiConsumerFilter : GPUImageTwoInputFilter 4 | { 5 | GLint sizeUniform; 6 | } 7 | 8 | @property (nonatomic, readwrite) CGSize sizeInPixels; 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageWeakPixelInclusionFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImage3x3TextureSamplingFilter.h" 2 | 3 | @interface GPUImageWeakPixelInclusionFilter : GPUImage3x3TextureSamplingFilter 4 | 5 | @end 6 | -------------------------------------------------------------------------------- /NoName/Pods/GPUImage/framework/Source/GPUImageXYDerivativeFilter.h: -------------------------------------------------------------------------------- 1 | #import "GPUImageSobelEdgeDetectionFilter.h" 2 | 3 | @interface GPUImageXYDerivativeFilter : GPUImageSobelEdgeDetectionFilter 4 | 5 | @end 6 | -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEX.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/FLEX.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXArgumentInputColorView.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/Editing/ArgumentInputViews/FLEXArgumentInputColorView.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXArgumentInputDateView.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/Editing/ArgumentInputViews/FLEXArgumentInputDateView.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXArgumentInputFontView.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/Editing/ArgumentInputViews/FLEXArgumentInputFontView.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXArgumentInputFontsPickerView.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/Editing/ArgumentInputViews/FLEXArgumentInputFontsPickerView.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXArgumentInputJSONObjectView.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/Editing/ArgumentInputViews/FLEXArgumentInputJSONObjectView.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXArgumentInputNotSupportedView.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/Editing/ArgumentInputViews/FLEXArgumentInputNotSupportedView.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXArgumentInputNumberView.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/Editing/ArgumentInputViews/FLEXArgumentInputNumberView.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXArgumentInputStringView.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/Editing/ArgumentInputViews/FLEXArgumentInputStringView.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXArgumentInputStructView.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/Editing/ArgumentInputViews/FLEXArgumentInputStructView.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXArgumentInputSwitchView.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/Editing/ArgumentInputViews/FLEXArgumentInputSwitchView.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXArgumentInputTextView.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/Editing/ArgumentInputViews/FLEXArgumentInputTextView.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXArgumentInputView.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/Editing/ArgumentInputViews/FLEXArgumentInputView.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXArgumentInputViewFactory.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/Editing/ArgumentInputViews/FLEXArgumentInputViewFactory.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXArrayExplorerViewController.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/ObjectExplorers/FLEXArrayExplorerViewController.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXClassExplorerViewController.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/ObjectExplorers/FLEXClassExplorerViewController.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXClassesTableViewController.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/GlobalStateExplorers/FLEXClassesTableViewController.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXCookiesTableViewController.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/GlobalStateExplorers/FLEXCookiesTableViewController.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXDatabaseManager.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/GlobalStateExplorers/DatabaseBrowser/FLEXDatabaseManager.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXDefaultEditorViewController.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/Editing/FLEXDefaultEditorViewController.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXDefaultsExplorerViewController.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/ObjectExplorers/FLEXDefaultsExplorerViewController.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXDictionaryExplorerViewController.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/ObjectExplorers/FLEXDictionaryExplorerViewController.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXExplorerToolbar.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/Toolbar/FLEXExplorerToolbar.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXExplorerViewController.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/ExplorerInterface/FLEXExplorerViewController.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXFieldEditorView.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/Editing/FLEXFieldEditorView.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXFieldEditorViewController.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/Editing/FLEXFieldEditorViewController.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXFileBrowserFileOperationController.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/GlobalStateExplorers/FLEXFileBrowserFileOperationController.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXFileBrowserSearchOperation.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/GlobalStateExplorers/FLEXFileBrowserSearchOperation.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXFileBrowserTableViewController.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/GlobalStateExplorers/FLEXFileBrowserTableViewController.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXGlobalsTableViewController.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/GlobalStateExplorers/FLEXGlobalsTableViewController.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXGlobalsTableViewControllerEntry.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/ObjectExplorers/FLEXGlobalsTableViewControllerEntry.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXHeapEnumerator.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/Utility/FLEXHeapEnumerator.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXHierarchyTableViewCell.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/ViewHierarchy/FLEXHierarchyTableViewCell.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXHierarchyTableViewController.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/ViewHierarchy/FLEXHierarchyTableViewController.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXImageExplorerViewController.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/ObjectExplorers/FLEXImageExplorerViewController.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXImagePreviewViewController.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/ViewHierarchy/FLEXImagePreviewViewController.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXInstancesTableViewController.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/GlobalStateExplorers/FLEXInstancesTableViewController.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXIvarEditorViewController.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/Editing/FLEXIvarEditorViewController.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXKeyboardHelpViewController.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/Utility/FLEXKeyboardHelpViewController.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXKeyboardShortcutManager.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/Utility/FLEXKeyboardShortcutManager.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXLayerExplorerViewController.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/ObjectExplorers/FLEXLayerExplorerViewController.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXLibrariesTableViewController.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/GlobalStateExplorers/FLEXLibrariesTableViewController.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXLiveObjectsTableViewController.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/GlobalStateExplorers/FLEXLiveObjectsTableViewController.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXManager+Private.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/Manager/FLEXManager+Private.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXManager.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/FLEXManager.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXMethodCallingViewController.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/Editing/FLEXMethodCallingViewController.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXMultiColumnTableView.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/GlobalStateExplorers/DatabaseBrowser/FLEXMultiColumnTableView.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXMultilineTableViewCell.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/Utility/FLEXMultilineTableViewCell.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXNetworkCurlLogger.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/Network/FLEXNetworkCurlLogger.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXNetworkHistoryTableViewController.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/Network/FLEXNetworkHistoryTableViewController.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXNetworkObserver.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/Network/PonyDebugger/FLEXNetworkObserver.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXNetworkRecorder.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/Network/FLEXNetworkRecorder.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXNetworkSettingsTableViewController.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/Network/FLEXNetworkSettingsTableViewController.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXNetworkTransaction.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/Network/FLEXNetworkTransaction.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXNetworkTransactionDetailTableViewController.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/Network/FLEXNetworkTransactionDetailTableViewController.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXNetworkTransactionTableViewCell.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/Network/FLEXNetworkTransactionTableViewCell.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXObjectExplorerFactory.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/ObjectExplorers/FLEXObjectExplorerFactory.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXObjectExplorerViewController.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/ObjectExplorers/FLEXObjectExplorerViewController.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXPropertyEditorViewController.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/Editing/FLEXPropertyEditorViewController.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXRealmDatabaseManager.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/GlobalStateExplorers/DatabaseBrowser/FLEXRealmDatabaseManager.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXRealmDefines.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/GlobalStateExplorers/DatabaseBrowser/FLEXRealmDefines.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXResources.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/Utility/FLEXResources.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXRuntimeUtility.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/Utility/FLEXRuntimeUtility.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXSQLiteDatabaseManager.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/GlobalStateExplorers/DatabaseBrowser/FLEXSQLiteDatabaseManager.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXSetExplorerViewController.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/ObjectExplorers/FLEXSetExplorerViewController.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXSystemLogMessage.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/GlobalStateExplorers/SystemLog/FLEXSystemLogMessage.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXSystemLogTableViewCell.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/GlobalStateExplorers/SystemLog/FLEXSystemLogTableViewCell.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXSystemLogTableViewController.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/GlobalStateExplorers/SystemLog/FLEXSystemLogTableViewController.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXTableColumnHeader.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableColumnHeader.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXTableContentCell.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableContentCell.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXTableContentViewController.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableContentViewController.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXTableLeftCell.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableLeftCell.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXTableListViewController.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableListViewController.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXToolbarItem.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/Toolbar/FLEXToolbarItem.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXUtility.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/Utility/FLEXUtility.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXViewControllerExplorerViewController.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/ObjectExplorers/FLEXViewControllerExplorerViewController.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXViewExplorerViewController.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/ObjectExplorers/FLEXViewExplorerViewController.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXWebViewController.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/GlobalStateExplorers/FLEXWebViewController.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/FLEX/FLEXWindow.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/ExplorerInterface/FLEXWindow.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GLProgram.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GLProgram.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImage.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImage.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImage3x3ConvolutionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImage3x3ConvolutionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImage3x3TextureSamplingFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImage3x3TextureSamplingFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageAdaptiveThresholdFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageAdaptiveThresholdFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageAddBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageAddBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageAlphaBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageAlphaBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageAmatorkaFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageAmatorkaFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageAverageColor.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageAverageColor.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageAverageLuminanceThresholdFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageAverageLuminanceThresholdFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageBilateralFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageBilateralFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageBoxBlurFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageBoxBlurFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageBrightnessFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageBrightnessFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageBuffer.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageBuffer.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageBulgeDistortionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageBulgeDistortionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageCGAColorspaceFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageCGAColorspaceFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageCannyEdgeDetectionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageCannyEdgeDetectionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageChromaKeyBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageChromaKeyBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageChromaKeyFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageChromaKeyFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageClosingFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageClosingFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageColorBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageColorBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageColorBurnBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageColorBurnBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageColorDodgeBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageColorDodgeBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageColorInvertFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageColorInvertFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageColorMatrixFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageColorMatrixFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageColorPackingFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageColorPackingFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageContext.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/iOS/GPUImageContext.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageContrastFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageContrastFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageCropFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageCropFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageCrosshairGenerator.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageCrosshairGenerator.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageCrosshatchFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageCrosshatchFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageDarkenBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageDarkenBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageDifferenceBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageDifferenceBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageDilationFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageDilationFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageDirectionalNonMaximumSuppressionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageDirectionalNonMaximumSuppressionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageDirectionalSobelEdgeDetectionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageDirectionalSobelEdgeDetectionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageDissolveBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageDissolveBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageDivideBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageDivideBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageEmbossFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageEmbossFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageErosionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageErosionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageExclusionBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageExclusionBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageExposureFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageExposureFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageFASTCornerDetectionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageFASTCornerDetectionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageFalseColorFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageFalseColorFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageFilterGroup.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageFilterGroup.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageFilterPipeline.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageFilterPipeline.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageFramebuffer.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageFramebuffer.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageFramebufferCache.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageFramebufferCache.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageFramework.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/iOS/Framework/GPUImageFramework.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageGammaFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageGammaFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageGaussianBlurFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageGaussianBlurFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageGaussianBlurPositionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageGaussianBlurPositionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageGaussianSelectiveBlurFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageGaussianSelectiveBlurFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageGlassSphereFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageGlassSphereFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageGrayscaleFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageGrayscaleFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageHSBFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHSBFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageHalftoneFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHalftoneFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageHardLightBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHardLightBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageHarrisCornerDetectionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHarrisCornerDetectionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageHazeFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHazeFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageHighPassFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHighPassFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageHighlightShadowFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHighlightShadowFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageHistogramEqualizationFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHistogramEqualizationFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageHistogramFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHistogramFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageHistogramGenerator.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHistogramGenerator.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageHoughTransformLineDetector.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHoughTransformLineDetector.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageHueBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHueBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageHueFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHueFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageJFAVoronoiFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageJFAVoronoiFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageKuwaharaFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageKuwaharaFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageKuwaharaRadius3Filter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageKuwaharaRadius3Filter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageLanczosResamplingFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLanczosResamplingFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageLaplacianFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLaplacianFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageLevelsFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLevelsFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageLightenBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLightenBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageLineGenerator.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLineGenerator.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageLinearBurnBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLinearBurnBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageLocalBinaryPatternFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLocalBinaryPatternFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageLookupFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLookupFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageLowPassFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLowPassFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageLuminanceRangeFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLuminanceRangeFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageLuminanceThresholdFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLuminanceThresholdFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageLuminosity.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLuminosity.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageLuminosityBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLuminosityBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageMaskFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageMaskFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageMedianFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageMedianFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageMissEtikateFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageMissEtikateFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageMonochromeFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageMonochromeFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageMosaicFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageMosaicFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageMotionBlurFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageMotionBlurFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageMotionDetector.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageMotionDetector.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageMovie.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageMovie.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageMovieComposition.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageMovieComposition.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageMovieWriter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/iOS/GPUImageMovieWriter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageMultiplyBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageMultiplyBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageNobleCornerDetectionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageNobleCornerDetectionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageNonMaximumSuppressionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageNonMaximumSuppressionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageNormalBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageNormalBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageOpacityFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageOpacityFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageOpeningFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageOpeningFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageOutput.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageOutput.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageOverlayBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageOverlayBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageParallelCoordinateLineTransformFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageParallelCoordinateLineTransformFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImagePerlinNoiseFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImagePerlinNoiseFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImagePicture+TextureSubimage.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/iOS/GPUImagePicture+TextureSubimage.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImagePicture.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/iOS/GPUImagePicture.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImagePinchDistortionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImagePinchDistortionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImagePixellateFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImagePixellateFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImagePixellatePositionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImagePixellatePositionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImagePoissonBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImagePoissonBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImagePolarPixellateFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImagePolarPixellateFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImagePolkaDotFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImagePolkaDotFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImagePosterizeFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImagePosterizeFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImagePrewittEdgeDetectionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImagePrewittEdgeDetectionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageRGBClosingFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageRGBClosingFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageRGBDilationFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageRGBDilationFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageRGBErosionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageRGBErosionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageRGBFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageRGBFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageRGBOpeningFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageRGBOpeningFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageRawDataInput.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageRawDataInput.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageRawDataOutput.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageRawDataOutput.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageSaturationBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSaturationBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageSaturationFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSaturationFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageScreenBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageScreenBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageSepiaFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSepiaFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageSharpenFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSharpenFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageShiTomasiFeatureDetectionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageShiTomasiFeatureDetectionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageSingleComponentGaussianBlurFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSingleComponentGaussianBlurFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageSketchFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSketchFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageSmoothToonFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSmoothToonFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageSobelEdgeDetectionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSobelEdgeDetectionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageSoftEleganceFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSoftEleganceFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageSoftLightBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSoftLightBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageSolidColorGenerator.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSolidColorGenerator.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageSourceOverBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSourceOverBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageSphereRefractionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSphereRefractionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageStillCamera.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageStillCamera.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageStretchDistortionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageStretchDistortionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageSubtractBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSubtractBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageSwirlFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSwirlFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageTextureInput.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageTextureInput.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageTextureOutput.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageTextureOutput.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageThreeInputFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageThreeInputFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageThresholdEdgeDetectionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageThresholdEdgeDetectionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageThresholdSketchFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageThresholdSketchFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageThresholdedNonMaximumSuppressionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageThresholdedNonMaximumSuppressionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageTiltShiftFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageTiltShiftFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageToneCurveFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageToneCurveFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageToonFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageToonFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageTransformFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageTransformFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageTwoInputCrossTextureSamplingFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageTwoInputCrossTextureSamplingFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageTwoInputFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageTwoInputFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageTwoPassFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageTwoPassFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageTwoPassTextureSamplingFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageTwoPassTextureSamplingFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageUIElement.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageUIElement.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageUnsharpMaskFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageUnsharpMaskFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageVideoCamera.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageVideoCamera.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageView.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/iOS/GPUImageView.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageVignetteFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageVignetteFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageVoronoiConsumerFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageVoronoiConsumerFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageWeakPixelInclusionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageWeakPixelInclusionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageWhiteBalanceFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageWhiteBalanceFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageXYDerivativeFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageXYDerivativeFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageZoomBlurFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageZoomBlurFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/GPUImage/GPUImageiOSBlurFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageiOSBlurFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/SDWebImage/NSButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSButton+WebCache.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/SDWebImage/NSImage+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSImage+WebCache.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/SDWebImage/SDAnimatedImageRep.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDAnimatedImageRep.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/SDWebImage/SDImageCacheConfig.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCacheConfig.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/SDWebImage/SDWebImageCoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCoder.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/SDWebImage/SDWebImageCoderHelper.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCoderHelper.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/SDWebImage/SDWebImageCodersManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCodersManager.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/SDWebImage/SDWebImageFrame.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageFrame.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/SDWebImage/SDWebImageGIFCoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageGIFCoder.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/SDWebImage/SDWebImageImageIOCoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageImageIOCoder.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/SDWebImage/SDWebImageTransition.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageTransition.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/SDWebImage/UIImage+ForceDecode.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+ForceDecode.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/SDWebImage/UIView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCache.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Private/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/FLEX/FLEX.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/FLEX.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/FLEX/FLEXManager.h: -------------------------------------------------------------------------------- 1 | ../../../FLEX/Classes/FLEXManager.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GLProgram.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GLProgram.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImage.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImage.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImage3x3ConvolutionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImage3x3ConvolutionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImage3x3TextureSamplingFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImage3x3TextureSamplingFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageAdaptiveThresholdFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageAdaptiveThresholdFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageAddBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageAddBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageAlphaBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageAlphaBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageAmatorkaFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageAmatorkaFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageAverageColor.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageAverageColor.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageAverageLuminanceThresholdFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageAverageLuminanceThresholdFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageBilateralFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageBilateralFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageBoxBlurFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageBoxBlurFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageBrightnessFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageBrightnessFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageBuffer.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageBuffer.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageBulgeDistortionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageBulgeDistortionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageCGAColorspaceFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageCGAColorspaceFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageCannyEdgeDetectionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageCannyEdgeDetectionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageChromaKeyBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageChromaKeyBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageChromaKeyFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageChromaKeyFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageClosingFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageClosingFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageColorBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageColorBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageColorBurnBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageColorBurnBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageColorDodgeBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageColorDodgeBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageColorInvertFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageColorInvertFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageColorMatrixFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageColorMatrixFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageColorPackingFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageColorPackingFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageContext.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/iOS/GPUImageContext.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageContrastFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageContrastFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageCropFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageCropFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageCrosshairGenerator.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageCrosshairGenerator.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageCrosshatchFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageCrosshatchFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageDarkenBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageDarkenBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageDifferenceBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageDifferenceBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageDilationFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageDilationFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageDirectionalNonMaximumSuppressionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageDirectionalNonMaximumSuppressionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageDirectionalSobelEdgeDetectionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageDirectionalSobelEdgeDetectionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageDissolveBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageDissolveBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageDivideBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageDivideBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageEmbossFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageEmbossFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageErosionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageErosionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageExclusionBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageExclusionBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageExposureFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageExposureFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageFASTCornerDetectionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageFASTCornerDetectionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageFalseColorFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageFalseColorFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageFilterGroup.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageFilterGroup.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageFilterPipeline.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageFilterPipeline.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageFramebuffer.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageFramebuffer.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageFramebufferCache.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageFramebufferCache.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageFramework.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/iOS/Framework/GPUImageFramework.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageGammaFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageGammaFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageGaussianBlurFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageGaussianBlurFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageGaussianBlurPositionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageGaussianBlurPositionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageGaussianSelectiveBlurFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageGaussianSelectiveBlurFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageGlassSphereFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageGlassSphereFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageGrayscaleFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageGrayscaleFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageHSBFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHSBFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageHalftoneFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHalftoneFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageHardLightBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHardLightBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageHarrisCornerDetectionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHarrisCornerDetectionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageHazeFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHazeFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageHighPassFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHighPassFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageHighlightShadowFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHighlightShadowFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageHistogramEqualizationFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHistogramEqualizationFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageHistogramFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHistogramFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageHistogramGenerator.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHistogramGenerator.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageHoughTransformLineDetector.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHoughTransformLineDetector.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageHueBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHueBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageHueFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageHueFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageJFAVoronoiFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageJFAVoronoiFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageKuwaharaFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageKuwaharaFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageKuwaharaRadius3Filter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageKuwaharaRadius3Filter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageLanczosResamplingFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLanczosResamplingFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageLaplacianFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLaplacianFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageLevelsFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLevelsFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageLightenBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLightenBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageLineGenerator.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLineGenerator.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageLinearBurnBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLinearBurnBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageLocalBinaryPatternFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLocalBinaryPatternFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageLookupFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLookupFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageLowPassFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLowPassFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageLuminanceRangeFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLuminanceRangeFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageLuminanceThresholdFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLuminanceThresholdFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageLuminosity.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLuminosity.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageLuminosityBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageLuminosityBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageMaskFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageMaskFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageMedianFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageMedianFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageMissEtikateFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageMissEtikateFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageMonochromeFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageMonochromeFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageMosaicFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageMosaicFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageMotionBlurFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageMotionBlurFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageMotionDetector.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageMotionDetector.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageMovie.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageMovie.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageMovieComposition.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageMovieComposition.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageMovieWriter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/iOS/GPUImageMovieWriter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageMultiplyBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageMultiplyBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageNobleCornerDetectionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageNobleCornerDetectionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageNonMaximumSuppressionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageNonMaximumSuppressionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageNormalBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageNormalBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageOpacityFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageOpacityFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageOpeningFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageOpeningFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageOutput.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageOutput.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageOverlayBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageOverlayBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageParallelCoordinateLineTransformFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageParallelCoordinateLineTransformFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImagePerlinNoiseFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImagePerlinNoiseFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImagePicture+TextureSubimage.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/iOS/GPUImagePicture+TextureSubimage.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImagePicture.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/iOS/GPUImagePicture.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImagePinchDistortionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImagePinchDistortionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImagePixellateFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImagePixellateFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImagePixellatePositionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImagePixellatePositionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImagePoissonBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImagePoissonBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImagePolarPixellateFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImagePolarPixellateFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImagePolkaDotFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImagePolkaDotFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImagePosterizeFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImagePosterizeFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImagePrewittEdgeDetectionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImagePrewittEdgeDetectionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageRGBClosingFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageRGBClosingFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageRGBDilationFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageRGBDilationFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageRGBErosionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageRGBErosionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageRGBFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageRGBFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageRGBOpeningFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageRGBOpeningFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageRawDataInput.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageRawDataInput.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageRawDataOutput.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageRawDataOutput.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageSaturationBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSaturationBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageSaturationFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSaturationFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageScreenBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageScreenBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageSepiaFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSepiaFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageSharpenFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSharpenFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageShiTomasiFeatureDetectionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageShiTomasiFeatureDetectionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageSingleComponentGaussianBlurFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSingleComponentGaussianBlurFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageSketchFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSketchFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageSmoothToonFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSmoothToonFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageSobelEdgeDetectionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSobelEdgeDetectionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageSoftEleganceFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSoftEleganceFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageSoftLightBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSoftLightBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageSolidColorGenerator.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSolidColorGenerator.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageSourceOverBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSourceOverBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageSphereRefractionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSphereRefractionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageStillCamera.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageStillCamera.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageStretchDistortionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageStretchDistortionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageSubtractBlendFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSubtractBlendFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageSwirlFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageSwirlFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageTextureInput.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageTextureInput.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageTextureOutput.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageTextureOutput.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageThreeInputFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageThreeInputFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageThresholdEdgeDetectionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageThresholdEdgeDetectionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageThresholdSketchFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageThresholdSketchFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageThresholdedNonMaximumSuppressionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageThresholdedNonMaximumSuppressionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageTiltShiftFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageTiltShiftFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageToneCurveFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageToneCurveFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageToonFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageToonFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageTransformFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageTransformFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageTwoInputCrossTextureSamplingFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageTwoInputCrossTextureSamplingFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageTwoInputFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageTwoInputFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageTwoPassFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageTwoPassFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageTwoPassTextureSamplingFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageTwoPassTextureSamplingFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageUIElement.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageUIElement.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageUnsharpMaskFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageUnsharpMaskFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageVideoCamera.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageVideoCamera.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageView.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/iOS/GPUImageView.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageVignetteFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageVignetteFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageVoronoiConsumerFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageVoronoiConsumerFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageWeakPixelInclusionFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageWeakPixelInclusionFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageWhiteBalanceFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageWhiteBalanceFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageXYDerivativeFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageXYDerivativeFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageZoomBlurFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageZoomBlurFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/GPUImage/GPUImageiOSBlurFilter.h: -------------------------------------------------------------------------------- 1 | ../../../GPUImage/framework/Source/GPUImageiOSBlurFilter.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/SDWebImage/NSButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSButton+WebCache.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/SDWebImage/NSImage+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/NSImage+WebCache.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/SDWebImage/SDAnimatedImageRep.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDAnimatedImageRep.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/SDWebImage/SDImageCacheConfig.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDImageCacheConfig.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/SDWebImage/SDWebImageCoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCoder.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/SDWebImage/SDWebImageCoderHelper.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCoderHelper.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/SDWebImage/SDWebImageCodersManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCodersManager.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/SDWebImage/SDWebImageFrame.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageFrame.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/SDWebImage/SDWebImageGIFCoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageGIFCoder.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/SDWebImage/SDWebImageImageIOCoder.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageImageIOCoder.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/SDWebImage/SDWebImageTransition.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/SDWebImageTransition.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/SDWebImage/UIImage+ForceDecode.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+ForceDecode.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/SDWebImage/UIView+WebCache.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCache.h -------------------------------------------------------------------------------- /NoName/Pods/Headers/Public/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- 1 | ../../../SDWebImage/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /NoName/Pods/Target Support Files/FLEX/FLEX-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_FLEX : NSObject 3 | @end 4 | @implementation PodsDummy_FLEX 5 | @end 6 | -------------------------------------------------------------------------------- /NoName/Pods/Target Support Files/FLEX/FLEX-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /NoName/Pods/Target Support Files/GPUImage/GPUImage-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_GPUImage : NSObject 3 | @end 4 | @implementation PodsDummy_GPUImage 5 | @end 6 | -------------------------------------------------------------------------------- /NoName/Pods/Target Support Files/GPUImage/GPUImage-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /NoName/Pods/Target Support Files/Pods-NoName/Pods-NoName-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_NoName : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_NoName 5 | @end 6 | -------------------------------------------------------------------------------- /NoName/Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_SDWebImage : NSObject 3 | @end 4 | @implementation PodsDummy_SDWebImage 5 | @end 6 | -------------------------------------------------------------------------------- /NoName/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-midnight -------------------------------------------------------------------------------- /flutter_ios_push/.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled and should not be manually edited. 5 | 6 | version: 7 | revision: 5391447fae6209bb21a89e6a5a6583cac1af9b4b 8 | channel: beta 9 | 10 | project_type: app 11 | -------------------------------------------------------------------------------- /flutter_ios_push/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/flutter_ios_push/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /flutter_ios_push/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/flutter_ios_push/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /flutter_ios_push/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/flutter_ios_push/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /flutter_ios_push/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/flutter_ios_push/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /flutter_ios_push/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/flutter_ios_push/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /flutter_ios_push/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /flutter_ios_push/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Jun 23 08:50:38 CEST 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.2-all.zip 7 | -------------------------------------------------------------------------------- /flutter_ios_push/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /flutter_ios_push/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /flutter_ios_push/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /flutter_ios_push/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /flutter_ios_push/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /flutter_ios_push/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildSystemType 6 | Original 7 | 8 | 9 | -------------------------------------------------------------------------------- /flutter_ios_push/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/flutter_ios_push/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /flutter_ios_push/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/flutter_ios_push/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /flutter_ios_push/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/flutter_ios_push/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /flutter_ios_push/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/flutter_ios_push/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /flutter_ios_push/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/flutter_ios_push/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /flutter_ios_push/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/flutter_ios_push/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /flutter_ios_push/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/flutter_ios_push/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /flutter_ios_push/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/flutter_ios_push/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /flutter_ios_push/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/flutter_ios_push/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /flutter_ios_push/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/flutter_ios_push/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /flutter_ios_push/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/flutter_ios_push/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /flutter_ios_push/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/flutter_ios_push/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /flutter_ios_push/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/flutter_ios_push/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /flutter_ios_push/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/flutter_ios_push/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /flutter_ios_push/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/flutter_ios_push/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /flutter_ios_push/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/flutter_ios_push/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /flutter_ios_push/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/flutter_ios_push/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /flutter_ios_push/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/flutter_ios_push/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /flutter_ios_push/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | 3 | #import "BPush.h" 4 | -------------------------------------------------------------------------------- /flutter_ios_push/ios/Runner/Runner.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | aps-environment 6 | development 7 | 8 | 9 | -------------------------------------------------------------------------------- /flutter_ios_push/ios/Runner/libBPush.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/flutter_ios_push/ios/Runner/libBPush.a -------------------------------------------------------------------------------- /show/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/show/.DS_Store -------------------------------------------------------------------------------- /show/MyShow.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /show/MyShow.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /show/MyShow.xcodeproj/project.xcworkspace/xcuserdata/gmi.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/show/MyShow.xcodeproj/project.xcworkspace/xcuserdata/gmi.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /show/MyShow.xcodeproj/project.xcworkspace/xcuserdata/jianhuazhang.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/show/MyShow.xcodeproj/project.xcworkspace/xcuserdata/jianhuazhang.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /show/MyShow.xcodeproj/project.xcworkspace/xcuserdata/zjh.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/show/MyShow.xcodeproj/project.xcworkspace/xcuserdata/zjh.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /show/MyShow.xcodeproj/xcuserdata/zjh.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /show/MyShow.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /show/MyShow.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /show/MyShow.xcworkspace/xcuserdata/gmi.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/show/MyShow.xcworkspace/xcuserdata/gmi.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /show/MyShow/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/show/MyShow/.DS_Store -------------------------------------------------------------------------------- /show/MyShow/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // MyShow 4 | // 5 | // Created by 花落永恒 on 17/4/20. 6 | // Copyright © 2017年 花落永恒. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /show/MyShow/Classes/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/show/MyShow/Classes/.DS_Store -------------------------------------------------------------------------------- /show/MyShow/Classes/Configs/PrefixHeader.pch: -------------------------------------------------------------------------------- 1 | // 2 | // PrefixHeader.pch 3 | // MyShow 4 | // 5 | // Created by 花落永恒 on 2017/10/24. 6 | // Copyright © 2017年 花落永恒. All rights reserved. 7 | // 8 | 9 | #ifndef PrefixHeader_pch 10 | #define PrefixHeader_pch 11 | 12 | #import "DefineConstant.h" 13 | 14 | #endif /* PrefixHeader_pch */ 15 | -------------------------------------------------------------------------------- /show/MyShow/Classes/Home/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/show/MyShow/Classes/Home/.DS_Store -------------------------------------------------------------------------------- /show/MyShow/Classes/Home/AboutMe/AboutMeViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // AboutMeViewController.h 3 | // MyShow 4 | // 5 | // Created by jianhua zhang on 2018/2/23. 6 | // Copyright © 2018年 花落永恒. All rights reserved. 7 | // 8 | 9 | #import "BaseViewController.h" 10 | 11 | @interface AboutMeViewController : BaseViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /show/MyShow/Classes/Home/AboutMe/Zhangjh.m: -------------------------------------------------------------------------------- 1 | // 2 | // zhangjh.m 3 | // MyShow 4 | // 5 | // Created by jianhua zhang on 2018/2/23. 6 | // Copyright © 2018年 花落永恒. All rights reserved. 7 | // 8 | 9 | #import "Zhangjh.h" 10 | 11 | @implementation Zhangjh 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /show/MyShow/Classes/Home/Animation/AnimationViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // AnimationViewController.h 3 | // MyShow 4 | // 5 | // Created by jianhua zhang on 2018/4/8. 6 | // Copyright © 2018年 花落永恒. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AnimationViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /show/MyShow/Classes/Home/BlueTooth/BlueToothViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // BlueToothViewController.h 3 | // MyShow 4 | // 5 | // Created by jianhua zhang on 2018/3/30. 6 | // Copyright © 2018年 花落永恒. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface BlueToothViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /show/MyShow/Classes/Home/Controller/JHHomeViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // JHHomeViewController.h 3 | // MyShow 4 | // 5 | // Created by 花落永恒 on 2017/10/24. 6 | // Copyright © 2017年 花落永恒. All rights reserved. 7 | // 8 | 9 | #import "BaseViewController.h" 10 | 11 | @interface JHHomeViewController : BaseViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /show/MyShow/Classes/Home/Turntable/TurntableViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // TurntableViewController.h 3 | // MyShow 4 | // 5 | // Created by 花落永恒 on 2017/10/24. 6 | // Copyright © 2017年 花落永恒. All rights reserved. 7 | // 8 | 9 | #import "BaseViewController.h" 10 | 11 | @interface TurntableViewController : BaseViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /show/MyShow/Classes/Home/View/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/show/MyShow/Classes/Home/View/.DS_Store -------------------------------------------------------------------------------- /show/MyShow/Resource/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/show/MyShow/Resource/1.jpg -------------------------------------------------------------------------------- /show/MyShow/Resource/pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrixOutlaw/PastCode/cf12a702ba4813699f020d4247f74ec174de697a/show/MyShow/Resource/pointer.png -------------------------------------------------------------------------------- /show/MyShow/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // MyShow 4 | // 5 | // Created by 花落永恒 on 17/4/20. 6 | // Copyright © 2017年 花落永恒. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /show/Podfile: -------------------------------------------------------------------------------- 1 | target 'MyShow' do 2 | 3 | #base必须加载 4 | pod 'AFNetworking' 5 | 6 | end 7 | -------------------------------------------------------------------------------- /show/Pods/Headers/Private/AFNetworking/AFAutoPurgingImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h -------------------------------------------------------------------------------- /show/Pods/Headers/Private/AFNetworking/AFCompatibilityMacros.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFCompatibilityMacros.h -------------------------------------------------------------------------------- /show/Pods/Headers/Private/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /show/Pods/Headers/Private/AFNetworking/AFImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFImageDownloader.h -------------------------------------------------------------------------------- /show/Pods/Headers/Private/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /show/Pods/Headers/Private/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /show/Pods/Headers/Private/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /show/Pods/Headers/Private/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /show/Pods/Headers/Private/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /show/Pods/Headers/Private/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /show/Pods/Headers/Private/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /show/Pods/Headers/Private/AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /show/Pods/Headers/Private/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /show/Pods/Headers/Private/AFNetworking/UIImage+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h -------------------------------------------------------------------------------- /show/Pods/Headers/Private/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /show/Pods/Headers/Private/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /show/Pods/Headers/Private/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /show/Pods/Headers/Private/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /show/Pods/Headers/Private/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /show/Pods/Headers/Public/AFNetworking/AFAutoPurgingImageCache.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFAutoPurgingImageCache.h -------------------------------------------------------------------------------- /show/Pods/Headers/Public/AFNetworking/AFCompatibilityMacros.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFCompatibilityMacros.h -------------------------------------------------------------------------------- /show/Pods/Headers/Public/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /show/Pods/Headers/Public/AFNetworking/AFImageDownloader.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFImageDownloader.h -------------------------------------------------------------------------------- /show/Pods/Headers/Public/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /show/Pods/Headers/Public/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /show/Pods/Headers/Public/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /show/Pods/Headers/Public/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /show/Pods/Headers/Public/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /show/Pods/Headers/Public/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /show/Pods/Headers/Public/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /show/Pods/Headers/Public/AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /show/Pods/Headers/Public/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /show/Pods/Headers/Public/AFNetworking/UIImage+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h -------------------------------------------------------------------------------- /show/Pods/Headers/Public/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /show/Pods/Headers/Public/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /show/Pods/Headers/Public/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /show/Pods/Headers/Public/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /show/Pods/Headers/Public/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /show/Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_AFNetworking : NSObject 3 | @end 4 | @implementation PodsDummy_AFNetworking 5 | @end 6 | -------------------------------------------------------------------------------- /show/Pods/Target Support Files/Pods-MyShow/Pods-MyShow-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_MyShow : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_MyShow 5 | @end 6 | --------------------------------------------------------------------------------