├── .gitignore ├── .npmignore ├── LICENSE.md ├── README.md ├── index.glsl ├── package.json └── test.glsl /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | .DS_Store 4 | bundle.js 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msfeldstein/glsl-map/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msfeldstein/glsl-map/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msfeldstein/glsl-map/HEAD/README.md -------------------------------------------------------------------------------- /index.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msfeldstein/glsl-map/HEAD/index.glsl -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msfeldstein/glsl-map/HEAD/package.json -------------------------------------------------------------------------------- /test.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msfeldstein/glsl-map/HEAD/test.glsl --------------------------------------------------------------------------------