├── .gitignore ├── LICENSE ├── README.md ├── assets ├── 0.jpg ├── 10.glsl ├── 13.glsl ├── AcidAtTheDisco.glsl ├── DataTransfer.glsl ├── defaulttextures.xml ├── defaulttexturesquicktime.xml ├── fbo.xml ├── fboleft.xml ├── fboright.xml ├── fbos.json ├── fbos.xml ├── fbotexture.frag ├── help.jpg ├── mixes.xml ├── mixfbo.frag ├── passthru.frag ├── passthru.vert ├── shadertoy.inc ├── shadertoy.min └── textures.xml ├── cinderblock.png ├── cinderblock.xml ├── include ├── LiveParam.h ├── VDAnimation.h ├── VDFbo.h ├── VDLog.h ├── VDMix.h ├── VDRouter.h ├── VDSession.h ├── VDSettings.h ├── VDShader.h ├── VDTexture.h ├── VDUI.h ├── VDUIAnimation.h ├── VDUIAudio.h ├── VDUIBlend.h ├── VDUIChannels.h ├── VDUIColor.h ├── VDUIFbos.h ├── VDUIMidi.h ├── VDUIMouse.h ├── VDUIOsc.h ├── VDUIRender.h ├── VDUIShaders.h ├── VDUITempo.h ├── VDUITextures.h ├── VDUIWarps.h ├── VDUIWebsockets.h ├── VDUtils.h ├── VDWebsocket.h └── Watchdog.h ├── install.sh ├── lib ├── libboost_chrono-vc120-mt-1_58.lib ├── libboost_chrono-vc120-mt-gd-1_58.lib ├── libboost_chrono-vc120-mt-s-1_58.lib ├── libboost_chrono-vc120-mt-sgd-1_58.lib ├── libboost_chrono-vc120-s-1_58.lib ├── libboost_chrono-vc120-sgd-1_58.lib ├── libboost_date_time-vc120-mt-1_58.lib ├── libboost_date_time-vc120-mt-gd-1_58.lib ├── libboost_date_time-vc120-mt-s-1_58.lib ├── libboost_date_time-vc120-mt-sgd-1_58.lib ├── libboost_date_time-vc120-s-1_58.lib ├── libboost_date_time-vc120-sgd-1_58.lib ├── libboost_regex-vc120-mt-1_58.lib ├── libboost_regex-vc120-mt-gd-1_58.lib ├── libboost_regex-vc120-mt-s-1_58.lib ├── libboost_regex-vc120-mt-sgd-1_58.lib ├── libboost_regex-vc120-s-1_58.lib ├── libboost_regex-vc120-sgd-1_58.lib ├── libboost_thread-vc120-mt-1_58.lib ├── libboost_thread-vc120-mt-gd-1_58.lib ├── libboost_thread-vc120-mt-s-1_58.lib └── libboost_thread-vc120-mt-sgd-1_58.lib ├── linux ├── CMakeLists.txt └── cibuild ├── src ├── LiveParam.cpp ├── VDAnimation.cpp ├── VDFbo.cpp ├── VDLog.cpp ├── VDMix.cpp ├── VDRouter.cpp ├── VDSession.cpp ├── VDSettings.cpp ├── VDShader.cpp ├── VDTexture.cpp ├── VDUI.cpp ├── VDUIAnimation.cpp ├── VDUIAudio.cpp ├── VDUIBlend.cpp ├── VDUIChannels.cpp ├── VDUIColor.cpp ├── VDUIFbos.cpp ├── VDUIMidi.cpp ├── VDUIMouse.cpp ├── VDUIOsc.cpp ├── VDUIRender.cpp ├── VDUIShaders.cpp ├── VDUITempo.cpp ├── VDUITextures.cpp ├── VDUIWarps.cpp ├── VDUIWebsockets.cpp ├── VDUtils.cpp └── VDWebsocket.cpp └── templates ├── Videodromm-Textures ├── assets │ ├── 0.jpg │ ├── defaulttextures.xml │ ├── defaulttexturesquicktime.xml │ ├── fingers.mov │ ├── mandalas │ │ ├── p0001.jpg │ │ ├── p0002.jpg │ │ ├── p0003.jpg │ │ ├── p0004.jpg │ │ ├── p0005.jpg │ │ ├── p0006.jpg │ │ └── p0007.jpg │ ├── mixes.xml │ ├── passthru.frag │ ├── passthru.vert │ └── pupilles640x480.hap.mov ├── src │ └── _TBOX_PREFIX_App.cpp └── template.xml └── Videodromm ├── assets ├── 0.jpg ├── Test.glsl ├── defaulttextures.xml ├── defaulttexturesquicktime.xml ├── fingers.mov ├── mandalas │ ├── p0001.jpg │ ├── p0002.jpg │ ├── p0003.jpg │ ├── p0004.jpg │ ├── p0005.jpg │ ├── p0006.jpg │ └── p0007.jpg ├── mixes.xml ├── mixfbo.frag ├── passthru.frag ├── passthru.vert ├── pupilles640x480.hap.mov ├── shadertoy.inc ├── texture0.frag ├── texture1.frag └── textures.xml ├── src └── _TBOX_PREFIX_App.cpp └── template.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/README.md -------------------------------------------------------------------------------- /assets/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/assets/0.jpg -------------------------------------------------------------------------------- /assets/10.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/assets/10.glsl -------------------------------------------------------------------------------- /assets/13.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/assets/13.glsl -------------------------------------------------------------------------------- /assets/AcidAtTheDisco.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/assets/AcidAtTheDisco.glsl -------------------------------------------------------------------------------- /assets/DataTransfer.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/assets/DataTransfer.glsl -------------------------------------------------------------------------------- /assets/defaulttextures.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/assets/defaulttextures.xml -------------------------------------------------------------------------------- /assets/defaulttexturesquicktime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/assets/defaulttexturesquicktime.xml -------------------------------------------------------------------------------- /assets/fbo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/assets/fbo.xml -------------------------------------------------------------------------------- /assets/fboleft.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/assets/fboleft.xml -------------------------------------------------------------------------------- /assets/fboright.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/assets/fboright.xml -------------------------------------------------------------------------------- /assets/fbos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/assets/fbos.json -------------------------------------------------------------------------------- /assets/fbos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/assets/fbos.xml -------------------------------------------------------------------------------- /assets/fbotexture.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/assets/fbotexture.frag -------------------------------------------------------------------------------- /assets/help.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/assets/help.jpg -------------------------------------------------------------------------------- /assets/mixes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/assets/mixes.xml -------------------------------------------------------------------------------- /assets/mixfbo.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/assets/mixfbo.frag -------------------------------------------------------------------------------- /assets/passthru.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/assets/passthru.frag -------------------------------------------------------------------------------- /assets/passthru.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/assets/passthru.vert -------------------------------------------------------------------------------- /assets/shadertoy.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/assets/shadertoy.inc -------------------------------------------------------------------------------- /assets/shadertoy.min: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/assets/shadertoy.min -------------------------------------------------------------------------------- /assets/textures.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/assets/textures.xml -------------------------------------------------------------------------------- /cinderblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/cinderblock.png -------------------------------------------------------------------------------- /cinderblock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/cinderblock.xml -------------------------------------------------------------------------------- /include/LiveParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/include/LiveParam.h -------------------------------------------------------------------------------- /include/VDAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/include/VDAnimation.h -------------------------------------------------------------------------------- /include/VDFbo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/include/VDFbo.h -------------------------------------------------------------------------------- /include/VDLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/include/VDLog.h -------------------------------------------------------------------------------- /include/VDMix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/include/VDMix.h -------------------------------------------------------------------------------- /include/VDRouter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/include/VDRouter.h -------------------------------------------------------------------------------- /include/VDSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/include/VDSession.h -------------------------------------------------------------------------------- /include/VDSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/include/VDSettings.h -------------------------------------------------------------------------------- /include/VDShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/include/VDShader.h -------------------------------------------------------------------------------- /include/VDTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/include/VDTexture.h -------------------------------------------------------------------------------- /include/VDUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/include/VDUI.h -------------------------------------------------------------------------------- /include/VDUIAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/include/VDUIAnimation.h -------------------------------------------------------------------------------- /include/VDUIAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/include/VDUIAudio.h -------------------------------------------------------------------------------- /include/VDUIBlend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/include/VDUIBlend.h -------------------------------------------------------------------------------- /include/VDUIChannels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/include/VDUIChannels.h -------------------------------------------------------------------------------- /include/VDUIColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/include/VDUIColor.h -------------------------------------------------------------------------------- /include/VDUIFbos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/include/VDUIFbos.h -------------------------------------------------------------------------------- /include/VDUIMidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/include/VDUIMidi.h -------------------------------------------------------------------------------- /include/VDUIMouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/include/VDUIMouse.h -------------------------------------------------------------------------------- /include/VDUIOsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/include/VDUIOsc.h -------------------------------------------------------------------------------- /include/VDUIRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/include/VDUIRender.h -------------------------------------------------------------------------------- /include/VDUIShaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/include/VDUIShaders.h -------------------------------------------------------------------------------- /include/VDUITempo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/include/VDUITempo.h -------------------------------------------------------------------------------- /include/VDUITextures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/include/VDUITextures.h -------------------------------------------------------------------------------- /include/VDUIWarps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/include/VDUIWarps.h -------------------------------------------------------------------------------- /include/VDUIWebsockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/include/VDUIWebsockets.h -------------------------------------------------------------------------------- /include/VDUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/include/VDUtils.h -------------------------------------------------------------------------------- /include/VDWebsocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/include/VDWebsocket.h -------------------------------------------------------------------------------- /include/Watchdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/include/Watchdog.h -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/install.sh -------------------------------------------------------------------------------- /lib/libboost_chrono-vc120-mt-1_58.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/lib/libboost_chrono-vc120-mt-1_58.lib -------------------------------------------------------------------------------- /lib/libboost_chrono-vc120-mt-gd-1_58.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/lib/libboost_chrono-vc120-mt-gd-1_58.lib -------------------------------------------------------------------------------- /lib/libboost_chrono-vc120-mt-s-1_58.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/lib/libboost_chrono-vc120-mt-s-1_58.lib -------------------------------------------------------------------------------- /lib/libboost_chrono-vc120-mt-sgd-1_58.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/lib/libboost_chrono-vc120-mt-sgd-1_58.lib -------------------------------------------------------------------------------- /lib/libboost_chrono-vc120-s-1_58.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/lib/libboost_chrono-vc120-s-1_58.lib -------------------------------------------------------------------------------- /lib/libboost_chrono-vc120-sgd-1_58.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/lib/libboost_chrono-vc120-sgd-1_58.lib -------------------------------------------------------------------------------- /lib/libboost_date_time-vc120-mt-1_58.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/lib/libboost_date_time-vc120-mt-1_58.lib -------------------------------------------------------------------------------- /lib/libboost_date_time-vc120-mt-gd-1_58.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/lib/libboost_date_time-vc120-mt-gd-1_58.lib -------------------------------------------------------------------------------- /lib/libboost_date_time-vc120-mt-s-1_58.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/lib/libboost_date_time-vc120-mt-s-1_58.lib -------------------------------------------------------------------------------- /lib/libboost_date_time-vc120-mt-sgd-1_58.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/lib/libboost_date_time-vc120-mt-sgd-1_58.lib -------------------------------------------------------------------------------- /lib/libboost_date_time-vc120-s-1_58.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/lib/libboost_date_time-vc120-s-1_58.lib -------------------------------------------------------------------------------- /lib/libboost_date_time-vc120-sgd-1_58.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/lib/libboost_date_time-vc120-sgd-1_58.lib -------------------------------------------------------------------------------- /lib/libboost_regex-vc120-mt-1_58.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/lib/libboost_regex-vc120-mt-1_58.lib -------------------------------------------------------------------------------- /lib/libboost_regex-vc120-mt-gd-1_58.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/lib/libboost_regex-vc120-mt-gd-1_58.lib -------------------------------------------------------------------------------- /lib/libboost_regex-vc120-mt-s-1_58.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/lib/libboost_regex-vc120-mt-s-1_58.lib -------------------------------------------------------------------------------- /lib/libboost_regex-vc120-mt-sgd-1_58.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/lib/libboost_regex-vc120-mt-sgd-1_58.lib -------------------------------------------------------------------------------- /lib/libboost_regex-vc120-s-1_58.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/lib/libboost_regex-vc120-s-1_58.lib -------------------------------------------------------------------------------- /lib/libboost_regex-vc120-sgd-1_58.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/lib/libboost_regex-vc120-sgd-1_58.lib -------------------------------------------------------------------------------- /lib/libboost_thread-vc120-mt-1_58.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/lib/libboost_thread-vc120-mt-1_58.lib -------------------------------------------------------------------------------- /lib/libboost_thread-vc120-mt-gd-1_58.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/lib/libboost_thread-vc120-mt-gd-1_58.lib -------------------------------------------------------------------------------- /lib/libboost_thread-vc120-mt-s-1_58.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/lib/libboost_thread-vc120-mt-s-1_58.lib -------------------------------------------------------------------------------- /lib/libboost_thread-vc120-mt-sgd-1_58.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/lib/libboost_thread-vc120-mt-sgd-1_58.lib -------------------------------------------------------------------------------- /linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/linux/CMakeLists.txt -------------------------------------------------------------------------------- /linux/cibuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/linux/cibuild -------------------------------------------------------------------------------- /src/LiveParam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/src/LiveParam.cpp -------------------------------------------------------------------------------- /src/VDAnimation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/src/VDAnimation.cpp -------------------------------------------------------------------------------- /src/VDFbo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/src/VDFbo.cpp -------------------------------------------------------------------------------- /src/VDLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/src/VDLog.cpp -------------------------------------------------------------------------------- /src/VDMix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/src/VDMix.cpp -------------------------------------------------------------------------------- /src/VDRouter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/src/VDRouter.cpp -------------------------------------------------------------------------------- /src/VDSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/src/VDSession.cpp -------------------------------------------------------------------------------- /src/VDSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/src/VDSettings.cpp -------------------------------------------------------------------------------- /src/VDShader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/src/VDShader.cpp -------------------------------------------------------------------------------- /src/VDTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/src/VDTexture.cpp -------------------------------------------------------------------------------- /src/VDUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/src/VDUI.cpp -------------------------------------------------------------------------------- /src/VDUIAnimation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/src/VDUIAnimation.cpp -------------------------------------------------------------------------------- /src/VDUIAudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/src/VDUIAudio.cpp -------------------------------------------------------------------------------- /src/VDUIBlend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/src/VDUIBlend.cpp -------------------------------------------------------------------------------- /src/VDUIChannels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/src/VDUIChannels.cpp -------------------------------------------------------------------------------- /src/VDUIColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/src/VDUIColor.cpp -------------------------------------------------------------------------------- /src/VDUIFbos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/src/VDUIFbos.cpp -------------------------------------------------------------------------------- /src/VDUIMidi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/src/VDUIMidi.cpp -------------------------------------------------------------------------------- /src/VDUIMouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/src/VDUIMouse.cpp -------------------------------------------------------------------------------- /src/VDUIOsc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/src/VDUIOsc.cpp -------------------------------------------------------------------------------- /src/VDUIRender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/src/VDUIRender.cpp -------------------------------------------------------------------------------- /src/VDUIShaders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/src/VDUIShaders.cpp -------------------------------------------------------------------------------- /src/VDUITempo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/src/VDUITempo.cpp -------------------------------------------------------------------------------- /src/VDUITextures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/src/VDUITextures.cpp -------------------------------------------------------------------------------- /src/VDUIWarps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/src/VDUIWarps.cpp -------------------------------------------------------------------------------- /src/VDUIWebsockets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/src/VDUIWebsockets.cpp -------------------------------------------------------------------------------- /src/VDUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/src/VDUtils.cpp -------------------------------------------------------------------------------- /src/VDWebsocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/src/VDWebsocket.cpp -------------------------------------------------------------------------------- /templates/Videodromm-Textures/assets/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/templates/Videodromm-Textures/assets/0.jpg -------------------------------------------------------------------------------- /templates/Videodromm-Textures/assets/defaulttextures.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/templates/Videodromm-Textures/assets/defaulttextures.xml -------------------------------------------------------------------------------- /templates/Videodromm-Textures/assets/defaulttexturesquicktime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/templates/Videodromm-Textures/assets/defaulttexturesquicktime.xml -------------------------------------------------------------------------------- /templates/Videodromm-Textures/assets/fingers.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/templates/Videodromm-Textures/assets/fingers.mov -------------------------------------------------------------------------------- /templates/Videodromm-Textures/assets/mandalas/p0001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/templates/Videodromm-Textures/assets/mandalas/p0001.jpg -------------------------------------------------------------------------------- /templates/Videodromm-Textures/assets/mandalas/p0002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/templates/Videodromm-Textures/assets/mandalas/p0002.jpg -------------------------------------------------------------------------------- /templates/Videodromm-Textures/assets/mandalas/p0003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/templates/Videodromm-Textures/assets/mandalas/p0003.jpg -------------------------------------------------------------------------------- /templates/Videodromm-Textures/assets/mandalas/p0004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/templates/Videodromm-Textures/assets/mandalas/p0004.jpg -------------------------------------------------------------------------------- /templates/Videodromm-Textures/assets/mandalas/p0005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/templates/Videodromm-Textures/assets/mandalas/p0005.jpg -------------------------------------------------------------------------------- /templates/Videodromm-Textures/assets/mandalas/p0006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/templates/Videodromm-Textures/assets/mandalas/p0006.jpg -------------------------------------------------------------------------------- /templates/Videodromm-Textures/assets/mandalas/p0007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/templates/Videodromm-Textures/assets/mandalas/p0007.jpg -------------------------------------------------------------------------------- /templates/Videodromm-Textures/assets/mixes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/templates/Videodromm-Textures/assets/mixes.xml -------------------------------------------------------------------------------- /templates/Videodromm-Textures/assets/passthru.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/templates/Videodromm-Textures/assets/passthru.frag -------------------------------------------------------------------------------- /templates/Videodromm-Textures/assets/passthru.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/templates/Videodromm-Textures/assets/passthru.vert -------------------------------------------------------------------------------- /templates/Videodromm-Textures/assets/pupilles640x480.hap.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/templates/Videodromm-Textures/assets/pupilles640x480.hap.mov -------------------------------------------------------------------------------- /templates/Videodromm-Textures/src/_TBOX_PREFIX_App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/templates/Videodromm-Textures/src/_TBOX_PREFIX_App.cpp -------------------------------------------------------------------------------- /templates/Videodromm-Textures/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/templates/Videodromm-Textures/template.xml -------------------------------------------------------------------------------- /templates/Videodromm/assets/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/templates/Videodromm/assets/0.jpg -------------------------------------------------------------------------------- /templates/Videodromm/assets/Test.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/templates/Videodromm/assets/Test.glsl -------------------------------------------------------------------------------- /templates/Videodromm/assets/defaulttextures.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/templates/Videodromm/assets/defaulttextures.xml -------------------------------------------------------------------------------- /templates/Videodromm/assets/defaulttexturesquicktime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/templates/Videodromm/assets/defaulttexturesquicktime.xml -------------------------------------------------------------------------------- /templates/Videodromm/assets/fingers.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/templates/Videodromm/assets/fingers.mov -------------------------------------------------------------------------------- /templates/Videodromm/assets/mandalas/p0001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/templates/Videodromm/assets/mandalas/p0001.jpg -------------------------------------------------------------------------------- /templates/Videodromm/assets/mandalas/p0002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/templates/Videodromm/assets/mandalas/p0002.jpg -------------------------------------------------------------------------------- /templates/Videodromm/assets/mandalas/p0003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/templates/Videodromm/assets/mandalas/p0003.jpg -------------------------------------------------------------------------------- /templates/Videodromm/assets/mandalas/p0004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/templates/Videodromm/assets/mandalas/p0004.jpg -------------------------------------------------------------------------------- /templates/Videodromm/assets/mandalas/p0005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/templates/Videodromm/assets/mandalas/p0005.jpg -------------------------------------------------------------------------------- /templates/Videodromm/assets/mandalas/p0006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/templates/Videodromm/assets/mandalas/p0006.jpg -------------------------------------------------------------------------------- /templates/Videodromm/assets/mandalas/p0007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/templates/Videodromm/assets/mandalas/p0007.jpg -------------------------------------------------------------------------------- /templates/Videodromm/assets/mixes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/templates/Videodromm/assets/mixes.xml -------------------------------------------------------------------------------- /templates/Videodromm/assets/mixfbo.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/templates/Videodromm/assets/mixfbo.frag -------------------------------------------------------------------------------- /templates/Videodromm/assets/passthru.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/templates/Videodromm/assets/passthru.frag -------------------------------------------------------------------------------- /templates/Videodromm/assets/passthru.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/templates/Videodromm/assets/passthru.vert -------------------------------------------------------------------------------- /templates/Videodromm/assets/pupilles640x480.hap.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/templates/Videodromm/assets/pupilles640x480.hap.mov -------------------------------------------------------------------------------- /templates/Videodromm/assets/shadertoy.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/templates/Videodromm/assets/shadertoy.inc -------------------------------------------------------------------------------- /templates/Videodromm/assets/texture0.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/templates/Videodromm/assets/texture0.frag -------------------------------------------------------------------------------- /templates/Videodromm/assets/texture1.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/templates/Videodromm/assets/texture1.frag -------------------------------------------------------------------------------- /templates/Videodromm/assets/textures.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/templates/Videodromm/assets/textures.xml -------------------------------------------------------------------------------- /templates/Videodromm/src/_TBOX_PREFIX_App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/templates/Videodromm/src/_TBOX_PREFIX_App.cpp -------------------------------------------------------------------------------- /templates/Videodromm/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videodromm/Cinder-Videodromm/HEAD/templates/Videodromm/template.xml --------------------------------------------------------------------------------