├── .gitignore ├── License.txt ├── README.md ├── addon_config.mk ├── example-Basic ├── Makefile ├── Project.xcconfig ├── addons.make ├── config.make ├── example-Basic.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── example-Basic Debug.xcscheme │ │ └── example-Basic Release.xcscheme ├── of.entitlements ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── example-Image ├── Makefile ├── Project.xcconfig ├── config.make ├── example-Image.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── example-Image Debug.xcscheme │ │ └── example-Image Release.xcscheme ├── of.entitlements ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── example-ServerDirectory ├── Makefile ├── Project.xcconfig ├── addons.make ├── config.make ├── example-ServerDirectory.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── example-ServerDirectory Debug.xcscheme │ │ └── example-ServerDirectory Release.xcscheme ├── of.entitlements ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── libs └── Syphon │ ├── lib │ └── osx │ │ └── Syphon.framework │ │ ├── Headers │ │ ├── Modules │ │ ├── Resources │ │ ├── Syphon │ │ └── Versions │ │ ├── A │ │ ├── Headers │ │ │ ├── Syphon.h │ │ │ ├── SyphonClient.h │ │ │ ├── SyphonClientBase.h │ │ │ ├── SyphonImage.h │ │ │ ├── SyphonImageBase.h │ │ │ ├── SyphonMetalClient.h │ │ │ ├── SyphonMetalServer.h │ │ │ ├── SyphonOpenGLClient.h │ │ │ ├── SyphonOpenGLImage.h │ │ │ ├── SyphonOpenGLServer.h │ │ │ ├── SyphonServer.h │ │ │ ├── SyphonServerBase.h │ │ │ ├── SyphonServerDirectory.h │ │ │ └── SyphonSubclassing.h │ │ ├── Modules │ │ │ └── module.modulemap │ │ ├── Resources │ │ │ ├── Info.plist │ │ │ ├── default.metallib │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ ├── Syphon │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ └── Current │ └── src │ ├── SyphonNameboundClient.h │ └── SyphonNameboundClient.m └── src ├── ofxSyphon.h ├── ofxSyphonClient.h ├── ofxSyphonClient.mm ├── ofxSyphonNSObject.hpp ├── ofxSyphonNSObject.mm ├── ofxSyphonServer.h ├── ofxSyphonServer.mm ├── ofxSyphonServerDirectory.h └── ofxSyphonServerDirectory.mm /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/.gitignore -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/README.md -------------------------------------------------------------------------------- /addon_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/addon_config.mk -------------------------------------------------------------------------------- /example-Basic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/example-Basic/Makefile -------------------------------------------------------------------------------- /example-Basic/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/example-Basic/Project.xcconfig -------------------------------------------------------------------------------- /example-Basic/addons.make: -------------------------------------------------------------------------------- 1 | ofxSyphon 2 | -------------------------------------------------------------------------------- /example-Basic/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/example-Basic/config.make -------------------------------------------------------------------------------- /example-Basic/example-Basic.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/example-Basic/example-Basic.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example-Basic/example-Basic.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/example-Basic/example-Basic.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example-Basic/example-Basic.xcodeproj/xcshareddata/xcschemes/example-Basic Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/example-Basic/example-Basic.xcodeproj/xcshareddata/xcschemes/example-Basic Debug.xcscheme -------------------------------------------------------------------------------- /example-Basic/example-Basic.xcodeproj/xcshareddata/xcschemes/example-Basic Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/example-Basic/example-Basic.xcodeproj/xcshareddata/xcschemes/example-Basic Release.xcscheme -------------------------------------------------------------------------------- /example-Basic/of.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/example-Basic/of.entitlements -------------------------------------------------------------------------------- /example-Basic/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/example-Basic/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example-Basic/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/example-Basic/src/main.cpp -------------------------------------------------------------------------------- /example-Basic/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/example-Basic/src/ofApp.cpp -------------------------------------------------------------------------------- /example-Basic/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/example-Basic/src/ofApp.h -------------------------------------------------------------------------------- /example-Image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/example-Image/Makefile -------------------------------------------------------------------------------- /example-Image/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/example-Image/Project.xcconfig -------------------------------------------------------------------------------- /example-Image/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/example-Image/config.make -------------------------------------------------------------------------------- /example-Image/example-Image.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/example-Image/example-Image.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example-Image/example-Image.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/example-Image/example-Image.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example-Image/example-Image.xcodeproj/xcshareddata/xcschemes/example-Image Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/example-Image/example-Image.xcodeproj/xcshareddata/xcschemes/example-Image Debug.xcscheme -------------------------------------------------------------------------------- /example-Image/example-Image.xcodeproj/xcshareddata/xcschemes/example-Image Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/example-Image/example-Image.xcodeproj/xcshareddata/xcschemes/example-Image Release.xcscheme -------------------------------------------------------------------------------- /example-Image/of.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/example-Image/of.entitlements -------------------------------------------------------------------------------- /example-Image/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/example-Image/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example-Image/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/example-Image/src/main.cpp -------------------------------------------------------------------------------- /example-Image/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/example-Image/src/ofApp.cpp -------------------------------------------------------------------------------- /example-Image/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/example-Image/src/ofApp.h -------------------------------------------------------------------------------- /example-ServerDirectory/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/example-ServerDirectory/Makefile -------------------------------------------------------------------------------- /example-ServerDirectory/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/example-ServerDirectory/Project.xcconfig -------------------------------------------------------------------------------- /example-ServerDirectory/addons.make: -------------------------------------------------------------------------------- 1 | ofxSyphon 2 | -------------------------------------------------------------------------------- /example-ServerDirectory/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/example-ServerDirectory/config.make -------------------------------------------------------------------------------- /example-ServerDirectory/example-ServerDirectory.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/example-ServerDirectory/example-ServerDirectory.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example-ServerDirectory/example-ServerDirectory.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/example-ServerDirectory/example-ServerDirectory.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example-ServerDirectory/example-ServerDirectory.xcodeproj/xcshareddata/xcschemes/example-ServerDirectory Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/example-ServerDirectory/example-ServerDirectory.xcodeproj/xcshareddata/xcschemes/example-ServerDirectory Debug.xcscheme -------------------------------------------------------------------------------- /example-ServerDirectory/example-ServerDirectory.xcodeproj/xcshareddata/xcschemes/example-ServerDirectory Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/example-ServerDirectory/example-ServerDirectory.xcodeproj/xcshareddata/xcschemes/example-ServerDirectory Release.xcscheme -------------------------------------------------------------------------------- /example-ServerDirectory/of.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/example-ServerDirectory/of.entitlements -------------------------------------------------------------------------------- /example-ServerDirectory/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/example-ServerDirectory/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example-ServerDirectory/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/example-ServerDirectory/src/main.cpp -------------------------------------------------------------------------------- /example-ServerDirectory/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/example-ServerDirectory/src/ofApp.cpp -------------------------------------------------------------------------------- /example-ServerDirectory/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/example-ServerDirectory/src/ofApp.h -------------------------------------------------------------------------------- /libs/Syphon/lib/osx/Syphon.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /libs/Syphon/lib/osx/Syphon.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /libs/Syphon/lib/osx/Syphon.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /libs/Syphon/lib/osx/Syphon.framework/Syphon: -------------------------------------------------------------------------------- 1 | Versions/Current/Syphon -------------------------------------------------------------------------------- /libs/Syphon/lib/osx/Syphon.framework/Versions/A/Headers/Syphon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/libs/Syphon/lib/osx/Syphon.framework/Versions/A/Headers/Syphon.h -------------------------------------------------------------------------------- /libs/Syphon/lib/osx/Syphon.framework/Versions/A/Headers/SyphonClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/libs/Syphon/lib/osx/Syphon.framework/Versions/A/Headers/SyphonClient.h -------------------------------------------------------------------------------- /libs/Syphon/lib/osx/Syphon.framework/Versions/A/Headers/SyphonClientBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/libs/Syphon/lib/osx/Syphon.framework/Versions/A/Headers/SyphonClientBase.h -------------------------------------------------------------------------------- /libs/Syphon/lib/osx/Syphon.framework/Versions/A/Headers/SyphonImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/libs/Syphon/lib/osx/Syphon.framework/Versions/A/Headers/SyphonImage.h -------------------------------------------------------------------------------- /libs/Syphon/lib/osx/Syphon.framework/Versions/A/Headers/SyphonImageBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/libs/Syphon/lib/osx/Syphon.framework/Versions/A/Headers/SyphonImageBase.h -------------------------------------------------------------------------------- /libs/Syphon/lib/osx/Syphon.framework/Versions/A/Headers/SyphonMetalClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/libs/Syphon/lib/osx/Syphon.framework/Versions/A/Headers/SyphonMetalClient.h -------------------------------------------------------------------------------- /libs/Syphon/lib/osx/Syphon.framework/Versions/A/Headers/SyphonMetalServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/libs/Syphon/lib/osx/Syphon.framework/Versions/A/Headers/SyphonMetalServer.h -------------------------------------------------------------------------------- /libs/Syphon/lib/osx/Syphon.framework/Versions/A/Headers/SyphonOpenGLClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/libs/Syphon/lib/osx/Syphon.framework/Versions/A/Headers/SyphonOpenGLClient.h -------------------------------------------------------------------------------- /libs/Syphon/lib/osx/Syphon.framework/Versions/A/Headers/SyphonOpenGLImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/libs/Syphon/lib/osx/Syphon.framework/Versions/A/Headers/SyphonOpenGLImage.h -------------------------------------------------------------------------------- /libs/Syphon/lib/osx/Syphon.framework/Versions/A/Headers/SyphonOpenGLServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/libs/Syphon/lib/osx/Syphon.framework/Versions/A/Headers/SyphonOpenGLServer.h -------------------------------------------------------------------------------- /libs/Syphon/lib/osx/Syphon.framework/Versions/A/Headers/SyphonServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/libs/Syphon/lib/osx/Syphon.framework/Versions/A/Headers/SyphonServer.h -------------------------------------------------------------------------------- /libs/Syphon/lib/osx/Syphon.framework/Versions/A/Headers/SyphonServerBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/libs/Syphon/lib/osx/Syphon.framework/Versions/A/Headers/SyphonServerBase.h -------------------------------------------------------------------------------- /libs/Syphon/lib/osx/Syphon.framework/Versions/A/Headers/SyphonServerDirectory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/libs/Syphon/lib/osx/Syphon.framework/Versions/A/Headers/SyphonServerDirectory.h -------------------------------------------------------------------------------- /libs/Syphon/lib/osx/Syphon.framework/Versions/A/Headers/SyphonSubclassing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/libs/Syphon/lib/osx/Syphon.framework/Versions/A/Headers/SyphonSubclassing.h -------------------------------------------------------------------------------- /libs/Syphon/lib/osx/Syphon.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/libs/Syphon/lib/osx/Syphon.framework/Versions/A/Modules/module.modulemap -------------------------------------------------------------------------------- /libs/Syphon/lib/osx/Syphon.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/libs/Syphon/lib/osx/Syphon.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /libs/Syphon/lib/osx/Syphon.framework/Versions/A/Resources/default.metallib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/libs/Syphon/lib/osx/Syphon.framework/Versions/A/Resources/default.metallib -------------------------------------------------------------------------------- /libs/Syphon/lib/osx/Syphon.framework/Versions/A/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/libs/Syphon/lib/osx/Syphon.framework/Versions/A/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /libs/Syphon/lib/osx/Syphon.framework/Versions/A/Syphon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/libs/Syphon/lib/osx/Syphon.framework/Versions/A/Syphon -------------------------------------------------------------------------------- /libs/Syphon/lib/osx/Syphon.framework/Versions/A/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/libs/Syphon/lib/osx/Syphon.framework/Versions/A/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /libs/Syphon/lib/osx/Syphon.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /libs/Syphon/src/SyphonNameboundClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/libs/Syphon/src/SyphonNameboundClient.h -------------------------------------------------------------------------------- /libs/Syphon/src/SyphonNameboundClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/libs/Syphon/src/SyphonNameboundClient.m -------------------------------------------------------------------------------- /src/ofxSyphon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/src/ofxSyphon.h -------------------------------------------------------------------------------- /src/ofxSyphonClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/src/ofxSyphonClient.h -------------------------------------------------------------------------------- /src/ofxSyphonClient.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/src/ofxSyphonClient.mm -------------------------------------------------------------------------------- /src/ofxSyphonNSObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/src/ofxSyphonNSObject.hpp -------------------------------------------------------------------------------- /src/ofxSyphonNSObject.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/src/ofxSyphonNSObject.mm -------------------------------------------------------------------------------- /src/ofxSyphonServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/src/ofxSyphonServer.h -------------------------------------------------------------------------------- /src/ofxSyphonServer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/src/ofxSyphonServer.mm -------------------------------------------------------------------------------- /src/ofxSyphonServerDirectory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/src/ofxSyphonServerDirectory.h -------------------------------------------------------------------------------- /src/ofxSyphonServerDirectory.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astellato/ofxSyphon/HEAD/src/ofxSyphonServerDirectory.mm --------------------------------------------------------------------------------