├── .gitignore ├── Example_Receive ├── Example_Receive.sln ├── Example_Receive.vcxproj ├── Example_Receive.vcxproj.filters ├── addons.make ├── icon.rc └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── Example_Send ├── Example_Send.sln ├── Example_Send.vcxproj ├── Example_Send.vcxproj.filters ├── addons.make ├── icon.rc └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── LICENSE ├── README.md ├── addon_config.mk ├── libs └── SpoutSDK │ ├── licence.txt │ └── src │ ├── Spout.cpp │ ├── Spout.h │ ├── SpoutCommon.h │ ├── SpoutCopy.cpp │ ├── SpoutCopy.h │ ├── SpoutDirectX.cpp │ ├── SpoutDirectX.h │ ├── SpoutFrameCount.cpp │ ├── SpoutFrameCount.h │ ├── SpoutGL.cpp │ ├── SpoutGL.h │ ├── SpoutGLextensions.cpp │ ├── SpoutGLextensions.h │ ├── SpoutReceiver.cpp │ ├── SpoutReceiver.h │ ├── SpoutSender.cpp │ ├── SpoutSender.h │ ├── SpoutSenderNames.cpp │ ├── SpoutSenderNames.h │ ├── SpoutSharedMemory.cpp │ ├── SpoutSharedMemory.h │ ├── SpoutUtils.cpp │ └── SpoutUtils.h ├── ofxSpoutLib ├── ofxSpout.props ├── ofxSpout.vcxproj └── ofxSpout.vcxproj.filters ├── ofxaddonx_thumbnail.png └── src ├── ofxSpout.h └── ofxSpout ├── Receiver.cpp ├── Receiver.h ├── Sender.cpp ├── Sender.h ├── Utils.cpp └── Utils.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/.gitignore -------------------------------------------------------------------------------- /Example_Receive/Example_Receive.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/Example_Receive/Example_Receive.sln -------------------------------------------------------------------------------- /Example_Receive/Example_Receive.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/Example_Receive/Example_Receive.vcxproj -------------------------------------------------------------------------------- /Example_Receive/Example_Receive.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/Example_Receive/Example_Receive.vcxproj.filters -------------------------------------------------------------------------------- /Example_Receive/addons.make: -------------------------------------------------------------------------------- 1 | ofxSpout 2 | -------------------------------------------------------------------------------- /Example_Receive/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/Example_Receive/icon.rc -------------------------------------------------------------------------------- /Example_Receive/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/Example_Receive/src/main.cpp -------------------------------------------------------------------------------- /Example_Receive/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/Example_Receive/src/ofApp.cpp -------------------------------------------------------------------------------- /Example_Receive/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/Example_Receive/src/ofApp.h -------------------------------------------------------------------------------- /Example_Send/Example_Send.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/Example_Send/Example_Send.sln -------------------------------------------------------------------------------- /Example_Send/Example_Send.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/Example_Send/Example_Send.vcxproj -------------------------------------------------------------------------------- /Example_Send/Example_Send.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/Example_Send/Example_Send.vcxproj.filters -------------------------------------------------------------------------------- /Example_Send/addons.make: -------------------------------------------------------------------------------- 1 | ofxSpout 2 | -------------------------------------------------------------------------------- /Example_Send/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/Example_Send/icon.rc -------------------------------------------------------------------------------- /Example_Send/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/Example_Send/src/main.cpp -------------------------------------------------------------------------------- /Example_Send/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/Example_Send/src/ofApp.cpp -------------------------------------------------------------------------------- /Example_Send/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/Example_Send/src/ofApp.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/README.md -------------------------------------------------------------------------------- /addon_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/addon_config.mk -------------------------------------------------------------------------------- /libs/SpoutSDK/licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/libs/SpoutSDK/licence.txt -------------------------------------------------------------------------------- /libs/SpoutSDK/src/Spout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/libs/SpoutSDK/src/Spout.cpp -------------------------------------------------------------------------------- /libs/SpoutSDK/src/Spout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/libs/SpoutSDK/src/Spout.h -------------------------------------------------------------------------------- /libs/SpoutSDK/src/SpoutCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/libs/SpoutSDK/src/SpoutCommon.h -------------------------------------------------------------------------------- /libs/SpoutSDK/src/SpoutCopy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/libs/SpoutSDK/src/SpoutCopy.cpp -------------------------------------------------------------------------------- /libs/SpoutSDK/src/SpoutCopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/libs/SpoutSDK/src/SpoutCopy.h -------------------------------------------------------------------------------- /libs/SpoutSDK/src/SpoutDirectX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/libs/SpoutSDK/src/SpoutDirectX.cpp -------------------------------------------------------------------------------- /libs/SpoutSDK/src/SpoutDirectX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/libs/SpoutSDK/src/SpoutDirectX.h -------------------------------------------------------------------------------- /libs/SpoutSDK/src/SpoutFrameCount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/libs/SpoutSDK/src/SpoutFrameCount.cpp -------------------------------------------------------------------------------- /libs/SpoutSDK/src/SpoutFrameCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/libs/SpoutSDK/src/SpoutFrameCount.h -------------------------------------------------------------------------------- /libs/SpoutSDK/src/SpoutGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/libs/SpoutSDK/src/SpoutGL.cpp -------------------------------------------------------------------------------- /libs/SpoutSDK/src/SpoutGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/libs/SpoutSDK/src/SpoutGL.h -------------------------------------------------------------------------------- /libs/SpoutSDK/src/SpoutGLextensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/libs/SpoutSDK/src/SpoutGLextensions.cpp -------------------------------------------------------------------------------- /libs/SpoutSDK/src/SpoutGLextensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/libs/SpoutSDK/src/SpoutGLextensions.h -------------------------------------------------------------------------------- /libs/SpoutSDK/src/SpoutReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/libs/SpoutSDK/src/SpoutReceiver.cpp -------------------------------------------------------------------------------- /libs/SpoutSDK/src/SpoutReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/libs/SpoutSDK/src/SpoutReceiver.h -------------------------------------------------------------------------------- /libs/SpoutSDK/src/SpoutSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/libs/SpoutSDK/src/SpoutSender.cpp -------------------------------------------------------------------------------- /libs/SpoutSDK/src/SpoutSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/libs/SpoutSDK/src/SpoutSender.h -------------------------------------------------------------------------------- /libs/SpoutSDK/src/SpoutSenderNames.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/libs/SpoutSDK/src/SpoutSenderNames.cpp -------------------------------------------------------------------------------- /libs/SpoutSDK/src/SpoutSenderNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/libs/SpoutSDK/src/SpoutSenderNames.h -------------------------------------------------------------------------------- /libs/SpoutSDK/src/SpoutSharedMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/libs/SpoutSDK/src/SpoutSharedMemory.cpp -------------------------------------------------------------------------------- /libs/SpoutSDK/src/SpoutSharedMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/libs/SpoutSDK/src/SpoutSharedMemory.h -------------------------------------------------------------------------------- /libs/SpoutSDK/src/SpoutUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/libs/SpoutSDK/src/SpoutUtils.cpp -------------------------------------------------------------------------------- /libs/SpoutSDK/src/SpoutUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/libs/SpoutSDK/src/SpoutUtils.h -------------------------------------------------------------------------------- /ofxSpoutLib/ofxSpout.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/ofxSpoutLib/ofxSpout.props -------------------------------------------------------------------------------- /ofxSpoutLib/ofxSpout.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/ofxSpoutLib/ofxSpout.vcxproj -------------------------------------------------------------------------------- /ofxSpoutLib/ofxSpout.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/ofxSpoutLib/ofxSpout.vcxproj.filters -------------------------------------------------------------------------------- /ofxaddonx_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/ofxaddonx_thumbnail.png -------------------------------------------------------------------------------- /src/ofxSpout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/src/ofxSpout.h -------------------------------------------------------------------------------- /src/ofxSpout/Receiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/src/ofxSpout/Receiver.cpp -------------------------------------------------------------------------------- /src/ofxSpout/Receiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/src/ofxSpout/Receiver.h -------------------------------------------------------------------------------- /src/ofxSpout/Sender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/src/ofxSpout/Sender.cpp -------------------------------------------------------------------------------- /src/ofxSpout/Sender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/src/ofxSpout/Sender.h -------------------------------------------------------------------------------- /src/ofxSpout/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/src/ofxSpout/Utils.cpp -------------------------------------------------------------------------------- /src/ofxSpout/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotwoods/ofxSpout/HEAD/src/ofxSpout/Utils.h --------------------------------------------------------------------------------