├── LICENSE ├── Makefile ├── Project.xcconfig ├── Readme.md ├── TubePass.cpp ├── TubePass.h ├── addons.make ├── bin ├── data │ ├── .gitkeep │ ├── AegyptusR.ttf │ ├── Analecta.ttf │ ├── Apache License.txt │ ├── DroidSansMono.ttf │ ├── bits.glsl │ ├── bits.vert │ ├── blob.vert │ ├── cells.glsl │ ├── cubes.vert │ ├── default.glsl │ ├── default.vert │ ├── errors.log │ ├── explode.glsl │ ├── fresh 2.glsl │ ├── fresh.glsl │ ├── icon.icns │ ├── icon.png │ ├── monof55.ttf │ ├── monof56.ttf │ ├── nil.glsl │ ├── rope.vert │ ├── shader.frag │ ├── shader.vert │ ├── something.glsl │ ├── sphere.vert │ ├── spikes.vert │ ├── spiral.vert │ ├── swirl.vert │ ├── test.glsl │ ├── textures │ │ ├── tex10.png │ │ ├── tex11.png │ │ ├── tex15.png │ │ └── tex16.png │ ├── untitled 2.txt │ ├── untitled.txt │ ├── voc.glsl │ └── wave.glsl ├── shaderview.app │ └── Contents │ │ ├── Frameworks │ │ ├── GLUT.framework │ │ │ ├── GLUT │ │ │ ├── Headers │ │ │ ├── Resources │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── GLUT │ │ │ │ ├── Headers │ │ │ │ │ ├── copy.h │ │ │ │ │ ├── extrude.h │ │ │ │ │ ├── glsmap.h │ │ │ │ │ ├── glsmapint.h │ │ │ │ │ ├── glut.h │ │ │ │ │ ├── glutbitmap.h │ │ │ │ │ ├── glutf90.h │ │ │ │ │ ├── glutstroke.h │ │ │ │ │ ├── gutil.h │ │ │ │ │ ├── intersect.h │ │ │ │ │ ├── port.h │ │ │ │ │ ├── rot.h │ │ │ │ │ ├── segment.h │ │ │ │ │ ├── tube.h │ │ │ │ │ ├── tube_gc.h │ │ │ │ │ └── vvector.h │ │ │ │ └── Resources │ │ │ │ │ ├── Caution.tiff │ │ │ │ │ ├── English.lproj │ │ │ │ │ ├── GLUT.nib │ │ │ │ │ │ └── objects.nib │ │ │ │ │ ├── GLUTClipboard.nib │ │ │ │ │ │ └── objects.nib │ │ │ │ │ ├── GLUTPreferences.nib │ │ │ │ │ │ └── objects.nib │ │ │ │ │ ├── GLUTUI.strings │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── blankCursor.tiff │ │ │ │ │ ├── bottomCursor.tiff │ │ │ │ │ ├── bottomleftCursor.tiff │ │ │ │ │ ├── bottomrightCursor.tiff │ │ │ │ │ ├── crossCursor.tiff │ │ │ │ │ ├── cycleCursor.tiff │ │ │ │ │ ├── destroyCursor.tiff │ │ │ │ │ ├── fingerCursor.tiff │ │ │ │ │ ├── helpCursor.tiff │ │ │ │ │ ├── leftCursor.tiff │ │ │ │ │ ├── leftRightCursor.tiff │ │ │ │ │ ├── rightArrowCursor.tiff │ │ │ │ │ ├── rightCursor.tiff │ │ │ │ │ ├── sprayCursor.tiff │ │ │ │ │ ├── topCursor.tiff │ │ │ │ │ ├── topleftCursor.tiff │ │ │ │ │ ├── toprightCursor.tiff │ │ │ │ │ ├── upDownCursor.tiff │ │ │ │ │ └── waitCursor.tiff │ │ │ │ └── Current │ │ └── libfmodex.dylib │ │ ├── Info.plist │ │ ├── MacOS │ │ └── shaderview │ │ ├── PkgInfo │ │ └── Resources │ │ └── icon.icns └── shaderviewDebug.app │ └── Contents │ ├── Info.plist │ └── PkgInfo ├── config.make ├── openFrameworks-Info.plist ├── shaderview.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── josephwilk.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── xcshareddata │ └── xcschemes │ │ ├── shaderview Debug.xcscheme │ │ └── shaderview Release.xcscheme └── xcuserdata │ └── josephwilk.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist └── src ├── main.cpp ├── ofApp.cpp └── ofApp.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/Makefile -------------------------------------------------------------------------------- /Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/Project.xcconfig -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/Readme.md -------------------------------------------------------------------------------- /TubePass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/TubePass.cpp -------------------------------------------------------------------------------- /TubePass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/TubePass.h -------------------------------------------------------------------------------- /addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/addons.make -------------------------------------------------------------------------------- /bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/data/AegyptusR.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/data/AegyptusR.ttf -------------------------------------------------------------------------------- /bin/data/Analecta.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/data/Analecta.ttf -------------------------------------------------------------------------------- /bin/data/Apache License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/data/Apache License.txt -------------------------------------------------------------------------------- /bin/data/DroidSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/data/DroidSansMono.ttf -------------------------------------------------------------------------------- /bin/data/bits.glsl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/data/bits.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/data/bits.vert -------------------------------------------------------------------------------- /bin/data/blob.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/data/blob.vert -------------------------------------------------------------------------------- /bin/data/cells.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/data/cells.glsl -------------------------------------------------------------------------------- /bin/data/cubes.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/data/cubes.vert -------------------------------------------------------------------------------- /bin/data/default.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/data/default.glsl -------------------------------------------------------------------------------- /bin/data/default.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/data/default.vert -------------------------------------------------------------------------------- /bin/data/errors.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/data/explode.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/data/explode.glsl -------------------------------------------------------------------------------- /bin/data/fresh 2.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/data/fresh 2.glsl -------------------------------------------------------------------------------- /bin/data/fresh.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/data/fresh.glsl -------------------------------------------------------------------------------- /bin/data/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/data/icon.icns -------------------------------------------------------------------------------- /bin/data/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/data/icon.png -------------------------------------------------------------------------------- /bin/data/monof55.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/data/monof55.ttf -------------------------------------------------------------------------------- /bin/data/monof56.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/data/monof56.ttf -------------------------------------------------------------------------------- /bin/data/nil.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/data/nil.glsl -------------------------------------------------------------------------------- /bin/data/rope.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/data/rope.vert -------------------------------------------------------------------------------- /bin/data/shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/data/shader.frag -------------------------------------------------------------------------------- /bin/data/shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/data/shader.vert -------------------------------------------------------------------------------- /bin/data/something.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/data/something.glsl -------------------------------------------------------------------------------- /bin/data/sphere.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/data/sphere.vert -------------------------------------------------------------------------------- /bin/data/spikes.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/data/spikes.vert -------------------------------------------------------------------------------- /bin/data/spiral.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/data/spiral.vert -------------------------------------------------------------------------------- /bin/data/swirl.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/data/swirl.vert -------------------------------------------------------------------------------- /bin/data/test.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/data/test.glsl -------------------------------------------------------------------------------- /bin/data/textures/tex10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/data/textures/tex10.png -------------------------------------------------------------------------------- /bin/data/textures/tex11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/data/textures/tex11.png -------------------------------------------------------------------------------- /bin/data/textures/tex15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/data/textures/tex15.png -------------------------------------------------------------------------------- /bin/data/textures/tex16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/data/textures/tex16.png -------------------------------------------------------------------------------- /bin/data/untitled 2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/data/untitled.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/data/untitled.txt -------------------------------------------------------------------------------- /bin/data/voc.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/data/voc.glsl -------------------------------------------------------------------------------- /bin/data/wave.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/data/wave.glsl -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/GLUT: -------------------------------------------------------------------------------- 1 | Versions/Current/GLUT -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/GLUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/GLUT -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/copy.h -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/extrude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/extrude.h -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glsmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glsmap.h -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glsmapint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glsmapint.h -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glut.h -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutbitmap.h -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutf90.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutf90.h -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutstroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutstroke.h -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/gutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/gutil.h -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/intersect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/intersect.h -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/port.h -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/rot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/rot.h -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/segment.h -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube.h -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube_gc.h -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/vvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/vvector.h -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/Caution.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/Caution.tiff -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUT.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUT.nib/objects.nib -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTClipboard.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTClipboard.nib/objects.nib -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTPreferences.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTPreferences.nib/objects.nib -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTUI.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTUI.strings -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/blankCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/blankCursor.tiff -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomCursor.tiff -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomleftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomleftCursor.tiff -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomrightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomrightCursor.tiff -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/crossCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/crossCursor.tiff -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/cycleCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/cycleCursor.tiff -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/destroyCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/destroyCursor.tiff -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/fingerCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/fingerCursor.tiff -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/helpCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/helpCursor.tiff -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/leftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/leftCursor.tiff -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/leftRightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/leftRightCursor.tiff -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/rightArrowCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/rightArrowCursor.tiff -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/rightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/rightCursor.tiff -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/sprayCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/sprayCursor.tiff -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/topCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/topCursor.tiff -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/topleftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/topleftCursor.tiff -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/toprightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/toprightCursor.tiff -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/upDownCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/upDownCursor.tiff -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/waitCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/waitCursor.tiff -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/GLUT.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Frameworks/libfmodex.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Frameworks/libfmodex.dylib -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Info.plist -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/MacOS/shaderview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/MacOS/shaderview -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /bin/shaderview.app/Contents/Resources/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderview.app/Contents/Resources/icon.icns -------------------------------------------------------------------------------- /bin/shaderviewDebug.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/bin/shaderviewDebug.app/Contents/Info.plist -------------------------------------------------------------------------------- /bin/shaderviewDebug.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/config.make -------------------------------------------------------------------------------- /openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/openFrameworks-Info.plist -------------------------------------------------------------------------------- /shaderview.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/shaderview.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /shaderview.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/shaderview.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /shaderview.xcodeproj/project.xcworkspace/xcuserdata/josephwilk.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/shaderview.xcodeproj/project.xcworkspace/xcuserdata/josephwilk.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /shaderview.xcodeproj/xcshareddata/xcschemes/shaderview Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/shaderview.xcodeproj/xcshareddata/xcschemes/shaderview Debug.xcscheme -------------------------------------------------------------------------------- /shaderview.xcodeproj/xcshareddata/xcschemes/shaderview Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/shaderview.xcodeproj/xcshareddata/xcschemes/shaderview Release.xcscheme -------------------------------------------------------------------------------- /shaderview.xcodeproj/xcuserdata/josephwilk.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/shaderview.xcodeproj/xcuserdata/josephwilk.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/src/ofApp.cpp -------------------------------------------------------------------------------- /src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwilk/shaderview/HEAD/src/ofApp.h --------------------------------------------------------------------------------