├── .gitignore ├── .gitmodules ├── Images ├── background.png └── screenshot.jpg ├── JuceLibraryCode └── AppConfig.h ├── LICENSE ├── Overdraw.jucer ├── README.md └── Source ├── .clang-format ├── PluginEditor.cpp ├── PluginEditor.h ├── PluginProcessor.cpp ├── PluginProcessor.h └── Processing.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | /Builds 2 | /JuceLibraryCode 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unevens/Overdraw/HEAD/.gitmodules -------------------------------------------------------------------------------- /Images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unevens/Overdraw/HEAD/Images/background.png -------------------------------------------------------------------------------- /Images/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unevens/Overdraw/HEAD/Images/screenshot.jpg -------------------------------------------------------------------------------- /JuceLibraryCode/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unevens/Overdraw/HEAD/JuceLibraryCode/AppConfig.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unevens/Overdraw/HEAD/LICENSE -------------------------------------------------------------------------------- /Overdraw.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unevens/Overdraw/HEAD/Overdraw.jucer -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unevens/Overdraw/HEAD/README.md -------------------------------------------------------------------------------- /Source/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unevens/Overdraw/HEAD/Source/.clang-format -------------------------------------------------------------------------------- /Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unevens/Overdraw/HEAD/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unevens/Overdraw/HEAD/Source/PluginEditor.h -------------------------------------------------------------------------------- /Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unevens/Overdraw/HEAD/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unevens/Overdraw/HEAD/Source/PluginProcessor.h -------------------------------------------------------------------------------- /Source/Processing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unevens/Overdraw/HEAD/Source/Processing.cpp --------------------------------------------------------------------------------