├── .gitignore ├── LICENSE ├── MetaZoom.plugin └── Contents │ ├── Info.plist │ ├── MacOS │ └── MetaZoom │ ├── Resources │ ├── LICENSE │ └── README.md │ └── _CodeSignature │ └── CodeResources ├── MetaZoom.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ └── SimpleDALPlugin.xcscheme ├── README.md └── SimpleDALPlugin ├── CGImage+CVPixelBuffer.swift ├── CVPixelBuffer+SimpleDALPlugin.swift ├── Device.swift ├── Info.plist ├── Log.swift ├── Main.swift ├── Object.swift ├── Plugin.swift ├── PluginInterface.swift ├── Property.swift ├── SimpleDALPlugin-Bridging-Header.h └── Stream.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavingia/metazoom/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavingia/metazoom/HEAD/LICENSE -------------------------------------------------------------------------------- /MetaZoom.plugin/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavingia/metazoom/HEAD/MetaZoom.plugin/Contents/Info.plist -------------------------------------------------------------------------------- /MetaZoom.plugin/Contents/MacOS/MetaZoom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavingia/metazoom/HEAD/MetaZoom.plugin/Contents/MacOS/MetaZoom -------------------------------------------------------------------------------- /MetaZoom.plugin/Contents/Resources/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavingia/metazoom/HEAD/MetaZoom.plugin/Contents/Resources/LICENSE -------------------------------------------------------------------------------- /MetaZoom.plugin/Contents/Resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavingia/metazoom/HEAD/MetaZoom.plugin/Contents/Resources/README.md -------------------------------------------------------------------------------- /MetaZoom.plugin/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavingia/metazoom/HEAD/MetaZoom.plugin/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /MetaZoom.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavingia/metazoom/HEAD/MetaZoom.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MetaZoom.xcodeproj/xcshareddata/xcschemes/SimpleDALPlugin.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavingia/metazoom/HEAD/MetaZoom.xcodeproj/xcshareddata/xcschemes/SimpleDALPlugin.xcscheme -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavingia/metazoom/HEAD/README.md -------------------------------------------------------------------------------- /SimpleDALPlugin/CGImage+CVPixelBuffer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavingia/metazoom/HEAD/SimpleDALPlugin/CGImage+CVPixelBuffer.swift -------------------------------------------------------------------------------- /SimpleDALPlugin/CVPixelBuffer+SimpleDALPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavingia/metazoom/HEAD/SimpleDALPlugin/CVPixelBuffer+SimpleDALPlugin.swift -------------------------------------------------------------------------------- /SimpleDALPlugin/Device.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavingia/metazoom/HEAD/SimpleDALPlugin/Device.swift -------------------------------------------------------------------------------- /SimpleDALPlugin/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavingia/metazoom/HEAD/SimpleDALPlugin/Info.plist -------------------------------------------------------------------------------- /SimpleDALPlugin/Log.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavingia/metazoom/HEAD/SimpleDALPlugin/Log.swift -------------------------------------------------------------------------------- /SimpleDALPlugin/Main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavingia/metazoom/HEAD/SimpleDALPlugin/Main.swift -------------------------------------------------------------------------------- /SimpleDALPlugin/Object.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavingia/metazoom/HEAD/SimpleDALPlugin/Object.swift -------------------------------------------------------------------------------- /SimpleDALPlugin/Plugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavingia/metazoom/HEAD/SimpleDALPlugin/Plugin.swift -------------------------------------------------------------------------------- /SimpleDALPlugin/PluginInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavingia/metazoom/HEAD/SimpleDALPlugin/PluginInterface.swift -------------------------------------------------------------------------------- /SimpleDALPlugin/Property.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavingia/metazoom/HEAD/SimpleDALPlugin/Property.swift -------------------------------------------------------------------------------- /SimpleDALPlugin/SimpleDALPlugin-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavingia/metazoom/HEAD/SimpleDALPlugin/SimpleDALPlugin-Bridging-Header.h -------------------------------------------------------------------------------- /SimpleDALPlugin/Stream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavingia/metazoom/HEAD/SimpleDALPlugin/Stream.swift --------------------------------------------------------------------------------