├── .gitignore ├── FullQuadGeometry.js ├── GaussianBlur.js ├── MultipassGaussianBlur.js ├── Sobel.js ├── image-1.png ├── image-2.png ├── image-3.png ├── image-4.png ├── image-5.png ├── image-6.png ├── image-7.png ├── index.html ├── index.js ├── package.json └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules -------------------------------------------------------------------------------- /FullQuadGeometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunosimon/webgl-filters/HEAD/FullQuadGeometry.js -------------------------------------------------------------------------------- /GaussianBlur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunosimon/webgl-filters/HEAD/GaussianBlur.js -------------------------------------------------------------------------------- /MultipassGaussianBlur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunosimon/webgl-filters/HEAD/MultipassGaussianBlur.js -------------------------------------------------------------------------------- /Sobel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunosimon/webgl-filters/HEAD/Sobel.js -------------------------------------------------------------------------------- /image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunosimon/webgl-filters/HEAD/image-1.png -------------------------------------------------------------------------------- /image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunosimon/webgl-filters/HEAD/image-2.png -------------------------------------------------------------------------------- /image-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunosimon/webgl-filters/HEAD/image-3.png -------------------------------------------------------------------------------- /image-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunosimon/webgl-filters/HEAD/image-4.png -------------------------------------------------------------------------------- /image-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunosimon/webgl-filters/HEAD/image-5.png -------------------------------------------------------------------------------- /image-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunosimon/webgl-filters/HEAD/image-6.png -------------------------------------------------------------------------------- /image-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunosimon/webgl-filters/HEAD/image-7.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunosimon/webgl-filters/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunosimon/webgl-filters/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunosimon/webgl-filters/HEAD/package.json -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunosimon/webgl-filters/HEAD/vite.config.js --------------------------------------------------------------------------------