├── .gitignore ├── README.md ├── bleach └── index.glsl ├── brightness └── index.glsl ├── bsc └── index.glsl ├── contrast └── index.glsl ├── dot-screen └── index.glsl ├── film └── index.glsl ├── glitch └── index.glsl ├── grayscale └── index.glsl ├── invert └── index.glsl ├── noise └── index.glsl ├── package.json ├── sepia └── index.glsl └── vignette └── index.glsl /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | .DS_Store 3 | node_modules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superguigui/color-shader-functions/HEAD/README.md -------------------------------------------------------------------------------- /bleach/index.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superguigui/color-shader-functions/HEAD/bleach/index.glsl -------------------------------------------------------------------------------- /brightness/index.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superguigui/color-shader-functions/HEAD/brightness/index.glsl -------------------------------------------------------------------------------- /bsc/index.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superguigui/color-shader-functions/HEAD/bsc/index.glsl -------------------------------------------------------------------------------- /contrast/index.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superguigui/color-shader-functions/HEAD/contrast/index.glsl -------------------------------------------------------------------------------- /dot-screen/index.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superguigui/color-shader-functions/HEAD/dot-screen/index.glsl -------------------------------------------------------------------------------- /film/index.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superguigui/color-shader-functions/HEAD/film/index.glsl -------------------------------------------------------------------------------- /glitch/index.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superguigui/color-shader-functions/HEAD/glitch/index.glsl -------------------------------------------------------------------------------- /grayscale/index.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superguigui/color-shader-functions/HEAD/grayscale/index.glsl -------------------------------------------------------------------------------- /invert/index.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superguigui/color-shader-functions/HEAD/invert/index.glsl -------------------------------------------------------------------------------- /noise/index.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superguigui/color-shader-functions/HEAD/noise/index.glsl -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superguigui/color-shader-functions/HEAD/package.json -------------------------------------------------------------------------------- /sepia/index.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superguigui/color-shader-functions/HEAD/sepia/index.glsl -------------------------------------------------------------------------------- /vignette/index.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superguigui/color-shader-functions/HEAD/vignette/index.glsl --------------------------------------------------------------------------------