├── .DS_Store ├── Makefile ├── Project.xcconfig ├── README.md ├── VIDEO_WAAAVES_2_5.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ ├── memexicon.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ └── noraleech.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── xcshareddata │ └── xcschemes │ │ ├── VIDEO_WAAAVES_2_5 Debug.xcscheme │ │ └── VIDEO_WAAAVES_2_5 Release.xcscheme └── xcuserdata │ └── noraleech.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── addons.make ├── b_wtrails.png ├── bin ├── .DS_Store ├── VIDEO_WAAAVES_2_5Debug.app │ └── Contents │ │ ├── Frameworks │ │ └── libfmodex.dylib │ │ ├── Info.plist │ │ ├── MacOS │ │ ├── VIDEO_WAAAVES_2_5Debug │ │ └── libndi.4.dylib │ │ ├── PkgInfo │ │ └── Resources │ │ ├── icon-debug.icns │ │ └── imgui.ini ├── _DS_Store └── data │ ├── .DS_Store │ ├── _DS_Store │ └── shadersGL2 │ ├── .DS_Store │ ├── _DS_Store │ ├── shader_blur.frag │ ├── shader_blur.vert │ ├── shader_mixer.frag │ ├── shader_mixer.vert │ ├── shader_sharpen.frag │ └── shader_sharpen.vert ├── config.make ├── hypercuuube.png ├── libndi.4.dylib ├── openFrameworks-Info.plist ├── src ├── GuiApp.cpp ├── GuiApp.h ├── main.cpp ├── ofApp.cpp └── ofApp.h ├── swirl.png └── vw_2_5_updates.rtf /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/.DS_Store -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/Makefile -------------------------------------------------------------------------------- /Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/Project.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/README.md -------------------------------------------------------------------------------- /VIDEO_WAAAVES_2_5.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/VIDEO_WAAAVES_2_5.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /VIDEO_WAAAVES_2_5.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/VIDEO_WAAAVES_2_5.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /VIDEO_WAAAVES_2_5.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/VIDEO_WAAAVES_2_5.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /VIDEO_WAAAVES_2_5.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/VIDEO_WAAAVES_2_5.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /VIDEO_WAAAVES_2_5.xcodeproj/project.xcworkspace/xcuserdata/memexicon.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/VIDEO_WAAAVES_2_5.xcodeproj/project.xcworkspace/xcuserdata/memexicon.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /VIDEO_WAAAVES_2_5.xcodeproj/project.xcworkspace/xcuserdata/noraleech.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/VIDEO_WAAAVES_2_5.xcodeproj/project.xcworkspace/xcuserdata/noraleech.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /VIDEO_WAAAVES_2_5.xcodeproj/xcshareddata/xcschemes/VIDEO_WAAAVES_2_5 Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/VIDEO_WAAAVES_2_5.xcodeproj/xcshareddata/xcschemes/VIDEO_WAAAVES_2_5 Debug.xcscheme -------------------------------------------------------------------------------- /VIDEO_WAAAVES_2_5.xcodeproj/xcshareddata/xcschemes/VIDEO_WAAAVES_2_5 Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/VIDEO_WAAAVES_2_5.xcodeproj/xcshareddata/xcschemes/VIDEO_WAAAVES_2_5 Release.xcscheme -------------------------------------------------------------------------------- /VIDEO_WAAAVES_2_5.xcodeproj/xcuserdata/noraleech.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/VIDEO_WAAAVES_2_5.xcodeproj/xcuserdata/noraleech.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/addons.make -------------------------------------------------------------------------------- /b_wtrails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/b_wtrails.png -------------------------------------------------------------------------------- /bin/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/bin/.DS_Store -------------------------------------------------------------------------------- /bin/VIDEO_WAAAVES_2_5Debug.app/Contents/Frameworks/libfmodex.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/bin/VIDEO_WAAAVES_2_5Debug.app/Contents/Frameworks/libfmodex.dylib -------------------------------------------------------------------------------- /bin/VIDEO_WAAAVES_2_5Debug.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/bin/VIDEO_WAAAVES_2_5Debug.app/Contents/Info.plist -------------------------------------------------------------------------------- /bin/VIDEO_WAAAVES_2_5Debug.app/Contents/MacOS/VIDEO_WAAAVES_2_5Debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/bin/VIDEO_WAAAVES_2_5Debug.app/Contents/MacOS/VIDEO_WAAAVES_2_5Debug -------------------------------------------------------------------------------- /bin/VIDEO_WAAAVES_2_5Debug.app/Contents/MacOS/libndi.4.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/bin/VIDEO_WAAAVES_2_5Debug.app/Contents/MacOS/libndi.4.dylib -------------------------------------------------------------------------------- /bin/VIDEO_WAAAVES_2_5Debug.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /bin/VIDEO_WAAAVES_2_5Debug.app/Contents/Resources/icon-debug.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/bin/VIDEO_WAAAVES_2_5Debug.app/Contents/Resources/icon-debug.icns -------------------------------------------------------------------------------- /bin/VIDEO_WAAAVES_2_5Debug.app/Contents/Resources/imgui.ini: -------------------------------------------------------------------------------- 1 | [Window][Debug##Default] 2 | Pos=7,569 3 | Size=400,400 4 | Collapsed=1 5 | 6 | -------------------------------------------------------------------------------- /bin/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/bin/_DS_Store -------------------------------------------------------------------------------- /bin/data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/bin/data/.DS_Store -------------------------------------------------------------------------------- /bin/data/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/bin/data/_DS_Store -------------------------------------------------------------------------------- /bin/data/shadersGL2/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/bin/data/shadersGL2/.DS_Store -------------------------------------------------------------------------------- /bin/data/shadersGL2/_DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/bin/data/shadersGL2/_DS_Store -------------------------------------------------------------------------------- /bin/data/shadersGL2/shader_blur.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/bin/data/shadersGL2/shader_blur.frag -------------------------------------------------------------------------------- /bin/data/shadersGL2/shader_blur.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/bin/data/shadersGL2/shader_blur.vert -------------------------------------------------------------------------------- /bin/data/shadersGL2/shader_mixer.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/bin/data/shadersGL2/shader_mixer.frag -------------------------------------------------------------------------------- /bin/data/shadersGL2/shader_mixer.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/bin/data/shadersGL2/shader_mixer.vert -------------------------------------------------------------------------------- /bin/data/shadersGL2/shader_sharpen.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/bin/data/shadersGL2/shader_sharpen.frag -------------------------------------------------------------------------------- /bin/data/shadersGL2/shader_sharpen.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/bin/data/shadersGL2/shader_sharpen.vert -------------------------------------------------------------------------------- /config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/config.make -------------------------------------------------------------------------------- /hypercuuube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/hypercuuube.png -------------------------------------------------------------------------------- /libndi.4.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/libndi.4.dylib -------------------------------------------------------------------------------- /openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/openFrameworks-Info.plist -------------------------------------------------------------------------------- /src/GuiApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/src/GuiApp.cpp -------------------------------------------------------------------------------- /src/GuiApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/src/GuiApp.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/src/ofApp.cpp -------------------------------------------------------------------------------- /src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/src/ofApp.h -------------------------------------------------------------------------------- /swirl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/swirl.png -------------------------------------------------------------------------------- /vw_2_5_updates.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ex-zee-ex/VIDEO_WAAAVES_2.5_suite/HEAD/vw_2_5_updates.rtf --------------------------------------------------------------------------------