├── .gitignore ├── .npmignore ├── .travis.yml ├── README.md ├── example ├── gl-react-example.js └── gl-react-native-example.js ├── package.json ├── src └── index.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | lib/ 2 | node_modules/ 3 | .DS_Store 4 | npm-debug.log -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store 3 | npm-debug.log -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st0ffern/gl-react-imagefilters/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st0ffern/gl-react-imagefilters/HEAD/README.md -------------------------------------------------------------------------------- /example/gl-react-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st0ffern/gl-react-imagefilters/HEAD/example/gl-react-example.js -------------------------------------------------------------------------------- /example/gl-react-native-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st0ffern/gl-react-imagefilters/HEAD/example/gl-react-native-example.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st0ffern/gl-react-imagefilters/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st0ffern/gl-react-imagefilters/HEAD/src/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/st0ffern/gl-react-imagefilters/HEAD/yarn.lock --------------------------------------------------------------------------------