├── CMakeLists.txt ├── CMakePresets.json ├── CMakeUserPresets.json ├── LICENSE ├── README.md ├── src ├── dsp │ ├── envelope.hpp │ ├── gru.cpp │ ├── gru.hpp │ └── weights.cxx ├── gui │ ├── button.hpp │ ├── editor.cpp │ ├── editor.hpp │ ├── editor_state.hpp │ ├── knob.hpp │ ├── sub_component.hpp │ └── svg.hpp ├── parameters.hpp ├── processor.cpp ├── processor.hpp ├── processor_base.cpp └── processor_base.hpp ├── uires.cmake ├── uires ├── PuffyKnob_background.svg ├── PuffyKnob_knob.svg └── layout3x.svg └── utilities.cmake /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8ave/bender/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8ave/bender/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /CMakeUserPresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8ave/bender/HEAD/CMakeUserPresets.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8ave/bender/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8ave/bender/HEAD/README.md -------------------------------------------------------------------------------- /src/dsp/envelope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8ave/bender/HEAD/src/dsp/envelope.hpp -------------------------------------------------------------------------------- /src/dsp/gru.cpp: -------------------------------------------------------------------------------- 1 | #include "gru.hpp" 2 | 3 | int dummy_gru = 0; 4 | -------------------------------------------------------------------------------- /src/dsp/gru.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8ave/bender/HEAD/src/dsp/gru.hpp -------------------------------------------------------------------------------- /src/dsp/weights.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8ave/bender/HEAD/src/dsp/weights.cxx -------------------------------------------------------------------------------- /src/gui/button.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8ave/bender/HEAD/src/gui/button.hpp -------------------------------------------------------------------------------- /src/gui/editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8ave/bender/HEAD/src/gui/editor.cpp -------------------------------------------------------------------------------- /src/gui/editor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8ave/bender/HEAD/src/gui/editor.hpp -------------------------------------------------------------------------------- /src/gui/editor_state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8ave/bender/HEAD/src/gui/editor_state.hpp -------------------------------------------------------------------------------- /src/gui/knob.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8ave/bender/HEAD/src/gui/knob.hpp -------------------------------------------------------------------------------- /src/gui/sub_component.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8ave/bender/HEAD/src/gui/sub_component.hpp -------------------------------------------------------------------------------- /src/gui/svg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8ave/bender/HEAD/src/gui/svg.hpp -------------------------------------------------------------------------------- /src/parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8ave/bender/HEAD/src/parameters.hpp -------------------------------------------------------------------------------- /src/processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8ave/bender/HEAD/src/processor.cpp -------------------------------------------------------------------------------- /src/processor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8ave/bender/HEAD/src/processor.hpp -------------------------------------------------------------------------------- /src/processor_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8ave/bender/HEAD/src/processor_base.cpp -------------------------------------------------------------------------------- /src/processor_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8ave/bender/HEAD/src/processor_base.hpp -------------------------------------------------------------------------------- /uires.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8ave/bender/HEAD/uires.cmake -------------------------------------------------------------------------------- /uires/PuffyKnob_background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8ave/bender/HEAD/uires/PuffyKnob_background.svg -------------------------------------------------------------------------------- /uires/PuffyKnob_knob.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8ave/bender/HEAD/uires/PuffyKnob_knob.svg -------------------------------------------------------------------------------- /uires/layout3x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8ave/bender/HEAD/uires/layout3x.svg -------------------------------------------------------------------------------- /utilities.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8ave/bender/HEAD/utilities.cmake --------------------------------------------------------------------------------