├── .gitignore ├── README.md ├── example-ShaderLiveCoding ├── Makefile ├── Project.xcconfig ├── ShaderLiveCoding.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── andreasmuller.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── StandaloneTimingServer Debug.xcscheme │ └── xcuserdata │ │ └── andreasmuller.xcuserdatad │ │ └── xcschemes │ │ ├── StandaloneTimingServer Release.xcscheme │ │ └── xcschememanagement.plist ├── addons.make ├── bin │ ├── data │ │ ├── .gitkeep │ │ ├── Fonts │ │ │ └── DIN.otf │ │ ├── Shaders │ │ │ ├── Empty.frag │ │ │ ├── Empty.vert │ │ │ ├── LiveShader.frag │ │ │ ├── LiveShader.vert │ │ │ ├── LiveShaderDesktop.frag │ │ │ └── LiveShaderDesktop.vert │ │ └── Textures │ │ │ └── landangui.jpg │ └── libs │ │ └── .gitkeep ├── config.make ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── license.md └── src ├── ofxAutoReloadedShader.cpp └── ofxAutoReloadedShader.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/ofxAutoReloadedShader/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/ofxAutoReloadedShader/HEAD/README.md -------------------------------------------------------------------------------- /example-ShaderLiveCoding/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/ofxAutoReloadedShader/HEAD/example-ShaderLiveCoding/Makefile -------------------------------------------------------------------------------- /example-ShaderLiveCoding/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/ofxAutoReloadedShader/HEAD/example-ShaderLiveCoding/Project.xcconfig -------------------------------------------------------------------------------- /example-ShaderLiveCoding/ShaderLiveCoding.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/ofxAutoReloadedShader/HEAD/example-ShaderLiveCoding/ShaderLiveCoding.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example-ShaderLiveCoding/ShaderLiveCoding.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/ofxAutoReloadedShader/HEAD/example-ShaderLiveCoding/ShaderLiveCoding.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example-ShaderLiveCoding/ShaderLiveCoding.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/ofxAutoReloadedShader/HEAD/example-ShaderLiveCoding/ShaderLiveCoding.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /example-ShaderLiveCoding/ShaderLiveCoding.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/ofxAutoReloadedShader/HEAD/example-ShaderLiveCoding/ShaderLiveCoding.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example-ShaderLiveCoding/ShaderLiveCoding.xcodeproj/xcshareddata/xcschemes/StandaloneTimingServer Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/ofxAutoReloadedShader/HEAD/example-ShaderLiveCoding/ShaderLiveCoding.xcodeproj/xcshareddata/xcschemes/StandaloneTimingServer Debug.xcscheme -------------------------------------------------------------------------------- /example-ShaderLiveCoding/ShaderLiveCoding.xcodeproj/xcuserdata/andreasmuller.xcuserdatad/xcschemes/StandaloneTimingServer Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/ofxAutoReloadedShader/HEAD/example-ShaderLiveCoding/ShaderLiveCoding.xcodeproj/xcuserdata/andreasmuller.xcuserdatad/xcschemes/StandaloneTimingServer Release.xcscheme -------------------------------------------------------------------------------- /example-ShaderLiveCoding/ShaderLiveCoding.xcodeproj/xcuserdata/andreasmuller.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/ofxAutoReloadedShader/HEAD/example-ShaderLiveCoding/ShaderLiveCoding.xcodeproj/xcuserdata/andreasmuller.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /example-ShaderLiveCoding/addons.make: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /example-ShaderLiveCoding/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-ShaderLiveCoding/bin/data/Fonts/DIN.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/ofxAutoReloadedShader/HEAD/example-ShaderLiveCoding/bin/data/Fonts/DIN.otf -------------------------------------------------------------------------------- /example-ShaderLiveCoding/bin/data/Shaders/Empty.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/ofxAutoReloadedShader/HEAD/example-ShaderLiveCoding/bin/data/Shaders/Empty.frag -------------------------------------------------------------------------------- /example-ShaderLiveCoding/bin/data/Shaders/Empty.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/ofxAutoReloadedShader/HEAD/example-ShaderLiveCoding/bin/data/Shaders/Empty.vert -------------------------------------------------------------------------------- /example-ShaderLiveCoding/bin/data/Shaders/LiveShader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/ofxAutoReloadedShader/HEAD/example-ShaderLiveCoding/bin/data/Shaders/LiveShader.frag -------------------------------------------------------------------------------- /example-ShaderLiveCoding/bin/data/Shaders/LiveShader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/ofxAutoReloadedShader/HEAD/example-ShaderLiveCoding/bin/data/Shaders/LiveShader.vert -------------------------------------------------------------------------------- /example-ShaderLiveCoding/bin/data/Shaders/LiveShaderDesktop.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/ofxAutoReloadedShader/HEAD/example-ShaderLiveCoding/bin/data/Shaders/LiveShaderDesktop.frag -------------------------------------------------------------------------------- /example-ShaderLiveCoding/bin/data/Shaders/LiveShaderDesktop.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/ofxAutoReloadedShader/HEAD/example-ShaderLiveCoding/bin/data/Shaders/LiveShaderDesktop.vert -------------------------------------------------------------------------------- /example-ShaderLiveCoding/bin/data/Textures/landangui.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/ofxAutoReloadedShader/HEAD/example-ShaderLiveCoding/bin/data/Textures/landangui.jpg -------------------------------------------------------------------------------- /example-ShaderLiveCoding/bin/libs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-ShaderLiveCoding/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/ofxAutoReloadedShader/HEAD/example-ShaderLiveCoding/config.make -------------------------------------------------------------------------------- /example-ShaderLiveCoding/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/ofxAutoReloadedShader/HEAD/example-ShaderLiveCoding/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example-ShaderLiveCoding/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/ofxAutoReloadedShader/HEAD/example-ShaderLiveCoding/src/main.cpp -------------------------------------------------------------------------------- /example-ShaderLiveCoding/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/ofxAutoReloadedShader/HEAD/example-ShaderLiveCoding/src/testApp.cpp -------------------------------------------------------------------------------- /example-ShaderLiveCoding/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/ofxAutoReloadedShader/HEAD/example-ShaderLiveCoding/src/testApp.h -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/ofxAutoReloadedShader/HEAD/license.md -------------------------------------------------------------------------------- /src/ofxAutoReloadedShader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/ofxAutoReloadedShader/HEAD/src/ofxAutoReloadedShader.cpp -------------------------------------------------------------------------------- /src/ofxAutoReloadedShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreasmuller/ofxAutoReloadedShader/HEAD/src/ofxAutoReloadedShader.h --------------------------------------------------------------------------------