├── 1.jpg ├── 10.jpg ├── 10.png ├── 2.jpg ├── 3.jpg ├── 4.jpg ├── 5.jpg ├── 6.jpg ├── 7.jpg ├── 8.jpg ├── 9.jpg ├── README.md ├── example-postprocessing ├── Makefile ├── addons.make ├── bin │ └── data │ │ ├── images │ │ ├── 1.jpg │ │ ├── 10-tessellation.jpg │ │ ├── 2.jpg │ │ ├── bg.jpg │ │ ├── env.jpg │ │ ├── env1.jpg │ │ ├── img.jpg │ │ ├── img1.jpg │ │ ├── skin1.jpg │ │ ├── skin2.jpg │ │ └── skin3.jpg │ │ └── models │ │ ├── alduin.obj │ │ ├── elephant.dae │ │ ├── omino.dae │ │ └── wolf.dae ├── config.make └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── example-ssao ├── Makefile ├── addons.make ├── bin │ └── data │ │ ├── images │ │ ├── 1.jpg │ │ ├── 10-tessellation.jpg │ │ ├── 2.jpg │ │ ├── bg.jpg │ │ ├── env.jpg │ │ ├── env1.jpg │ │ ├── img.jpg │ │ ├── img1.jpg │ │ ├── skin1.jpg │ │ ├── skin2.jpg │ │ └── skin3.jpg │ │ └── models │ │ ├── alduin.obj │ │ ├── elephant.dae │ │ ├── omino.dae │ │ └── wolf.dae ├── config.make └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── example ├── Makefile ├── addons.make ├── bin │ └── data │ │ ├── images │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── env.jpg │ │ ├── env1.jpg │ │ ├── img.jpg │ │ ├── img1.jpg │ │ ├── skin1.jpg │ │ ├── skin2.jpg │ │ └── skin3.jpg │ │ └── models │ │ ├── alduin.obj │ │ ├── elephant.dae │ │ └── wolf.dae ├── config.make └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── ofxaddons_thumbnail.png └── src ├── .ofxGLSLMaterial.h.swp ├── colorPicker.h ├── glsl.cpp ├── glsl.h └── ofxGLSLMaterial.h /1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/1.jpg -------------------------------------------------------------------------------- /10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/10.jpg -------------------------------------------------------------------------------- /10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/10.png -------------------------------------------------------------------------------- /2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/2.jpg -------------------------------------------------------------------------------- /3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/3.jpg -------------------------------------------------------------------------------- /4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/4.jpg -------------------------------------------------------------------------------- /5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/5.jpg -------------------------------------------------------------------------------- /6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/6.jpg -------------------------------------------------------------------------------- /7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/7.jpg -------------------------------------------------------------------------------- /8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/8.jpg -------------------------------------------------------------------------------- /9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/9.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/README.md -------------------------------------------------------------------------------- /example-postprocessing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-postprocessing/Makefile -------------------------------------------------------------------------------- /example-postprocessing/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-postprocessing/addons.make -------------------------------------------------------------------------------- /example-postprocessing/bin/data/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-postprocessing/bin/data/images/1.jpg -------------------------------------------------------------------------------- /example-postprocessing/bin/data/images/10-tessellation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-postprocessing/bin/data/images/10-tessellation.jpg -------------------------------------------------------------------------------- /example-postprocessing/bin/data/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-postprocessing/bin/data/images/2.jpg -------------------------------------------------------------------------------- /example-postprocessing/bin/data/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-postprocessing/bin/data/images/bg.jpg -------------------------------------------------------------------------------- /example-postprocessing/bin/data/images/env.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-postprocessing/bin/data/images/env.jpg -------------------------------------------------------------------------------- /example-postprocessing/bin/data/images/env1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-postprocessing/bin/data/images/env1.jpg -------------------------------------------------------------------------------- /example-postprocessing/bin/data/images/img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-postprocessing/bin/data/images/img.jpg -------------------------------------------------------------------------------- /example-postprocessing/bin/data/images/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-postprocessing/bin/data/images/img1.jpg -------------------------------------------------------------------------------- /example-postprocessing/bin/data/images/skin1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-postprocessing/bin/data/images/skin1.jpg -------------------------------------------------------------------------------- /example-postprocessing/bin/data/images/skin2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-postprocessing/bin/data/images/skin2.jpg -------------------------------------------------------------------------------- /example-postprocessing/bin/data/images/skin3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-postprocessing/bin/data/images/skin3.jpg -------------------------------------------------------------------------------- /example-postprocessing/bin/data/models/alduin.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-postprocessing/bin/data/models/alduin.obj -------------------------------------------------------------------------------- /example-postprocessing/bin/data/models/elephant.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-postprocessing/bin/data/models/elephant.dae -------------------------------------------------------------------------------- /example-postprocessing/bin/data/models/omino.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-postprocessing/bin/data/models/omino.dae -------------------------------------------------------------------------------- /example-postprocessing/bin/data/models/wolf.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-postprocessing/bin/data/models/wolf.dae -------------------------------------------------------------------------------- /example-postprocessing/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-postprocessing/config.make -------------------------------------------------------------------------------- /example-postprocessing/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-postprocessing/src/main.cpp -------------------------------------------------------------------------------- /example-postprocessing/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-postprocessing/src/ofApp.cpp -------------------------------------------------------------------------------- /example-postprocessing/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-postprocessing/src/ofApp.h -------------------------------------------------------------------------------- /example-ssao/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-ssao/Makefile -------------------------------------------------------------------------------- /example-ssao/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-ssao/addons.make -------------------------------------------------------------------------------- /example-ssao/bin/data/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-ssao/bin/data/images/1.jpg -------------------------------------------------------------------------------- /example-ssao/bin/data/images/10-tessellation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-ssao/bin/data/images/10-tessellation.jpg -------------------------------------------------------------------------------- /example-ssao/bin/data/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-ssao/bin/data/images/2.jpg -------------------------------------------------------------------------------- /example-ssao/bin/data/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-ssao/bin/data/images/bg.jpg -------------------------------------------------------------------------------- /example-ssao/bin/data/images/env.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-ssao/bin/data/images/env.jpg -------------------------------------------------------------------------------- /example-ssao/bin/data/images/env1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-ssao/bin/data/images/env1.jpg -------------------------------------------------------------------------------- /example-ssao/bin/data/images/img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-ssao/bin/data/images/img.jpg -------------------------------------------------------------------------------- /example-ssao/bin/data/images/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-ssao/bin/data/images/img1.jpg -------------------------------------------------------------------------------- /example-ssao/bin/data/images/skin1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-ssao/bin/data/images/skin1.jpg -------------------------------------------------------------------------------- /example-ssao/bin/data/images/skin2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-ssao/bin/data/images/skin2.jpg -------------------------------------------------------------------------------- /example-ssao/bin/data/images/skin3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-ssao/bin/data/images/skin3.jpg -------------------------------------------------------------------------------- /example-ssao/bin/data/models/alduin.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-ssao/bin/data/models/alduin.obj -------------------------------------------------------------------------------- /example-ssao/bin/data/models/elephant.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-ssao/bin/data/models/elephant.dae -------------------------------------------------------------------------------- /example-ssao/bin/data/models/omino.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-ssao/bin/data/models/omino.dae -------------------------------------------------------------------------------- /example-ssao/bin/data/models/wolf.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-ssao/bin/data/models/wolf.dae -------------------------------------------------------------------------------- /example-ssao/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-ssao/config.make -------------------------------------------------------------------------------- /example-ssao/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-ssao/src/main.cpp -------------------------------------------------------------------------------- /example-ssao/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-ssao/src/ofApp.cpp -------------------------------------------------------------------------------- /example-ssao/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example-ssao/src/ofApp.h -------------------------------------------------------------------------------- /example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example/Makefile -------------------------------------------------------------------------------- /example/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example/addons.make -------------------------------------------------------------------------------- /example/bin/data/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example/bin/data/images/1.jpg -------------------------------------------------------------------------------- /example/bin/data/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example/bin/data/images/2.jpg -------------------------------------------------------------------------------- /example/bin/data/images/env.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example/bin/data/images/env.jpg -------------------------------------------------------------------------------- /example/bin/data/images/env1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example/bin/data/images/env1.jpg -------------------------------------------------------------------------------- /example/bin/data/images/img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example/bin/data/images/img.jpg -------------------------------------------------------------------------------- /example/bin/data/images/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example/bin/data/images/img1.jpg -------------------------------------------------------------------------------- /example/bin/data/images/skin1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example/bin/data/images/skin1.jpg -------------------------------------------------------------------------------- /example/bin/data/images/skin2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example/bin/data/images/skin2.jpg -------------------------------------------------------------------------------- /example/bin/data/images/skin3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example/bin/data/images/skin3.jpg -------------------------------------------------------------------------------- /example/bin/data/models/alduin.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example/bin/data/models/alduin.obj -------------------------------------------------------------------------------- /example/bin/data/models/elephant.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example/bin/data/models/elephant.dae -------------------------------------------------------------------------------- /example/bin/data/models/wolf.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example/bin/data/models/wolf.dae -------------------------------------------------------------------------------- /example/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example/config.make -------------------------------------------------------------------------------- /example/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example/src/main.cpp -------------------------------------------------------------------------------- /example/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example/src/ofApp.cpp -------------------------------------------------------------------------------- /example/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/example/src/ofApp.h -------------------------------------------------------------------------------- /ofxaddons_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/ofxaddons_thumbnail.png -------------------------------------------------------------------------------- /src/.ofxGLSLMaterial.h.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/src/.ofxGLSLMaterial.h.swp -------------------------------------------------------------------------------- /src/colorPicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/src/colorPicker.h -------------------------------------------------------------------------------- /src/glsl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/src/glsl.cpp -------------------------------------------------------------------------------- /src/glsl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/src/glsl.h -------------------------------------------------------------------------------- /src/ofxGLSLMaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxGLSLMaterial/HEAD/src/ofxGLSLMaterial.h --------------------------------------------------------------------------------