├── .clang-format ├── .gitignore ├── .gitmodules ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── demo.gif ├── makefile └── src └── plugin.mm /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintersuidman/blur/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | bin/ 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintersuidman/blur/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintersuidman/blur/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintersuidman/blur/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintersuidman/blur/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintersuidman/blur/HEAD/README.md -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintersuidman/blur/HEAD/demo.gif -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintersuidman/blur/HEAD/makefile -------------------------------------------------------------------------------- /src/plugin.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splintersuidman/blur/HEAD/src/plugin.mm --------------------------------------------------------------------------------