├── .gitignore ├── P_Malin_Reprojection ├── Makefile ├── P_Malin_Reprojection.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── P_Malin_Reprojection Debug.xcscheme │ │ └── P_Malin_Reprojection Release.xcscheme ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ └── shaders │ │ ├── p_malin_reprojection.frag │ │ └── tex04.jpg ├── config.make ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── README.md ├── SolalDR_PsychedelicLondon_2 ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ ├── images │ │ └── london.jpg │ │ └── shaders │ │ └── SolalDR_PsychedelicLondon-2.frag └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── iq_orbitTraps ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ └── shaders │ │ └── iq_orbitalTraps.frag ├── config.make ├── iq_orbitTraps.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── iq_orbitTraps Debug.xcscheme │ │ └── iq_orbitTraps Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── ofxaddons_thumbnail.png ├── raymarcherExample ├── Project.xcconfig ├── RayMarcher.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── RayWarper Debug.xcscheme │ │ └── RayWarper Release.xcscheme ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ └── shaders │ │ └── raymarch.frag ├── config.make ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── src ├── ofxShadertoy.cpp └── ofxShadertoy.h ├── tdhooper_GeodesicTiling ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ └── shaders │ │ └── tdhooper_GeodesicTiling.glsl ├── config.make ├── icon.rc ├── openFrameworks-Info.plist ├── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── tdhooper_GeodesicTiling.sln ├── tdhooper_GeodesicTiling.vcxproj ├── tdhooper_GeodesicTiling.vcxproj.filters └── tdhooper_GeodesicTiling.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ └── xcschemes │ ├── tdhooper_GeodesicTiling Debug.xcscheme │ └── tdhooper_GeodesicTiling Release.xcscheme └── tdm_Seascape ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin └── data │ ├── .gitkeep │ └── shaders │ └── tdm_Seascape.frag ├── config.make ├── openFrameworks-Info.plist ├── src ├── main.cpp ├── ofApp.cpp └── ofApp.h └── tdm_Seascape.xcodeproj ├── project.pbxproj ├── project.xcworkspace └── contents.xcworkspacedata └── xcshareddata └── xcschemes ├── tdm_Seascape Debug.xcscheme └── tdm_Seascape Release.xcscheme /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/.gitignore -------------------------------------------------------------------------------- /P_Malin_Reprojection/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/P_Malin_Reprojection/Makefile -------------------------------------------------------------------------------- /P_Malin_Reprojection/P_Malin_Reprojection.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/P_Malin_Reprojection/P_Malin_Reprojection.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /P_Malin_Reprojection/P_Malin_Reprojection.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/P_Malin_Reprojection/P_Malin_Reprojection.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /P_Malin_Reprojection/P_Malin_Reprojection.xcodeproj/xcshareddata/xcschemes/P_Malin_Reprojection Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/P_Malin_Reprojection/P_Malin_Reprojection.xcodeproj/xcshareddata/xcschemes/P_Malin_Reprojection Debug.xcscheme -------------------------------------------------------------------------------- /P_Malin_Reprojection/P_Malin_Reprojection.xcodeproj/xcshareddata/xcschemes/P_Malin_Reprojection Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/P_Malin_Reprojection/P_Malin_Reprojection.xcodeproj/xcshareddata/xcschemes/P_Malin_Reprojection Release.xcscheme -------------------------------------------------------------------------------- /P_Malin_Reprojection/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/P_Malin_Reprojection/Project.xcconfig -------------------------------------------------------------------------------- /P_Malin_Reprojection/addons.make: -------------------------------------------------------------------------------- 1 | ofxShadertoy 2 | -------------------------------------------------------------------------------- /P_Malin_Reprojection/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /P_Malin_Reprojection/bin/data/shaders/p_malin_reprojection.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/P_Malin_Reprojection/bin/data/shaders/p_malin_reprojection.frag -------------------------------------------------------------------------------- /P_Malin_Reprojection/bin/data/shaders/tex04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/P_Malin_Reprojection/bin/data/shaders/tex04.jpg -------------------------------------------------------------------------------- /P_Malin_Reprojection/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/P_Malin_Reprojection/config.make -------------------------------------------------------------------------------- /P_Malin_Reprojection/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/P_Malin_Reprojection/openFrameworks-Info.plist -------------------------------------------------------------------------------- /P_Malin_Reprojection/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/P_Malin_Reprojection/src/main.cpp -------------------------------------------------------------------------------- /P_Malin_Reprojection/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/P_Malin_Reprojection/src/ofApp.cpp -------------------------------------------------------------------------------- /P_Malin_Reprojection/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/P_Malin_Reprojection/src/ofApp.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/README.md -------------------------------------------------------------------------------- /SolalDR_PsychedelicLondon_2/addons.make: -------------------------------------------------------------------------------- 1 | ofxGui 2 | ofxShadertoy 3 | -------------------------------------------------------------------------------- /SolalDR_PsychedelicLondon_2/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SolalDR_PsychedelicLondon_2/bin/data/images/london.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/SolalDR_PsychedelicLondon_2/bin/data/images/london.jpg -------------------------------------------------------------------------------- /SolalDR_PsychedelicLondon_2/bin/data/shaders/SolalDR_PsychedelicLondon-2.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/SolalDR_PsychedelicLondon_2/bin/data/shaders/SolalDR_PsychedelicLondon-2.frag -------------------------------------------------------------------------------- /SolalDR_PsychedelicLondon_2/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/SolalDR_PsychedelicLondon_2/src/main.cpp -------------------------------------------------------------------------------- /SolalDR_PsychedelicLondon_2/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/SolalDR_PsychedelicLondon_2/src/ofApp.cpp -------------------------------------------------------------------------------- /SolalDR_PsychedelicLondon_2/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/SolalDR_PsychedelicLondon_2/src/ofApp.h -------------------------------------------------------------------------------- /iq_orbitTraps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/iq_orbitTraps/Makefile -------------------------------------------------------------------------------- /iq_orbitTraps/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/iq_orbitTraps/Project.xcconfig -------------------------------------------------------------------------------- /iq_orbitTraps/addons.make: -------------------------------------------------------------------------------- 1 | ofxShadertoy 2 | -------------------------------------------------------------------------------- /iq_orbitTraps/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iq_orbitTraps/bin/data/shaders/iq_orbitalTraps.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/iq_orbitTraps/bin/data/shaders/iq_orbitalTraps.frag -------------------------------------------------------------------------------- /iq_orbitTraps/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/iq_orbitTraps/config.make -------------------------------------------------------------------------------- /iq_orbitTraps/iq_orbitTraps.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/iq_orbitTraps/iq_orbitTraps.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iq_orbitTraps/iq_orbitTraps.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/iq_orbitTraps/iq_orbitTraps.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iq_orbitTraps/iq_orbitTraps.xcodeproj/xcshareddata/xcschemes/iq_orbitTraps Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/iq_orbitTraps/iq_orbitTraps.xcodeproj/xcshareddata/xcschemes/iq_orbitTraps Debug.xcscheme -------------------------------------------------------------------------------- /iq_orbitTraps/iq_orbitTraps.xcodeproj/xcshareddata/xcschemes/iq_orbitTraps Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/iq_orbitTraps/iq_orbitTraps.xcodeproj/xcshareddata/xcschemes/iq_orbitTraps Release.xcscheme -------------------------------------------------------------------------------- /iq_orbitTraps/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/iq_orbitTraps/openFrameworks-Info.plist -------------------------------------------------------------------------------- /iq_orbitTraps/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/iq_orbitTraps/src/main.cpp -------------------------------------------------------------------------------- /iq_orbitTraps/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/iq_orbitTraps/src/ofApp.cpp -------------------------------------------------------------------------------- /iq_orbitTraps/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/iq_orbitTraps/src/ofApp.h -------------------------------------------------------------------------------- /ofxaddons_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/ofxaddons_thumbnail.png -------------------------------------------------------------------------------- /raymarcherExample/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/raymarcherExample/Project.xcconfig -------------------------------------------------------------------------------- /raymarcherExample/RayMarcher.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/raymarcherExample/RayMarcher.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /raymarcherExample/RayMarcher.xcodeproj/xcshareddata/xcschemes/RayWarper Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/raymarcherExample/RayMarcher.xcodeproj/xcshareddata/xcschemes/RayWarper Debug.xcscheme -------------------------------------------------------------------------------- /raymarcherExample/RayMarcher.xcodeproj/xcshareddata/xcschemes/RayWarper Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/raymarcherExample/RayMarcher.xcodeproj/xcshareddata/xcschemes/RayWarper Release.xcscheme -------------------------------------------------------------------------------- /raymarcherExample/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/raymarcherExample/addons.make -------------------------------------------------------------------------------- /raymarcherExample/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raymarcherExample/bin/data/shaders/raymarch.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/raymarcherExample/bin/data/shaders/raymarch.frag -------------------------------------------------------------------------------- /raymarcherExample/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/raymarcherExample/config.make -------------------------------------------------------------------------------- /raymarcherExample/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/raymarcherExample/openFrameworks-Info.plist -------------------------------------------------------------------------------- /raymarcherExample/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/raymarcherExample/src/main.cpp -------------------------------------------------------------------------------- /raymarcherExample/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/raymarcherExample/src/ofApp.cpp -------------------------------------------------------------------------------- /raymarcherExample/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/raymarcherExample/src/ofApp.h -------------------------------------------------------------------------------- /src/ofxShadertoy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/src/ofxShadertoy.cpp -------------------------------------------------------------------------------- /src/ofxShadertoy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/src/ofxShadertoy.h -------------------------------------------------------------------------------- /tdhooper_GeodesicTiling/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/tdhooper_GeodesicTiling/Makefile -------------------------------------------------------------------------------- /tdhooper_GeodesicTiling/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/tdhooper_GeodesicTiling/Project.xcconfig -------------------------------------------------------------------------------- /tdhooper_GeodesicTiling/addons.make: -------------------------------------------------------------------------------- 1 | ofxShadertoy 2 | -------------------------------------------------------------------------------- /tdhooper_GeodesicTiling/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tdhooper_GeodesicTiling/bin/data/shaders/tdhooper_GeodesicTiling.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/tdhooper_GeodesicTiling/bin/data/shaders/tdhooper_GeodesicTiling.glsl -------------------------------------------------------------------------------- /tdhooper_GeodesicTiling/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/tdhooper_GeodesicTiling/config.make -------------------------------------------------------------------------------- /tdhooper_GeodesicTiling/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/tdhooper_GeodesicTiling/icon.rc -------------------------------------------------------------------------------- /tdhooper_GeodesicTiling/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/tdhooper_GeodesicTiling/openFrameworks-Info.plist -------------------------------------------------------------------------------- /tdhooper_GeodesicTiling/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/tdhooper_GeodesicTiling/src/main.cpp -------------------------------------------------------------------------------- /tdhooper_GeodesicTiling/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/tdhooper_GeodesicTiling/src/ofApp.cpp -------------------------------------------------------------------------------- /tdhooper_GeodesicTiling/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/tdhooper_GeodesicTiling/src/ofApp.h -------------------------------------------------------------------------------- /tdhooper_GeodesicTiling/tdhooper_GeodesicTiling.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/tdhooper_GeodesicTiling/tdhooper_GeodesicTiling.sln -------------------------------------------------------------------------------- /tdhooper_GeodesicTiling/tdhooper_GeodesicTiling.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/tdhooper_GeodesicTiling/tdhooper_GeodesicTiling.vcxproj -------------------------------------------------------------------------------- /tdhooper_GeodesicTiling/tdhooper_GeodesicTiling.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/tdhooper_GeodesicTiling/tdhooper_GeodesicTiling.vcxproj.filters -------------------------------------------------------------------------------- /tdhooper_GeodesicTiling/tdhooper_GeodesicTiling.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/tdhooper_GeodesicTiling/tdhooper_GeodesicTiling.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /tdhooper_GeodesicTiling/tdhooper_GeodesicTiling.xcodeproj/xcshareddata/xcschemes/tdhooper_GeodesicTiling Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/tdhooper_GeodesicTiling/tdhooper_GeodesicTiling.xcodeproj/xcshareddata/xcschemes/tdhooper_GeodesicTiling Debug.xcscheme -------------------------------------------------------------------------------- /tdhooper_GeodesicTiling/tdhooper_GeodesicTiling.xcodeproj/xcshareddata/xcschemes/tdhooper_GeodesicTiling Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/tdhooper_GeodesicTiling/tdhooper_GeodesicTiling.xcodeproj/xcshareddata/xcschemes/tdhooper_GeodesicTiling Release.xcscheme -------------------------------------------------------------------------------- /tdm_Seascape/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/tdm_Seascape/Makefile -------------------------------------------------------------------------------- /tdm_Seascape/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/tdm_Seascape/Project.xcconfig -------------------------------------------------------------------------------- /tdm_Seascape/addons.make: -------------------------------------------------------------------------------- 1 | ofxShadertoy 2 | -------------------------------------------------------------------------------- /tdm_Seascape/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tdm_Seascape/bin/data/shaders/tdm_Seascape.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/tdm_Seascape/bin/data/shaders/tdm_Seascape.frag -------------------------------------------------------------------------------- /tdm_Seascape/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/tdm_Seascape/config.make -------------------------------------------------------------------------------- /tdm_Seascape/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/tdm_Seascape/openFrameworks-Info.plist -------------------------------------------------------------------------------- /tdm_Seascape/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/tdm_Seascape/src/main.cpp -------------------------------------------------------------------------------- /tdm_Seascape/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/tdm_Seascape/src/ofApp.cpp -------------------------------------------------------------------------------- /tdm_Seascape/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/tdm_Seascape/src/ofApp.h -------------------------------------------------------------------------------- /tdm_Seascape/tdm_Seascape.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/tdm_Seascape/tdm_Seascape.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /tdm_Seascape/tdm_Seascape.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/tdm_Seascape/tdm_Seascape.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /tdm_Seascape/tdm_Seascape.xcodeproj/xcshareddata/xcschemes/tdm_Seascape Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/tdm_Seascape/tdm_Seascape.xcodeproj/xcshareddata/xcschemes/tdm_Seascape Debug.xcscheme -------------------------------------------------------------------------------- /tdm_Seascape/tdm_Seascape.xcodeproj/xcshareddata/xcschemes/tdm_Seascape Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagosr/ofxShadertoy/HEAD/tdm_Seascape/tdm_Seascape.xcodeproj/xcshareddata/xcschemes/tdm_Seascape Release.xcscheme --------------------------------------------------------------------------------