├── .gitignore ├── README.md ├── biquad_filter ├── .cargo │ └── config ├── Cargo.toml ├── bundler.toml ├── nih_plug_vizia │ ├── Cargo.toml │ ├── README.md │ ├── assets │ │ ├── theme.css │ │ └── widgets.css │ └── src │ │ ├── assets.rs │ │ ├── editor.rs │ │ ├── lib.rs │ │ ├── vizia_assets.rs │ │ ├── widgets.rs │ │ └── widgets │ │ ├── generic_ui.rs │ │ ├── param_base.rs │ │ ├── param_button.rs │ │ ├── param_slider.rs │ │ ├── peak_meter.rs │ │ ├── resize_handle.rs │ │ └── util.rs ├── res │ ├── Comfortaa-Light.ttf │ ├── Comfortaa-Regular.ttf │ └── Roboto-Thin.ttf ├── src │ ├── chorus.rs │ ├── delay.rs │ ├── editor.rs │ ├── editor │ │ └── param_knob.rs │ ├── filter.rs │ ├── lfo.rs │ └── lib.rs └── xtask │ ├── Cargo.toml │ └── src │ └── main.rs ├── chorus ├── .cargo │ └── config ├── Cargo.toml ├── bundler.toml ├── nih_plug_vizia │ ├── Cargo.toml │ ├── README.md │ ├── assets │ │ ├── theme.css │ │ └── widgets.css │ └── src │ │ ├── assets.rs │ │ ├── editor.rs │ │ ├── lib.rs │ │ ├── vizia_assets.rs │ │ ├── widgets.rs │ │ └── widgets │ │ ├── generic_ui.rs │ │ ├── param_base.rs │ │ ├── param_button.rs │ │ ├── param_slider.rs │ │ ├── peak_meter.rs │ │ ├── resize_handle.rs │ │ └── util.rs ├── res │ ├── Comfortaa-Light.ttf │ ├── Comfortaa-Regular.ttf │ └── Roboto-Thin.ttf ├── src │ ├── chorus.rs │ ├── delay.rs │ ├── editor.rs │ ├── editor │ │ └── param_knob.rs │ ├── filter.rs │ ├── lfo.rs │ ├── lib.rs │ └── main.rs └── xtask │ ├── Cargo.toml │ └── src │ └── main.rs ├── flanger ├── .cargo │ └── config ├── Cargo.toml ├── bundler.toml ├── nih_plug_vizia │ ├── Cargo.toml │ ├── README.md │ ├── assets │ │ ├── theme.css │ │ └── widgets.css │ └── src │ │ ├── assets.rs │ │ ├── editor.rs │ │ ├── lib.rs │ │ ├── vizia_assets.rs │ │ ├── widgets.rs │ │ └── widgets │ │ ├── generic_ui.rs │ │ ├── param_base.rs │ │ ├── param_button.rs │ │ ├── param_slider.rs │ │ ├── peak_meter.rs │ │ ├── resize_handle.rs │ │ └── util.rs ├── res │ ├── Comfortaa-Light.ttf │ ├── Comfortaa-Regular.ttf │ └── Roboto-Thin.ttf ├── src │ ├── delay.rs │ ├── delayingallpass.rs │ ├── editor.rs │ ├── editor │ │ └── param_knob.rs │ ├── filter.rs │ ├── flanger.rs │ ├── lfo.rs │ └── lib.rs └── xtask │ ├── Cargo.toml │ └── src │ └── main.rs ├── images ├── banner-transparent.png ├── banner.png ├── biquad.png ├── chorus_shadow.png ├── flanger_shadow.png ├── mslr.png └── phaser_shadow.png ├── mid-side-mixer ├── .cargo │ └── config ├── .gitignore ├── Cargo.toml ├── README.md ├── bundler.toml ├── nih_plug_vizia │ ├── Cargo.toml │ ├── README.md │ ├── assets │ │ ├── theme.css │ │ └── widgets.css │ └── src │ │ ├── assets.rs │ │ ├── editor.rs │ │ ├── lib.rs │ │ ├── vizia_assets.rs │ │ ├── widgets.rs │ │ └── widgets │ │ ├── generic_ui.rs │ │ ├── param_base.rs │ │ ├── param_button.rs │ │ ├── param_slider.rs │ │ ├── peak_meter.rs │ │ ├── resize_handle.rs │ │ └── util.rs ├── res │ ├── Comfortaa-Light.ttf │ ├── Comfortaa-Regular.ttf │ └── Roboto-Thin.ttf ├── src │ ├── editor.rs │ ├── editor │ │ └── param_knob.rs │ ├── lib.rs │ └── mid_side_mixer.rs └── xtask │ ├── Cargo.toml │ └── src │ └── main.rs ├── phase-disperser ├── .cargo │ └── config ├── Cargo.toml ├── bundler.toml ├── nih_plug_vizia │ ├── Cargo.toml │ ├── README.md │ ├── assets │ │ ├── theme.css │ │ └── widgets.css │ └── src │ │ ├── assets.rs │ │ ├── editor.rs │ │ ├── lib.rs │ │ ├── vizia_assets.rs │ │ ├── widgets.rs │ │ └── widgets │ │ ├── generic_ui.rs │ │ ├── param_base.rs │ │ ├── param_button.rs │ │ ├── param_slider.rs │ │ ├── peak_meter.rs │ │ ├── resize_handle.rs │ │ └── util.rs ├── res │ ├── Comfortaa-Light.ttf │ ├── Comfortaa-Regular.ttf │ └── Roboto-Thin.ttf ├── src │ ├── disperser.rs │ ├── editor.rs │ ├── editor │ │ └── param_knob.rs │ ├── filter.rs │ └── lib.rs └── xtask │ ├── Cargo.toml │ └── src │ └── main.rs └── phaser ├── .cargo └── config ├── Cargo.toml ├── bundler.toml ├── nih_plug_vizia ├── Cargo.toml ├── README.md ├── assets │ ├── theme.css │ └── widgets.css └── src │ ├── assets.rs │ ├── editor.rs │ ├── lib.rs │ ├── vizia_assets.rs │ ├── widgets.rs │ └── widgets │ ├── generic_ui.rs │ ├── param_base.rs │ ├── param_button.rs │ ├── param_slider.rs │ ├── peak_meter.rs │ ├── resize_handle.rs │ └── util.rs ├── res ├── Comfortaa-Light.ttf ├── Comfortaa-Regular.ttf └── Roboto-Thin.ttf ├── src ├── delay.rs ├── delayingallpass.rs ├── editor.rs ├── editor │ └── param_knob.rs ├── filter.rs ├── lfo.rs ├── lib.rs └── phaser.rs └── xtask ├── Cargo.toml └── src └── main.rs /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | *.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/README.md -------------------------------------------------------------------------------- /biquad_filter/.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/biquad_filter/.cargo/config -------------------------------------------------------------------------------- /biquad_filter/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/biquad_filter/Cargo.toml -------------------------------------------------------------------------------- /biquad_filter/bundler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/biquad_filter/bundler.toml -------------------------------------------------------------------------------- /biquad_filter/nih_plug_vizia/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/biquad_filter/nih_plug_vizia/Cargo.toml -------------------------------------------------------------------------------- /biquad_filter/nih_plug_vizia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/biquad_filter/nih_plug_vizia/README.md -------------------------------------------------------------------------------- /biquad_filter/nih_plug_vizia/assets/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/biquad_filter/nih_plug_vizia/assets/theme.css -------------------------------------------------------------------------------- /biquad_filter/nih_plug_vizia/assets/widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/biquad_filter/nih_plug_vizia/assets/widgets.css -------------------------------------------------------------------------------- /biquad_filter/nih_plug_vizia/src/assets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/biquad_filter/nih_plug_vizia/src/assets.rs -------------------------------------------------------------------------------- /biquad_filter/nih_plug_vizia/src/editor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/biquad_filter/nih_plug_vizia/src/editor.rs -------------------------------------------------------------------------------- /biquad_filter/nih_plug_vizia/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/biquad_filter/nih_plug_vizia/src/lib.rs -------------------------------------------------------------------------------- /biquad_filter/nih_plug_vizia/src/vizia_assets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/biquad_filter/nih_plug_vizia/src/vizia_assets.rs -------------------------------------------------------------------------------- /biquad_filter/nih_plug_vizia/src/widgets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/biquad_filter/nih_plug_vizia/src/widgets.rs -------------------------------------------------------------------------------- /biquad_filter/nih_plug_vizia/src/widgets/generic_ui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/biquad_filter/nih_plug_vizia/src/widgets/generic_ui.rs -------------------------------------------------------------------------------- /biquad_filter/nih_plug_vizia/src/widgets/param_base.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/biquad_filter/nih_plug_vizia/src/widgets/param_base.rs -------------------------------------------------------------------------------- /biquad_filter/nih_plug_vizia/src/widgets/param_button.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/biquad_filter/nih_plug_vizia/src/widgets/param_button.rs -------------------------------------------------------------------------------- /biquad_filter/nih_plug_vizia/src/widgets/param_slider.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/biquad_filter/nih_plug_vizia/src/widgets/param_slider.rs -------------------------------------------------------------------------------- /biquad_filter/nih_plug_vizia/src/widgets/peak_meter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/biquad_filter/nih_plug_vizia/src/widgets/peak_meter.rs -------------------------------------------------------------------------------- /biquad_filter/nih_plug_vizia/src/widgets/resize_handle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/biquad_filter/nih_plug_vizia/src/widgets/resize_handle.rs -------------------------------------------------------------------------------- /biquad_filter/nih_plug_vizia/src/widgets/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/biquad_filter/nih_plug_vizia/src/widgets/util.rs -------------------------------------------------------------------------------- /biquad_filter/res/Comfortaa-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/biquad_filter/res/Comfortaa-Light.ttf -------------------------------------------------------------------------------- /biquad_filter/res/Comfortaa-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/biquad_filter/res/Comfortaa-Regular.ttf -------------------------------------------------------------------------------- /biquad_filter/res/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/biquad_filter/res/Roboto-Thin.ttf -------------------------------------------------------------------------------- /biquad_filter/src/chorus.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/biquad_filter/src/chorus.rs -------------------------------------------------------------------------------- /biquad_filter/src/delay.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/biquad_filter/src/delay.rs -------------------------------------------------------------------------------- /biquad_filter/src/editor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/biquad_filter/src/editor.rs -------------------------------------------------------------------------------- /biquad_filter/src/editor/param_knob.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/biquad_filter/src/editor/param_knob.rs -------------------------------------------------------------------------------- /biquad_filter/src/filter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/biquad_filter/src/filter.rs -------------------------------------------------------------------------------- /biquad_filter/src/lfo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/biquad_filter/src/lfo.rs -------------------------------------------------------------------------------- /biquad_filter/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/biquad_filter/src/lib.rs -------------------------------------------------------------------------------- /biquad_filter/xtask/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/biquad_filter/xtask/Cargo.toml -------------------------------------------------------------------------------- /biquad_filter/xtask/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/biquad_filter/xtask/src/main.rs -------------------------------------------------------------------------------- /chorus/.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/chorus/.cargo/config -------------------------------------------------------------------------------- /chorus/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/chorus/Cargo.toml -------------------------------------------------------------------------------- /chorus/bundler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/chorus/bundler.toml -------------------------------------------------------------------------------- /chorus/nih_plug_vizia/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/chorus/nih_plug_vizia/Cargo.toml -------------------------------------------------------------------------------- /chorus/nih_plug_vizia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/chorus/nih_plug_vizia/README.md -------------------------------------------------------------------------------- /chorus/nih_plug_vizia/assets/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/chorus/nih_plug_vizia/assets/theme.css -------------------------------------------------------------------------------- /chorus/nih_plug_vizia/assets/widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/chorus/nih_plug_vizia/assets/widgets.css -------------------------------------------------------------------------------- /chorus/nih_plug_vizia/src/assets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/chorus/nih_plug_vizia/src/assets.rs -------------------------------------------------------------------------------- /chorus/nih_plug_vizia/src/editor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/chorus/nih_plug_vizia/src/editor.rs -------------------------------------------------------------------------------- /chorus/nih_plug_vizia/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/chorus/nih_plug_vizia/src/lib.rs -------------------------------------------------------------------------------- /chorus/nih_plug_vizia/src/vizia_assets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/chorus/nih_plug_vizia/src/vizia_assets.rs -------------------------------------------------------------------------------- /chorus/nih_plug_vizia/src/widgets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/chorus/nih_plug_vizia/src/widgets.rs -------------------------------------------------------------------------------- /chorus/nih_plug_vizia/src/widgets/generic_ui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/chorus/nih_plug_vizia/src/widgets/generic_ui.rs -------------------------------------------------------------------------------- /chorus/nih_plug_vizia/src/widgets/param_base.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/chorus/nih_plug_vizia/src/widgets/param_base.rs -------------------------------------------------------------------------------- /chorus/nih_plug_vizia/src/widgets/param_button.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/chorus/nih_plug_vizia/src/widgets/param_button.rs -------------------------------------------------------------------------------- /chorus/nih_plug_vizia/src/widgets/param_slider.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/chorus/nih_plug_vizia/src/widgets/param_slider.rs -------------------------------------------------------------------------------- /chorus/nih_plug_vizia/src/widgets/peak_meter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/chorus/nih_plug_vizia/src/widgets/peak_meter.rs -------------------------------------------------------------------------------- /chorus/nih_plug_vizia/src/widgets/resize_handle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/chorus/nih_plug_vizia/src/widgets/resize_handle.rs -------------------------------------------------------------------------------- /chorus/nih_plug_vizia/src/widgets/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/chorus/nih_plug_vizia/src/widgets/util.rs -------------------------------------------------------------------------------- /chorus/res/Comfortaa-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/chorus/res/Comfortaa-Light.ttf -------------------------------------------------------------------------------- /chorus/res/Comfortaa-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/chorus/res/Comfortaa-Regular.ttf -------------------------------------------------------------------------------- /chorus/res/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/chorus/res/Roboto-Thin.ttf -------------------------------------------------------------------------------- /chorus/src/chorus.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/chorus/src/chorus.rs -------------------------------------------------------------------------------- /chorus/src/delay.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/chorus/src/delay.rs -------------------------------------------------------------------------------- /chorus/src/editor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/chorus/src/editor.rs -------------------------------------------------------------------------------- /chorus/src/editor/param_knob.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/chorus/src/editor/param_knob.rs -------------------------------------------------------------------------------- /chorus/src/filter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/chorus/src/filter.rs -------------------------------------------------------------------------------- /chorus/src/lfo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/chorus/src/lfo.rs -------------------------------------------------------------------------------- /chorus/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/chorus/src/lib.rs -------------------------------------------------------------------------------- /chorus/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/chorus/src/main.rs -------------------------------------------------------------------------------- /chorus/xtask/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/chorus/xtask/Cargo.toml -------------------------------------------------------------------------------- /chorus/xtask/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/chorus/xtask/src/main.rs -------------------------------------------------------------------------------- /flanger/.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/flanger/.cargo/config -------------------------------------------------------------------------------- /flanger/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/flanger/Cargo.toml -------------------------------------------------------------------------------- /flanger/bundler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/flanger/bundler.toml -------------------------------------------------------------------------------- /flanger/nih_plug_vizia/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/flanger/nih_plug_vizia/Cargo.toml -------------------------------------------------------------------------------- /flanger/nih_plug_vizia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/flanger/nih_plug_vizia/README.md -------------------------------------------------------------------------------- /flanger/nih_plug_vizia/assets/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/flanger/nih_plug_vizia/assets/theme.css -------------------------------------------------------------------------------- /flanger/nih_plug_vizia/assets/widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/flanger/nih_plug_vizia/assets/widgets.css -------------------------------------------------------------------------------- /flanger/nih_plug_vizia/src/assets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/flanger/nih_plug_vizia/src/assets.rs -------------------------------------------------------------------------------- /flanger/nih_plug_vizia/src/editor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/flanger/nih_plug_vizia/src/editor.rs -------------------------------------------------------------------------------- /flanger/nih_plug_vizia/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/flanger/nih_plug_vizia/src/lib.rs -------------------------------------------------------------------------------- /flanger/nih_plug_vizia/src/vizia_assets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/flanger/nih_plug_vizia/src/vizia_assets.rs -------------------------------------------------------------------------------- /flanger/nih_plug_vizia/src/widgets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/flanger/nih_plug_vizia/src/widgets.rs -------------------------------------------------------------------------------- /flanger/nih_plug_vizia/src/widgets/generic_ui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/flanger/nih_plug_vizia/src/widgets/generic_ui.rs -------------------------------------------------------------------------------- /flanger/nih_plug_vizia/src/widgets/param_base.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/flanger/nih_plug_vizia/src/widgets/param_base.rs -------------------------------------------------------------------------------- /flanger/nih_plug_vizia/src/widgets/param_button.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/flanger/nih_plug_vizia/src/widgets/param_button.rs -------------------------------------------------------------------------------- /flanger/nih_plug_vizia/src/widgets/param_slider.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/flanger/nih_plug_vizia/src/widgets/param_slider.rs -------------------------------------------------------------------------------- /flanger/nih_plug_vizia/src/widgets/peak_meter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/flanger/nih_plug_vizia/src/widgets/peak_meter.rs -------------------------------------------------------------------------------- /flanger/nih_plug_vizia/src/widgets/resize_handle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/flanger/nih_plug_vizia/src/widgets/resize_handle.rs -------------------------------------------------------------------------------- /flanger/nih_plug_vizia/src/widgets/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/flanger/nih_plug_vizia/src/widgets/util.rs -------------------------------------------------------------------------------- /flanger/res/Comfortaa-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/flanger/res/Comfortaa-Light.ttf -------------------------------------------------------------------------------- /flanger/res/Comfortaa-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/flanger/res/Comfortaa-Regular.ttf -------------------------------------------------------------------------------- /flanger/res/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/flanger/res/Roboto-Thin.ttf -------------------------------------------------------------------------------- /flanger/src/delay.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/flanger/src/delay.rs -------------------------------------------------------------------------------- /flanger/src/delayingallpass.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/flanger/src/delayingallpass.rs -------------------------------------------------------------------------------- /flanger/src/editor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/flanger/src/editor.rs -------------------------------------------------------------------------------- /flanger/src/editor/param_knob.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/flanger/src/editor/param_knob.rs -------------------------------------------------------------------------------- /flanger/src/filter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/flanger/src/filter.rs -------------------------------------------------------------------------------- /flanger/src/flanger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/flanger/src/flanger.rs -------------------------------------------------------------------------------- /flanger/src/lfo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/flanger/src/lfo.rs -------------------------------------------------------------------------------- /flanger/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/flanger/src/lib.rs -------------------------------------------------------------------------------- /flanger/xtask/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/flanger/xtask/Cargo.toml -------------------------------------------------------------------------------- /flanger/xtask/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/flanger/xtask/src/main.rs -------------------------------------------------------------------------------- /images/banner-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/images/banner-transparent.png -------------------------------------------------------------------------------- /images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/images/banner.png -------------------------------------------------------------------------------- /images/biquad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/images/biquad.png -------------------------------------------------------------------------------- /images/chorus_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/images/chorus_shadow.png -------------------------------------------------------------------------------- /images/flanger_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/images/flanger_shadow.png -------------------------------------------------------------------------------- /images/mslr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/images/mslr.png -------------------------------------------------------------------------------- /images/phaser_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/images/phaser_shadow.png -------------------------------------------------------------------------------- /mid-side-mixer/.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/mid-side-mixer/.cargo/config -------------------------------------------------------------------------------- /mid-side-mixer/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock -------------------------------------------------------------------------------- /mid-side-mixer/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/mid-side-mixer/Cargo.toml -------------------------------------------------------------------------------- /mid-side-mixer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/mid-side-mixer/README.md -------------------------------------------------------------------------------- /mid-side-mixer/bundler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/mid-side-mixer/bundler.toml -------------------------------------------------------------------------------- /mid-side-mixer/nih_plug_vizia/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/mid-side-mixer/nih_plug_vizia/Cargo.toml -------------------------------------------------------------------------------- /mid-side-mixer/nih_plug_vizia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/mid-side-mixer/nih_plug_vizia/README.md -------------------------------------------------------------------------------- /mid-side-mixer/nih_plug_vizia/assets/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/mid-side-mixer/nih_plug_vizia/assets/theme.css -------------------------------------------------------------------------------- /mid-side-mixer/nih_plug_vizia/assets/widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/mid-side-mixer/nih_plug_vizia/assets/widgets.css -------------------------------------------------------------------------------- /mid-side-mixer/nih_plug_vizia/src/assets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/mid-side-mixer/nih_plug_vizia/src/assets.rs -------------------------------------------------------------------------------- /mid-side-mixer/nih_plug_vizia/src/editor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/mid-side-mixer/nih_plug_vizia/src/editor.rs -------------------------------------------------------------------------------- /mid-side-mixer/nih_plug_vizia/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/mid-side-mixer/nih_plug_vizia/src/lib.rs -------------------------------------------------------------------------------- /mid-side-mixer/nih_plug_vizia/src/vizia_assets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/mid-side-mixer/nih_plug_vizia/src/vizia_assets.rs -------------------------------------------------------------------------------- /mid-side-mixer/nih_plug_vizia/src/widgets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/mid-side-mixer/nih_plug_vizia/src/widgets.rs -------------------------------------------------------------------------------- /mid-side-mixer/nih_plug_vizia/src/widgets/generic_ui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/mid-side-mixer/nih_plug_vizia/src/widgets/generic_ui.rs -------------------------------------------------------------------------------- /mid-side-mixer/nih_plug_vizia/src/widgets/param_base.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/mid-side-mixer/nih_plug_vizia/src/widgets/param_base.rs -------------------------------------------------------------------------------- /mid-side-mixer/nih_plug_vizia/src/widgets/param_button.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/mid-side-mixer/nih_plug_vizia/src/widgets/param_button.rs -------------------------------------------------------------------------------- /mid-side-mixer/nih_plug_vizia/src/widgets/param_slider.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/mid-side-mixer/nih_plug_vizia/src/widgets/param_slider.rs -------------------------------------------------------------------------------- /mid-side-mixer/nih_plug_vizia/src/widgets/peak_meter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/mid-side-mixer/nih_plug_vizia/src/widgets/peak_meter.rs -------------------------------------------------------------------------------- /mid-side-mixer/nih_plug_vizia/src/widgets/resize_handle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/mid-side-mixer/nih_plug_vizia/src/widgets/resize_handle.rs -------------------------------------------------------------------------------- /mid-side-mixer/nih_plug_vizia/src/widgets/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/mid-side-mixer/nih_plug_vizia/src/widgets/util.rs -------------------------------------------------------------------------------- /mid-side-mixer/res/Comfortaa-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/mid-side-mixer/res/Comfortaa-Light.ttf -------------------------------------------------------------------------------- /mid-side-mixer/res/Comfortaa-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/mid-side-mixer/res/Comfortaa-Regular.ttf -------------------------------------------------------------------------------- /mid-side-mixer/res/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/mid-side-mixer/res/Roboto-Thin.ttf -------------------------------------------------------------------------------- /mid-side-mixer/src/editor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/mid-side-mixer/src/editor.rs -------------------------------------------------------------------------------- /mid-side-mixer/src/editor/param_knob.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/mid-side-mixer/src/editor/param_knob.rs -------------------------------------------------------------------------------- /mid-side-mixer/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/mid-side-mixer/src/lib.rs -------------------------------------------------------------------------------- /mid-side-mixer/src/mid_side_mixer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/mid-side-mixer/src/mid_side_mixer.rs -------------------------------------------------------------------------------- /mid-side-mixer/xtask/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/mid-side-mixer/xtask/Cargo.toml -------------------------------------------------------------------------------- /mid-side-mixer/xtask/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/mid-side-mixer/xtask/src/main.rs -------------------------------------------------------------------------------- /phase-disperser/.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phase-disperser/.cargo/config -------------------------------------------------------------------------------- /phase-disperser/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phase-disperser/Cargo.toml -------------------------------------------------------------------------------- /phase-disperser/bundler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phase-disperser/bundler.toml -------------------------------------------------------------------------------- /phase-disperser/nih_plug_vizia/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phase-disperser/nih_plug_vizia/Cargo.toml -------------------------------------------------------------------------------- /phase-disperser/nih_plug_vizia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phase-disperser/nih_plug_vizia/README.md -------------------------------------------------------------------------------- /phase-disperser/nih_plug_vizia/assets/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phase-disperser/nih_plug_vizia/assets/theme.css -------------------------------------------------------------------------------- /phase-disperser/nih_plug_vizia/assets/widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phase-disperser/nih_plug_vizia/assets/widgets.css -------------------------------------------------------------------------------- /phase-disperser/nih_plug_vizia/src/assets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phase-disperser/nih_plug_vizia/src/assets.rs -------------------------------------------------------------------------------- /phase-disperser/nih_plug_vizia/src/editor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phase-disperser/nih_plug_vizia/src/editor.rs -------------------------------------------------------------------------------- /phase-disperser/nih_plug_vizia/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phase-disperser/nih_plug_vizia/src/lib.rs -------------------------------------------------------------------------------- /phase-disperser/nih_plug_vizia/src/vizia_assets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phase-disperser/nih_plug_vizia/src/vizia_assets.rs -------------------------------------------------------------------------------- /phase-disperser/nih_plug_vizia/src/widgets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phase-disperser/nih_plug_vizia/src/widgets.rs -------------------------------------------------------------------------------- /phase-disperser/nih_plug_vizia/src/widgets/generic_ui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phase-disperser/nih_plug_vizia/src/widgets/generic_ui.rs -------------------------------------------------------------------------------- /phase-disperser/nih_plug_vizia/src/widgets/param_base.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phase-disperser/nih_plug_vizia/src/widgets/param_base.rs -------------------------------------------------------------------------------- /phase-disperser/nih_plug_vizia/src/widgets/param_button.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phase-disperser/nih_plug_vizia/src/widgets/param_button.rs -------------------------------------------------------------------------------- /phase-disperser/nih_plug_vizia/src/widgets/param_slider.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phase-disperser/nih_plug_vizia/src/widgets/param_slider.rs -------------------------------------------------------------------------------- /phase-disperser/nih_plug_vizia/src/widgets/peak_meter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phase-disperser/nih_plug_vizia/src/widgets/peak_meter.rs -------------------------------------------------------------------------------- /phase-disperser/nih_plug_vizia/src/widgets/resize_handle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phase-disperser/nih_plug_vizia/src/widgets/resize_handle.rs -------------------------------------------------------------------------------- /phase-disperser/nih_plug_vizia/src/widgets/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phase-disperser/nih_plug_vizia/src/widgets/util.rs -------------------------------------------------------------------------------- /phase-disperser/res/Comfortaa-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phase-disperser/res/Comfortaa-Light.ttf -------------------------------------------------------------------------------- /phase-disperser/res/Comfortaa-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phase-disperser/res/Comfortaa-Regular.ttf -------------------------------------------------------------------------------- /phase-disperser/res/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phase-disperser/res/Roboto-Thin.ttf -------------------------------------------------------------------------------- /phase-disperser/src/disperser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phase-disperser/src/disperser.rs -------------------------------------------------------------------------------- /phase-disperser/src/editor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phase-disperser/src/editor.rs -------------------------------------------------------------------------------- /phase-disperser/src/editor/param_knob.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phase-disperser/src/editor/param_knob.rs -------------------------------------------------------------------------------- /phase-disperser/src/filter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phase-disperser/src/filter.rs -------------------------------------------------------------------------------- /phase-disperser/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phase-disperser/src/lib.rs -------------------------------------------------------------------------------- /phase-disperser/xtask/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phase-disperser/xtask/Cargo.toml -------------------------------------------------------------------------------- /phase-disperser/xtask/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phase-disperser/xtask/src/main.rs -------------------------------------------------------------------------------- /phaser/.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phaser/.cargo/config -------------------------------------------------------------------------------- /phaser/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phaser/Cargo.toml -------------------------------------------------------------------------------- /phaser/bundler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phaser/bundler.toml -------------------------------------------------------------------------------- /phaser/nih_plug_vizia/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phaser/nih_plug_vizia/Cargo.toml -------------------------------------------------------------------------------- /phaser/nih_plug_vizia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phaser/nih_plug_vizia/README.md -------------------------------------------------------------------------------- /phaser/nih_plug_vizia/assets/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phaser/nih_plug_vizia/assets/theme.css -------------------------------------------------------------------------------- /phaser/nih_plug_vizia/assets/widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phaser/nih_plug_vizia/assets/widgets.css -------------------------------------------------------------------------------- /phaser/nih_plug_vizia/src/assets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phaser/nih_plug_vizia/src/assets.rs -------------------------------------------------------------------------------- /phaser/nih_plug_vizia/src/editor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phaser/nih_plug_vizia/src/editor.rs -------------------------------------------------------------------------------- /phaser/nih_plug_vizia/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phaser/nih_plug_vizia/src/lib.rs -------------------------------------------------------------------------------- /phaser/nih_plug_vizia/src/vizia_assets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phaser/nih_plug_vizia/src/vizia_assets.rs -------------------------------------------------------------------------------- /phaser/nih_plug_vizia/src/widgets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phaser/nih_plug_vizia/src/widgets.rs -------------------------------------------------------------------------------- /phaser/nih_plug_vizia/src/widgets/generic_ui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phaser/nih_plug_vizia/src/widgets/generic_ui.rs -------------------------------------------------------------------------------- /phaser/nih_plug_vizia/src/widgets/param_base.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phaser/nih_plug_vizia/src/widgets/param_base.rs -------------------------------------------------------------------------------- /phaser/nih_plug_vizia/src/widgets/param_button.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phaser/nih_plug_vizia/src/widgets/param_button.rs -------------------------------------------------------------------------------- /phaser/nih_plug_vizia/src/widgets/param_slider.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phaser/nih_plug_vizia/src/widgets/param_slider.rs -------------------------------------------------------------------------------- /phaser/nih_plug_vizia/src/widgets/peak_meter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phaser/nih_plug_vizia/src/widgets/peak_meter.rs -------------------------------------------------------------------------------- /phaser/nih_plug_vizia/src/widgets/resize_handle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phaser/nih_plug_vizia/src/widgets/resize_handle.rs -------------------------------------------------------------------------------- /phaser/nih_plug_vizia/src/widgets/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phaser/nih_plug_vizia/src/widgets/util.rs -------------------------------------------------------------------------------- /phaser/res/Comfortaa-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phaser/res/Comfortaa-Light.ttf -------------------------------------------------------------------------------- /phaser/res/Comfortaa-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phaser/res/Comfortaa-Regular.ttf -------------------------------------------------------------------------------- /phaser/res/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phaser/res/Roboto-Thin.ttf -------------------------------------------------------------------------------- /phaser/src/delay.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phaser/src/delay.rs -------------------------------------------------------------------------------- /phaser/src/delayingallpass.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phaser/src/delayingallpass.rs -------------------------------------------------------------------------------- /phaser/src/editor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phaser/src/editor.rs -------------------------------------------------------------------------------- /phaser/src/editor/param_knob.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phaser/src/editor/param_knob.rs -------------------------------------------------------------------------------- /phaser/src/filter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phaser/src/filter.rs -------------------------------------------------------------------------------- /phaser/src/lfo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phaser/src/lfo.rs -------------------------------------------------------------------------------- /phaser/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phaser/src/lib.rs -------------------------------------------------------------------------------- /phaser/src/phaser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phaser/src/phaser.rs -------------------------------------------------------------------------------- /phaser/xtask/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phaser/xtask/Cargo.toml -------------------------------------------------------------------------------- /phaser/xtask/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maerorr/maerors-vst3-plugins/HEAD/phaser/xtask/src/main.rs --------------------------------------------------------------------------------