├── .clang-format ├── .github ├── FUNDING.yml └── workflows │ ├── book.yml │ ├── build_cmake.yml │ ├── build_vs2022.yml │ └── mingw.yml ├── .gitignore ├── .well-known └── funding-manifest-urls ├── AvendishConfig.cmake ├── CMakeLists.txt ├── LICENSE ├── README.md ├── book ├── book.toml ├── src │ ├── SUMMARY.md │ ├── advanced │ │ ├── channel_mimicking.md │ │ ├── cmake.md │ │ ├── dynamic_ports.md │ │ ├── fft.md │ │ ├── images │ │ │ ├── ui-basic.png │ │ │ ├── ui-image.gif │ │ │ └── ui-layout.png │ │ ├── injection.md │ │ ├── logging.md │ │ ├── port_types.codeedit.md │ │ ├── port_types.example.md │ │ ├── port_types.file.md │ │ ├── port_types.file.midi.md │ │ ├── port_types.file.raw.md │ │ ├── port_types.file.sound.md │ │ ├── port_types.md │ │ ├── presets.md │ │ ├── sample_accurate.example.md │ │ ├── sample_accurate.md │ │ ├── serialization.md │ │ ├── ui.layout.md │ │ ├── ui.md │ │ ├── ui.messages.example.md │ │ ├── ui.messages.md │ │ ├── ui.painting.md │ │ └── workers.md │ ├── development │ │ ├── flags.md │ │ ├── new_concepts.md │ │ └── predicates.md │ ├── foreword.md │ ├── getting_started │ │ ├── compiling.md │ │ ├── hello_world.md │ │ └── running.md │ ├── gpu │ │ ├── compute.md │ │ ├── draw.calls.md │ │ ├── draw.example.md │ │ ├── draw.layout.md │ │ ├── draw.md │ │ └── draw.minimal.md │ ├── images │ │ ├── example.gif │ │ └── getting_started │ │ │ └── pd-hello-world.png │ ├── reference │ │ ├── bindings.md │ │ ├── controls.md │ │ ├── feature-matrix.md │ │ └── processing.md │ └── writing_processors │ │ ├── audio.arguments.md │ │ ├── audio.fft.md │ │ ├── audio.md │ │ ├── audio.polyphonic.md │ │ ├── audio.setup.md │ │ ├── callbacks.md │ │ ├── images.example.md │ │ ├── images.md │ │ ├── images │ │ ├── addition-score.gif │ │ └── addition.png │ │ ├── init.md │ │ ├── messages.md │ │ ├── metadatas.md │ │ ├── midi.example.md │ │ ├── midi.md │ │ ├── ports.helpers.md │ │ ├── ports.md │ │ ├── ports.metadatas.helpers.md │ │ ├── ports.metadatas.mapping.md │ │ ├── ports.metadatas.md │ │ ├── ports.metadatas.range.md │ │ ├── ports.metadatas.smooth.md │ │ ├── ports.metadatas.widget.md │ │ ├── ports.refactoring.md │ │ ├── ports.update.md │ │ └── presets.md └── theme │ └── highlight.js ├── cmake ├── avendish.clap.cmake ├── avendish.cmake ├── avendish.dependencies.cmake ├── avendish.disableexceptions.cmake ├── avendish.dump.cmake ├── avendish.example.cmake ├── avendish.examples.cmake ├── avendish.gstreamer.cmake ├── avendish.max.cmake ├── avendish.ossia.cmake ├── avendish.pd.cmake ├── avendish.python.cmake ├── avendish.sources.cmake ├── avendish.standalone.cmake ├── avendish.tests.cmake ├── avendish.tools.cmake ├── avendish.touchdesigner.cmake ├── avendish.ui.qt.cmake ├── avendish.vintage.cmake └── avendish.vst3.cmake ├── docs ├── logo.png ├── max-examples.maxpat ├── max-jitter-examples.maxpat └── pd-examples.pd ├── examples ├── Advanced │ ├── AI │ │ ├── PromptComposer.hpp │ │ └── PromptInterpolator.hpp │ ├── Audio │ │ ├── AudioFilters.hpp │ │ ├── AudioSum.hpp │ │ ├── Bitcrush.hpp │ │ ├── Convolver.hpp │ │ ├── Dynamics.hpp │ │ ├── Echo.hpp │ │ ├── Flanger.hpp │ │ ├── Gain.hpp │ │ ├── MonoMix.hpp │ │ ├── QuadPan.hpp │ │ ├── Silence.hpp │ │ ├── Soundfile.hpp │ │ └── StereoMixer.hpp │ ├── AudioParticles │ │ ├── AudioParticles.cpp │ │ └── AudioParticles.hpp │ ├── Display │ │ └── ColorDisplay.hpp │ ├── GeoZones │ │ ├── GeoZones.cpp │ │ └── GeoZones.hpp │ ├── Geometry │ │ ├── NoiseBuffer.hpp │ │ ├── NoiseBuffer_raw_cpu.hpp │ │ └── NoiseBuffer_typed_cpu.hpp │ ├── Granular │ │ └── Granolette.hpp │ ├── Graph │ │ └── Graph.hpp │ ├── Image │ │ ├── LightnessComputer.hpp │ │ └── LightnessSampler.hpp │ ├── Kabang │ │ ├── Kabang.cpp │ │ ├── Kabang.hpp │ │ ├── Minibang.hpp │ │ ├── Sampler.cpp │ │ └── Sampler.hpp │ ├── MidiScaler │ │ ├── LICENSE-tuning-library.md │ │ ├── MidiFilter.hpp │ │ ├── MidiReader.hpp │ │ ├── MidiScaler.hpp │ │ ├── MidiScroller.hpp │ │ ├── StrStream.hpp │ │ ├── Tunings.h │ │ └── TuningsImpl.h │ ├── NetStream │ │ ├── NetIO.hpp │ │ ├── NetStreamProtocol.hpp │ │ ├── NetStreamReceiver.hpp │ │ ├── NetStreamSender.hpp │ │ └── TripleBuffer.hpp │ ├── Parametriq │ │ ├── EQDiagram.hpp │ │ ├── ParametricEq.hpp │ │ └── ParametricEqControls.hpp │ ├── Patternal │ │ ├── Melodial.hpp │ │ └── Patternal.hpp │ ├── Spatialization │ │ ├── DBAP.hpp │ │ └── MatrixMixer.hpp │ ├── Synth │ │ └── Wavecycle.hpp │ ├── UI │ │ ├── 2DView.hpp │ │ ├── Knob.hpp │ │ ├── LEDView.hpp │ │ ├── Multislider.hpp │ │ ├── PulseView.hpp │ │ └── Widgets.hpp │ └── Utilities │ │ ├── ADSR.hpp │ │ ├── Accumulator.hpp │ │ ├── ArrayCombiner.hpp │ │ ├── ArrayFlattener.hpp │ │ ├── ArrayRecombiner.hpp │ │ ├── ArrayTool.hpp │ │ ├── Automation.hpp │ │ ├── Calibrator.hpp │ │ ├── ColorAutomation.hpp │ │ ├── Combine.hpp │ │ ├── ControlToCV.hpp │ │ ├── Counter.hpp │ │ ├── LFO.hpp │ │ ├── Logic.hpp │ │ ├── MapTool.hpp │ │ ├── Mapping.hpp │ │ ├── Math.hpp │ │ ├── RangeFilter.hpp │ │ ├── RangeMapper.hpp │ │ ├── RepetitionFilter.hpp │ │ ├── Smooth.hpp │ │ ├── Spread.hpp │ │ ├── Trigger.hpp │ │ ├── Tweener.hpp │ │ ├── ValueFilter.hpp │ │ └── ValueMixer.hpp ├── Complete │ ├── CompleteMessageExample.hpp │ ├── CompleteMessageExample.maxhelp │ └── CompleteMessageExample.pd ├── Demos │ ├── GeneratePdHelp.cpp │ ├── JSONToMaxref.cpp │ ├── OSC.cpp │ └── maxref_template.xml ├── GPT3 │ └── ResonantBandpass.hpp ├── Gpu │ ├── ArrayToBuffer.hpp │ ├── BufferToArray.hpp │ ├── Compute.hpp │ ├── DrawRaw.hpp │ ├── DrawWithHelpers.hpp │ ├── FilterGeometry.hpp │ ├── GenerateGeometry.hpp │ └── SolidColor.hpp ├── Helpers │ ├── Attributes.hpp │ ├── AudioChannelSelector.hpp │ ├── Controls.hpp │ ├── CustomChannels.hpp │ ├── DynamicPort.hpp │ ├── FFTDisplay.hpp │ ├── FileChange.hpp │ ├── Gpu.hpp │ ├── GradientScrubber.hpp │ ├── ImageUi.hpp │ ├── Logger.hpp │ ├── Lowpass.hpp │ ├── Messages.hpp │ ├── Midi.hpp │ ├── Noise.hpp │ ├── Peak.hpp │ ├── PeakBand.hpp │ ├── PeakBandFFTPort.hpp │ ├── PerBus.hpp │ ├── PerSample.hpp │ ├── Poles.hpp │ ├── Sines.hpp │ ├── SmoothGain.hpp │ ├── SpriteReader.hpp │ ├── Ui.hpp │ ├── UiBus.hpp │ └── ValueDelay.hpp ├── Midi │ ├── Arpeggiator.hpp │ ├── MidiGlide.hpp │ ├── MidiHiResInput.hpp │ ├── MidiHiResOutput.hpp │ └── MidiPitch.hpp ├── Ports │ ├── BarrVerb │ │ ├── BarrVerb.hpp │ │ └── rom.h │ ├── Essentia │ │ ├── README.md │ │ ├── essentia.hpp │ │ └── stats │ │ │ └── Entropy.hpp │ ├── LitterPower │ │ ├── CCC.hpp │ │ └── README.md │ ├── Puara │ │ └── Jab.hpp │ ├── VB │ │ ├── README.md │ │ └── vb.fourses_tilde.hpp │ └── WaveDigitalFilters │ │ ├── PassiveLPF.hpp │ │ └── VoltageDivider.hpp ├── README.md ├── Raw │ ├── Addition.hpp │ ├── Aggregate.hpp │ ├── AllPortsTypes.hpp │ ├── Callback.hpp │ ├── Construct.hpp │ ├── DoubleArray.hpp │ ├── DynamicPort.hpp │ ├── Init.hpp │ ├── Interpolator.hpp │ ├── Lowpass.hpp │ ├── Messages.hpp │ ├── Midi.hpp │ ├── MiniPerSample.hpp │ ├── Minimal.hpp │ ├── Modular.hpp │ ├── Optional.hpp │ ├── PerSampleProcessor.hpp │ ├── PerSampleProcessor2.hpp │ ├── Presets.hpp │ ├── ProcessLauncher.hpp │ ├── Processor.hpp │ ├── Random.hpp │ ├── Reactive.hpp │ ├── SampleAccurateControls.hpp │ ├── Shell.hpp │ ├── Sines.hpp │ ├── SpanControls.hpp │ ├── TimingSplitter.hpp │ ├── Ui.hpp │ └── Variant.hpp └── Tutorial │ ├── AudioEffectExample.hpp │ ├── AudioSidechainExample.hpp │ ├── ControlGallery.hpp │ ├── CubeGenerator.hpp │ ├── Distortion.hpp │ ├── EmptyExample.hpp │ ├── SampleAccurateFilterExample.hpp │ ├── SampleAccurateGeneratorExample.hpp │ ├── Synth.hpp │ ├── TextureFilterExample.hpp │ ├── TextureGeneratorExample.hpp │ ├── TrivialFilterExample.hpp │ ├── TrivialGeneratorExample.hpp │ └── ZeroDependencyAudioEffect.hpp ├── include ├── avnd │ ├── binding │ │ ├── clap │ │ │ ├── all.hpp │ │ │ ├── audio_effect.hpp │ │ │ ├── bus_info.hpp │ │ │ ├── clap.hpp │ │ │ ├── configure.hpp │ │ │ ├── helpers.hpp │ │ │ └── prototype.cpp.in │ │ ├── dump │ │ │ ├── DumpCBOR.hpp │ │ │ ├── DumpText.hpp │ │ │ └── prototype.cpp.in │ │ ├── example │ │ │ ├── all.hpp │ │ │ ├── example_processor.hpp │ │ │ └── prototype.cpp.in │ │ ├── gstreamer │ │ │ ├── audio_filter.hpp │ │ │ ├── audio_sink.hpp │ │ │ ├── audio_source.hpp │ │ │ ├── configuration.hpp │ │ │ ├── element.hpp │ │ │ ├── parameters.hpp │ │ │ ├── prototype.cpp.in │ │ │ ├── texture_filter.hpp │ │ │ ├── texture_sink.hpp │ │ │ ├── texture_source.hpp │ │ │ └── utils.hpp │ │ ├── liblo │ │ │ ├── receive.hpp │ │ │ └── send.hpp │ │ ├── max │ │ │ ├── all.hpp │ │ │ ├── atom_helpers.hpp │ │ │ ├── atom_iterator.hpp │ │ │ ├── attributes_setup.hpp │ │ │ ├── audio_processor.hpp │ │ │ ├── configure.hpp │ │ │ ├── dict.hpp │ │ │ ├── dsp.hpp │ │ │ ├── from_atoms.hpp │ │ │ ├── from_dict.hpp │ │ │ ├── helpers.hpp │ │ │ ├── init.hpp │ │ │ ├── inputs.hpp │ │ │ ├── jitter_helpers.hpp │ │ │ ├── jitter_processor.hpp │ │ │ ├── jitter_texture_conversion.hpp │ │ │ ├── jitter_texture_format.hpp │ │ │ ├── message_processor.hpp │ │ │ ├── messages.hpp │ │ │ ├── outputs.hpp │ │ │ ├── processor_common.hpp │ │ │ ├── prototype.cpp.in │ │ │ ├── resources │ │ │ │ └── PkgInfo │ │ │ └── to_atoms.hpp │ │ ├── ossia │ │ │ ├── all.hpp │ │ │ ├── builtin_ports.hpp │ │ │ ├── callbacks.hpp │ │ │ ├── configure.hpp │ │ │ ├── controls.hpp │ │ │ ├── data_node.hpp │ │ │ ├── dynamic_ports.hpp │ │ │ ├── ffts.hpp │ │ │ ├── from_value.hpp │ │ │ ├── geometry.hpp │ │ │ ├── message_process.hpp │ │ │ ├── mono_audio_node.hpp │ │ │ ├── node.hpp │ │ │ ├── ossia_audio_node.hpp │ │ │ ├── ossia_to_curve.hpp │ │ │ ├── poly_audio_node.hpp │ │ │ ├── port_base.hpp │ │ │ ├── port_run_postprocess.hpp │ │ │ ├── port_run_preprocess.hpp │ │ │ ├── port_setup.hpp │ │ │ ├── prototype.cpp.in │ │ │ ├── qt.hpp │ │ │ ├── soundfiles.hpp │ │ │ ├── time_controls.hpp │ │ │ ├── to_value.hpp │ │ │ ├── uuid.hpp │ │ │ ├── value.hpp │ │ │ └── window_functions.hpp │ │ ├── pd │ │ │ ├── all.hpp │ │ │ ├── atom_iterator.hpp │ │ │ ├── audio_processor.hpp │ │ │ ├── configure.hpp │ │ │ ├── construct.hpp │ │ │ ├── dsp.hpp │ │ │ ├── helpers.hpp │ │ │ ├── init.hpp │ │ │ ├── inputs.hpp │ │ │ ├── message_processor.hpp │ │ │ ├── messages.hpp │ │ │ ├── outputs.hpp │ │ │ └── prototype.cpp.in │ │ ├── python │ │ │ ├── all.hpp │ │ │ ├── configure.hpp │ │ │ ├── processor.hpp │ │ │ └── prototype.cpp.in │ │ ├── standalone │ │ │ ├── all.hpp │ │ │ ├── audio.hpp │ │ │ ├── configure.hpp │ │ │ ├── oscquery_mapper.hpp │ │ │ ├── prototype.cpp.in │ │ │ └── standalone.hpp │ │ ├── touchdesigner │ │ │ ├── CHOP_AUDIO.prototype.cpp.in │ │ │ ├── CHOP_MESSAGE.prototype.cpp.in │ │ │ ├── DAT.prototype.cpp.in │ │ │ ├── SOP.prototype.cpp.in │ │ │ ├── TOP.prototype.cpp.in │ │ │ ├── all.hpp │ │ │ ├── chop │ │ │ │ ├── audio_processor.hpp │ │ │ │ └── message_processor.hpp │ │ │ ├── configure.hpp │ │ │ ├── dat │ │ │ │ └── data_processor.hpp │ │ │ ├── helpers.hpp │ │ │ ├── parameter_setup.hpp │ │ │ ├── parameter_update.hpp │ │ │ ├── sop │ │ │ │ └── geometry_processor.hpp │ │ │ └── top │ │ │ │ └── texture_processor.hpp │ │ ├── ui │ │ │ ├── nuklear │ │ │ │ ├── nuklear.hpp │ │ │ │ └── nuklear_glfw_gl4.h │ │ │ ├── nuklear_layout_ui.hpp │ │ │ ├── qml │ │ │ │ ├── enum_control.hpp │ │ │ │ ├── enum_ui.hpp │ │ │ │ ├── float_control.hpp │ │ │ │ ├── float_knob.hpp │ │ │ │ ├── float_slider.hpp │ │ │ │ ├── int_control.hpp │ │ │ │ ├── int_knob.hpp │ │ │ │ ├── int_slider.hpp │ │ │ │ ├── toggle_control.hpp │ │ │ │ └── toggle_ui.hpp │ │ │ ├── qml_layout_ui.hpp │ │ │ └── qml_ui.hpp │ │ ├── vintage │ │ │ ├── all.hpp │ │ │ ├── atomic_controls.hpp │ │ │ ├── audio_effect.hpp │ │ │ ├── configure.hpp │ │ │ ├── dispatch.hpp │ │ │ ├── helpers.hpp │ │ │ ├── midi_processor.hpp │ │ │ ├── polyphonic_synth.hpp │ │ │ ├── processor_setup.hpp │ │ │ ├── programs.hpp │ │ │ ├── prototype.cpp.in │ │ │ ├── synth_helpers.hpp │ │ │ └── vintage.hpp │ │ └── vst3 │ │ │ ├── all.hpp │ │ │ ├── audio_effect.hpp │ │ │ ├── bus_info.hpp │ │ │ ├── component.hpp │ │ │ ├── component_base.hpp │ │ │ ├── configure.hpp │ │ │ ├── connection_point.hpp │ │ │ ├── controller.hpp │ │ │ ├── controller_base.hpp │ │ │ ├── factory.hpp │ │ │ ├── helpers.hpp │ │ │ ├── metadata.hpp │ │ │ ├── programs.hpp │ │ │ ├── prototype.cpp.in │ │ │ ├── refcount.hpp │ │ │ └── types.hpp │ ├── common │ │ ├── aggregates.base.hpp │ │ ├── aggregates.hpp │ │ ├── aggregates.includes.hpp │ │ ├── aggregates.p1061.hpp │ │ ├── aggregates.pfr.hpp │ │ ├── aggregates.recursive.hpp │ │ ├── aggregates.simple.hpp │ │ ├── arithmetic.hpp │ │ ├── array.hpp │ │ ├── concepts_polyfill.hpp │ │ ├── coroutines.hpp │ │ ├── dummy.hpp │ │ ├── enum_reflection.hpp │ │ ├── enums.hpp │ │ ├── errors.hpp │ │ ├── export.hpp │ │ ├── for_nth.hpp │ │ ├── function_reflection.hpp │ │ ├── index.hpp │ │ ├── index_sequence.hpp │ │ ├── init_cpp_with_c_object_header.hpp │ │ ├── inline.hpp │ │ ├── limited_string.hpp │ │ ├── limited_string_view.hpp │ │ ├── member_reflection.hpp │ │ ├── no_unique_address.hpp │ │ ├── optionals.hpp │ │ ├── span_polyfill.hpp │ │ ├── struct_reflection.hpp │ │ ├── tag.hpp │ │ ├── tuple.hpp │ │ └── widechar.hpp │ ├── concepts │ │ ├── all.hpp │ │ ├── attributes.hpp │ │ ├── audio_port.hpp │ │ ├── audio_processor.hpp │ │ ├── callback.hpp │ │ ├── channels.hpp │ │ ├── control.hpp │ │ ├── curve.hpp │ │ ├── dynamic_ports.hpp │ │ ├── fft.hpp │ │ ├── field_names.hpp │ │ ├── file_port.hpp │ │ ├── generic.hpp │ │ ├── gfx.hpp │ │ ├── hardware.hpp │ │ ├── init.hpp │ │ ├── layout.hpp │ │ ├── logger.hpp │ │ ├── mapper.hpp │ │ ├── message.hpp │ │ ├── message_bus.hpp │ │ ├── midi.hpp │ │ ├── midi_port.hpp │ │ ├── midifile.hpp │ │ ├── modules.hpp │ │ ├── object.hpp │ │ ├── painter.hpp │ │ ├── parameter.hpp │ │ ├── port.hpp │ │ ├── processor.hpp │ │ ├── range.hpp │ │ ├── schedule.hpp │ │ ├── smooth.hpp │ │ ├── soundfile.hpp │ │ ├── synth.hpp │ │ ├── temporality.hpp │ │ ├── ui.hpp │ │ ├── widget.hpp │ │ └── worker.hpp │ ├── introspection │ │ ├── channels.hpp │ │ ├── generic.hpp │ │ ├── gfx.hpp │ │ ├── hardware.hpp │ │ ├── input.hpp │ │ ├── layout.hpp │ │ ├── mapper.hpp │ │ ├── messages.hpp │ │ ├── midi.hpp │ │ ├── modules.hpp │ │ ├── output.hpp │ │ ├── port.hpp │ │ ├── range.hpp │ │ ├── smooth.hpp │ │ ├── type_wrapper.hpp │ │ ├── vecf.hpp │ │ └── widgets.hpp │ ├── prefix.hpp │ └── wrappers │ │ ├── audio_channel_manager.hpp │ │ ├── avnd.hpp │ │ ├── bus_host_process_adapter.hpp │ │ ├── callbacks_adapter.hpp │ │ ├── colors.hpp │ │ ├── configure.hpp │ │ ├── control_display.hpp │ │ ├── controls.hpp │ │ ├── controls_double.hpp │ │ ├── controls_fp.hpp │ │ ├── controls_storage.hpp │ │ ├── effect_container.hpp │ │ ├── generic.hpp │ │ ├── metadatas.hpp │ │ ├── prepare.hpp │ │ ├── process │ │ ├── base.hpp │ │ ├── per_channel_arg.hpp │ │ ├── per_channel_port.hpp │ │ ├── per_sample_arg.hpp │ │ ├── per_sample_port.hpp │ │ ├── poly_arg.hpp │ │ └── poly_port.hpp │ │ ├── process_adapter.hpp │ │ ├── process_bus │ │ ├── base.hpp │ │ ├── per_channel_arg.hpp │ │ ├── per_channel_port.hpp │ │ ├── per_sample_arg.hpp │ │ ├── per_sample_port.hpp │ │ ├── poly_arg.hpp │ │ └── poly_port.hpp │ │ ├── process_bus_adapter.hpp │ │ ├── process_execution.hpp │ │ ├── ranges.hpp │ │ ├── smooth.hpp │ │ ├── soundfile_storage.hpp │ │ └── widgets.hpp ├── gpp │ ├── commands.hpp │ ├── generators.hpp │ ├── layout.hpp │ ├── meta.hpp │ └── ports.hpp └── halp │ ├── attributes.hpp │ ├── audio.hpp │ ├── callback.hpp │ ├── compat │ └── gamma.hpp │ ├── controls.basic.hpp │ ├── controls.buttons.hpp │ ├── controls.enums.hpp │ ├── controls.hpp │ ├── controls.sliders.gcc10.hpp │ ├── controls.sliders.hpp │ ├── controls.typedefs.hpp │ ├── controls_fmt.hpp │ ├── curve.hpp │ ├── custom_widgets.hpp │ ├── device.hpp │ ├── dynamic_port.hpp │ ├── fft.hpp │ ├── file_port.hpp │ ├── geometry.hpp │ ├── gradient_port.hpp │ ├── inline.hpp │ ├── layout.hpp │ ├── log.hpp │ ├── mappers.hpp │ ├── messages.hpp │ ├── meta.hpp │ ├── midi.hpp │ ├── midifile_port.hpp │ ├── modules.hpp │ ├── polyfill.hpp │ ├── reactive_value.hpp │ ├── sample_accurate_controls.hpp │ ├── schedule.hpp │ ├── shared_instance.hpp │ ├── smooth_controls.hpp │ ├── smoothers.hpp │ ├── soundfile_port.hpp │ ├── static_string.hpp │ ├── texture.hpp │ ├── texture_formats.hpp │ └── value_types.hpp ├── resources └── background.svg ├── src ├── disable_exceptions.cpp └── dummy.cpp └── tests ├── objects ├── gain.cpp └── patternal.cpp ├── test_audioprocessor.cpp ├── test_curve.cpp ├── test_index_in_struct.cpp ├── test_introspection.cpp ├── test_introspection_many.cpp ├── test_introspection_rec.cpp ├── test_ossia_values.cpp ├── test_predicate.cpp ├── tests_channels.cpp ├── tests_function_reflection.cpp └── tests_vintage.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/book.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/.github/workflows/book.yml -------------------------------------------------------------------------------- /.github/workflows/build_cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/.github/workflows/build_cmake.yml -------------------------------------------------------------------------------- /.github/workflows/build_vs2022.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/.github/workflows/build_vs2022.yml -------------------------------------------------------------------------------- /.github/workflows/mingw.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/.github/workflows/mingw.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/.gitignore -------------------------------------------------------------------------------- /.well-known/funding-manifest-urls: -------------------------------------------------------------------------------- 1 | https://jcelerier.name/funding.json 2 | -------------------------------------------------------------------------------- /AvendishConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/AvendishConfig.cmake -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/README.md -------------------------------------------------------------------------------- /book/book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/book.toml -------------------------------------------------------------------------------- /book/src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/SUMMARY.md -------------------------------------------------------------------------------- /book/src/advanced/channel_mimicking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/advanced/channel_mimicking.md -------------------------------------------------------------------------------- /book/src/advanced/cmake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/advanced/cmake.md -------------------------------------------------------------------------------- /book/src/advanced/dynamic_ports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/advanced/dynamic_ports.md -------------------------------------------------------------------------------- /book/src/advanced/fft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/advanced/fft.md -------------------------------------------------------------------------------- /book/src/advanced/images/ui-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/advanced/images/ui-basic.png -------------------------------------------------------------------------------- /book/src/advanced/images/ui-image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/advanced/images/ui-image.gif -------------------------------------------------------------------------------- /book/src/advanced/images/ui-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/advanced/images/ui-layout.png -------------------------------------------------------------------------------- /book/src/advanced/injection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/advanced/injection.md -------------------------------------------------------------------------------- /book/src/advanced/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/advanced/logging.md -------------------------------------------------------------------------------- /book/src/advanced/port_types.codeedit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/advanced/port_types.codeedit.md -------------------------------------------------------------------------------- /book/src/advanced/port_types.example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/advanced/port_types.example.md -------------------------------------------------------------------------------- /book/src/advanced/port_types.file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/advanced/port_types.file.md -------------------------------------------------------------------------------- /book/src/advanced/port_types.file.midi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/advanced/port_types.file.midi.md -------------------------------------------------------------------------------- /book/src/advanced/port_types.file.raw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/advanced/port_types.file.raw.md -------------------------------------------------------------------------------- /book/src/advanced/port_types.file.sound.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/advanced/port_types.file.sound.md -------------------------------------------------------------------------------- /book/src/advanced/port_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/advanced/port_types.md -------------------------------------------------------------------------------- /book/src/advanced/presets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/advanced/presets.md -------------------------------------------------------------------------------- /book/src/advanced/sample_accurate.example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/advanced/sample_accurate.example.md -------------------------------------------------------------------------------- /book/src/advanced/sample_accurate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/advanced/sample_accurate.md -------------------------------------------------------------------------------- /book/src/advanced/serialization.md: -------------------------------------------------------------------------------- 1 | # Serialization 2 | 3 | TODO :D -------------------------------------------------------------------------------- /book/src/advanced/ui.layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/advanced/ui.layout.md -------------------------------------------------------------------------------- /book/src/advanced/ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/advanced/ui.md -------------------------------------------------------------------------------- /book/src/advanced/ui.messages.example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/advanced/ui.messages.example.md -------------------------------------------------------------------------------- /book/src/advanced/ui.messages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/advanced/ui.messages.md -------------------------------------------------------------------------------- /book/src/advanced/ui.painting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/advanced/ui.painting.md -------------------------------------------------------------------------------- /book/src/advanced/workers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/advanced/workers.md -------------------------------------------------------------------------------- /book/src/development/flags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/development/flags.md -------------------------------------------------------------------------------- /book/src/development/new_concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/development/new_concepts.md -------------------------------------------------------------------------------- /book/src/development/predicates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/development/predicates.md -------------------------------------------------------------------------------- /book/src/foreword.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/foreword.md -------------------------------------------------------------------------------- /book/src/getting_started/compiling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/getting_started/compiling.md -------------------------------------------------------------------------------- /book/src/getting_started/hello_world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/getting_started/hello_world.md -------------------------------------------------------------------------------- /book/src/getting_started/running.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/getting_started/running.md -------------------------------------------------------------------------------- /book/src/gpu/compute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/gpu/compute.md -------------------------------------------------------------------------------- /book/src/gpu/draw.calls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/gpu/draw.calls.md -------------------------------------------------------------------------------- /book/src/gpu/draw.example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/gpu/draw.example.md -------------------------------------------------------------------------------- /book/src/gpu/draw.layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/gpu/draw.layout.md -------------------------------------------------------------------------------- /book/src/gpu/draw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/gpu/draw.md -------------------------------------------------------------------------------- /book/src/gpu/draw.minimal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/gpu/draw.minimal.md -------------------------------------------------------------------------------- /book/src/images/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/images/example.gif -------------------------------------------------------------------------------- /book/src/images/getting_started/pd-hello-world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/images/getting_started/pd-hello-world.png -------------------------------------------------------------------------------- /book/src/reference/bindings.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /book/src/reference/controls.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /book/src/reference/feature-matrix.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /book/src/reference/processing.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /book/src/writing_processors/audio.arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/writing_processors/audio.arguments.md -------------------------------------------------------------------------------- /book/src/writing_processors/audio.fft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/writing_processors/audio.fft.md -------------------------------------------------------------------------------- /book/src/writing_processors/audio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/writing_processors/audio.md -------------------------------------------------------------------------------- /book/src/writing_processors/audio.polyphonic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/writing_processors/audio.polyphonic.md -------------------------------------------------------------------------------- /book/src/writing_processors/audio.setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/writing_processors/audio.setup.md -------------------------------------------------------------------------------- /book/src/writing_processors/callbacks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/writing_processors/callbacks.md -------------------------------------------------------------------------------- /book/src/writing_processors/images.example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/writing_processors/images.example.md -------------------------------------------------------------------------------- /book/src/writing_processors/images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/writing_processors/images.md -------------------------------------------------------------------------------- /book/src/writing_processors/images/addition-score.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/writing_processors/images/addition-score.gif -------------------------------------------------------------------------------- /book/src/writing_processors/images/addition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/writing_processors/images/addition.png -------------------------------------------------------------------------------- /book/src/writing_processors/init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/writing_processors/init.md -------------------------------------------------------------------------------- /book/src/writing_processors/messages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/writing_processors/messages.md -------------------------------------------------------------------------------- /book/src/writing_processors/metadatas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/writing_processors/metadatas.md -------------------------------------------------------------------------------- /book/src/writing_processors/midi.example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/writing_processors/midi.example.md -------------------------------------------------------------------------------- /book/src/writing_processors/midi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/writing_processors/midi.md -------------------------------------------------------------------------------- /book/src/writing_processors/ports.helpers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/writing_processors/ports.helpers.md -------------------------------------------------------------------------------- /book/src/writing_processors/ports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/writing_processors/ports.md -------------------------------------------------------------------------------- /book/src/writing_processors/ports.metadatas.helpers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/writing_processors/ports.metadatas.helpers.md -------------------------------------------------------------------------------- /book/src/writing_processors/ports.metadatas.mapping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/writing_processors/ports.metadatas.mapping.md -------------------------------------------------------------------------------- /book/src/writing_processors/ports.metadatas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/writing_processors/ports.metadatas.md -------------------------------------------------------------------------------- /book/src/writing_processors/ports.metadatas.range.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/writing_processors/ports.metadatas.range.md -------------------------------------------------------------------------------- /book/src/writing_processors/ports.metadatas.smooth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/writing_processors/ports.metadatas.smooth.md -------------------------------------------------------------------------------- /book/src/writing_processors/ports.metadatas.widget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/writing_processors/ports.metadatas.widget.md -------------------------------------------------------------------------------- /book/src/writing_processors/ports.refactoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/writing_processors/ports.refactoring.md -------------------------------------------------------------------------------- /book/src/writing_processors/ports.update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/src/writing_processors/ports.update.md -------------------------------------------------------------------------------- /book/src/writing_processors/presets.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /book/theme/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/book/theme/highlight.js -------------------------------------------------------------------------------- /cmake/avendish.clap.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/cmake/avendish.clap.cmake -------------------------------------------------------------------------------- /cmake/avendish.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/cmake/avendish.cmake -------------------------------------------------------------------------------- /cmake/avendish.dependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/cmake/avendish.dependencies.cmake -------------------------------------------------------------------------------- /cmake/avendish.disableexceptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/cmake/avendish.disableexceptions.cmake -------------------------------------------------------------------------------- /cmake/avendish.dump.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/cmake/avendish.dump.cmake -------------------------------------------------------------------------------- /cmake/avendish.example.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/cmake/avendish.example.cmake -------------------------------------------------------------------------------- /cmake/avendish.examples.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/cmake/avendish.examples.cmake -------------------------------------------------------------------------------- /cmake/avendish.gstreamer.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/cmake/avendish.gstreamer.cmake -------------------------------------------------------------------------------- /cmake/avendish.max.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/cmake/avendish.max.cmake -------------------------------------------------------------------------------- /cmake/avendish.ossia.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/cmake/avendish.ossia.cmake -------------------------------------------------------------------------------- /cmake/avendish.pd.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/cmake/avendish.pd.cmake -------------------------------------------------------------------------------- /cmake/avendish.python.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/cmake/avendish.python.cmake -------------------------------------------------------------------------------- /cmake/avendish.sources.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/cmake/avendish.sources.cmake -------------------------------------------------------------------------------- /cmake/avendish.standalone.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/cmake/avendish.standalone.cmake -------------------------------------------------------------------------------- /cmake/avendish.tests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/cmake/avendish.tests.cmake -------------------------------------------------------------------------------- /cmake/avendish.tools.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/cmake/avendish.tools.cmake -------------------------------------------------------------------------------- /cmake/avendish.touchdesigner.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/cmake/avendish.touchdesigner.cmake -------------------------------------------------------------------------------- /cmake/avendish.ui.qt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/cmake/avendish.ui.qt.cmake -------------------------------------------------------------------------------- /cmake/avendish.vintage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/cmake/avendish.vintage.cmake -------------------------------------------------------------------------------- /cmake/avendish.vst3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/cmake/avendish.vst3.cmake -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/docs/logo.png -------------------------------------------------------------------------------- /docs/max-examples.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/docs/max-examples.maxpat -------------------------------------------------------------------------------- /docs/max-jitter-examples.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/docs/max-jitter-examples.maxpat -------------------------------------------------------------------------------- /docs/pd-examples.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/docs/pd-examples.pd -------------------------------------------------------------------------------- /examples/Advanced/AI/PromptComposer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/AI/PromptComposer.hpp -------------------------------------------------------------------------------- /examples/Advanced/AI/PromptInterpolator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/AI/PromptInterpolator.hpp -------------------------------------------------------------------------------- /examples/Advanced/Audio/AudioFilters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Audio/AudioFilters.hpp -------------------------------------------------------------------------------- /examples/Advanced/Audio/AudioSum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Audio/AudioSum.hpp -------------------------------------------------------------------------------- /examples/Advanced/Audio/Bitcrush.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Audio/Bitcrush.hpp -------------------------------------------------------------------------------- /examples/Advanced/Audio/Convolver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Audio/Convolver.hpp -------------------------------------------------------------------------------- /examples/Advanced/Audio/Dynamics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Audio/Dynamics.hpp -------------------------------------------------------------------------------- /examples/Advanced/Audio/Echo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Audio/Echo.hpp -------------------------------------------------------------------------------- /examples/Advanced/Audio/Flanger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Audio/Flanger.hpp -------------------------------------------------------------------------------- /examples/Advanced/Audio/Gain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Audio/Gain.hpp -------------------------------------------------------------------------------- /examples/Advanced/Audio/MonoMix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Audio/MonoMix.hpp -------------------------------------------------------------------------------- /examples/Advanced/Audio/QuadPan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Audio/QuadPan.hpp -------------------------------------------------------------------------------- /examples/Advanced/Audio/Silence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Audio/Silence.hpp -------------------------------------------------------------------------------- /examples/Advanced/Audio/Soundfile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Audio/Soundfile.hpp -------------------------------------------------------------------------------- /examples/Advanced/Audio/StereoMixer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Audio/StereoMixer.hpp -------------------------------------------------------------------------------- /examples/Advanced/AudioParticles/AudioParticles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/AudioParticles/AudioParticles.cpp -------------------------------------------------------------------------------- /examples/Advanced/AudioParticles/AudioParticles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/AudioParticles/AudioParticles.hpp -------------------------------------------------------------------------------- /examples/Advanced/Display/ColorDisplay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Display/ColorDisplay.hpp -------------------------------------------------------------------------------- /examples/Advanced/GeoZones/GeoZones.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/GeoZones/GeoZones.cpp -------------------------------------------------------------------------------- /examples/Advanced/GeoZones/GeoZones.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/GeoZones/GeoZones.hpp -------------------------------------------------------------------------------- /examples/Advanced/Geometry/NoiseBuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Geometry/NoiseBuffer.hpp -------------------------------------------------------------------------------- /examples/Advanced/Geometry/NoiseBuffer_raw_cpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Geometry/NoiseBuffer_raw_cpu.hpp -------------------------------------------------------------------------------- /examples/Advanced/Geometry/NoiseBuffer_typed_cpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Geometry/NoiseBuffer_typed_cpu.hpp -------------------------------------------------------------------------------- /examples/Advanced/Granular/Granolette.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Granular/Granolette.hpp -------------------------------------------------------------------------------- /examples/Advanced/Graph/Graph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Graph/Graph.hpp -------------------------------------------------------------------------------- /examples/Advanced/Image/LightnessComputer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Image/LightnessComputer.hpp -------------------------------------------------------------------------------- /examples/Advanced/Image/LightnessSampler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Image/LightnessSampler.hpp -------------------------------------------------------------------------------- /examples/Advanced/Kabang/Kabang.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Kabang/Kabang.cpp -------------------------------------------------------------------------------- /examples/Advanced/Kabang/Kabang.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Kabang/Kabang.hpp -------------------------------------------------------------------------------- /examples/Advanced/Kabang/Minibang.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Kabang/Minibang.hpp -------------------------------------------------------------------------------- /examples/Advanced/Kabang/Sampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Kabang/Sampler.cpp -------------------------------------------------------------------------------- /examples/Advanced/Kabang/Sampler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Kabang/Sampler.hpp -------------------------------------------------------------------------------- /examples/Advanced/MidiScaler/LICENSE-tuning-library.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/MidiScaler/LICENSE-tuning-library.md -------------------------------------------------------------------------------- /examples/Advanced/MidiScaler/MidiFilter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/MidiScaler/MidiFilter.hpp -------------------------------------------------------------------------------- /examples/Advanced/MidiScaler/MidiReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/MidiScaler/MidiReader.hpp -------------------------------------------------------------------------------- /examples/Advanced/MidiScaler/MidiScaler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/MidiScaler/MidiScaler.hpp -------------------------------------------------------------------------------- /examples/Advanced/MidiScaler/MidiScroller.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/MidiScaler/MidiScroller.hpp -------------------------------------------------------------------------------- /examples/Advanced/MidiScaler/StrStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/MidiScaler/StrStream.hpp -------------------------------------------------------------------------------- /examples/Advanced/MidiScaler/Tunings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/MidiScaler/Tunings.h -------------------------------------------------------------------------------- /examples/Advanced/MidiScaler/TuningsImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/MidiScaler/TuningsImpl.h -------------------------------------------------------------------------------- /examples/Advanced/NetStream/NetIO.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/NetStream/NetIO.hpp -------------------------------------------------------------------------------- /examples/Advanced/NetStream/NetStreamProtocol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/NetStream/NetStreamProtocol.hpp -------------------------------------------------------------------------------- /examples/Advanced/NetStream/NetStreamReceiver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/NetStream/NetStreamReceiver.hpp -------------------------------------------------------------------------------- /examples/Advanced/NetStream/NetStreamSender.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/NetStream/NetStreamSender.hpp -------------------------------------------------------------------------------- /examples/Advanced/NetStream/TripleBuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/NetStream/TripleBuffer.hpp -------------------------------------------------------------------------------- /examples/Advanced/Parametriq/EQDiagram.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Parametriq/EQDiagram.hpp -------------------------------------------------------------------------------- /examples/Advanced/Parametriq/ParametricEq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Parametriq/ParametricEq.hpp -------------------------------------------------------------------------------- /examples/Advanced/Parametriq/ParametricEqControls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Parametriq/ParametricEqControls.hpp -------------------------------------------------------------------------------- /examples/Advanced/Patternal/Melodial.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Patternal/Melodial.hpp -------------------------------------------------------------------------------- /examples/Advanced/Patternal/Patternal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Patternal/Patternal.hpp -------------------------------------------------------------------------------- /examples/Advanced/Spatialization/DBAP.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Spatialization/DBAP.hpp -------------------------------------------------------------------------------- /examples/Advanced/Spatialization/MatrixMixer.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/Advanced/Synth/Wavecycle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Synth/Wavecycle.hpp -------------------------------------------------------------------------------- /examples/Advanced/UI/2DView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/UI/2DView.hpp -------------------------------------------------------------------------------- /examples/Advanced/UI/Knob.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/Advanced/UI/LEDView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/UI/LEDView.hpp -------------------------------------------------------------------------------- /examples/Advanced/UI/Multislider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/UI/Multislider.hpp -------------------------------------------------------------------------------- /examples/Advanced/UI/PulseView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/UI/PulseView.hpp -------------------------------------------------------------------------------- /examples/Advanced/UI/Widgets.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/UI/Widgets.hpp -------------------------------------------------------------------------------- /examples/Advanced/Utilities/ADSR.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Utilities/ADSR.hpp -------------------------------------------------------------------------------- /examples/Advanced/Utilities/Accumulator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Utilities/Accumulator.hpp -------------------------------------------------------------------------------- /examples/Advanced/Utilities/ArrayCombiner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Utilities/ArrayCombiner.hpp -------------------------------------------------------------------------------- /examples/Advanced/Utilities/ArrayFlattener.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Utilities/ArrayFlattener.hpp -------------------------------------------------------------------------------- /examples/Advanced/Utilities/ArrayRecombiner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Utilities/ArrayRecombiner.hpp -------------------------------------------------------------------------------- /examples/Advanced/Utilities/ArrayTool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Utilities/ArrayTool.hpp -------------------------------------------------------------------------------- /examples/Advanced/Utilities/Automation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Utilities/Automation.hpp -------------------------------------------------------------------------------- /examples/Advanced/Utilities/Calibrator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Utilities/Calibrator.hpp -------------------------------------------------------------------------------- /examples/Advanced/Utilities/ColorAutomation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Utilities/ColorAutomation.hpp -------------------------------------------------------------------------------- /examples/Advanced/Utilities/Combine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Utilities/Combine.hpp -------------------------------------------------------------------------------- /examples/Advanced/Utilities/ControlToCV.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Utilities/ControlToCV.hpp -------------------------------------------------------------------------------- /examples/Advanced/Utilities/Counter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Utilities/Counter.hpp -------------------------------------------------------------------------------- /examples/Advanced/Utilities/LFO.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Utilities/LFO.hpp -------------------------------------------------------------------------------- /examples/Advanced/Utilities/Logic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Utilities/Logic.hpp -------------------------------------------------------------------------------- /examples/Advanced/Utilities/MapTool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Utilities/MapTool.hpp -------------------------------------------------------------------------------- /examples/Advanced/Utilities/Mapping.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Utilities/Mapping.hpp -------------------------------------------------------------------------------- /examples/Advanced/Utilities/Math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Utilities/Math.hpp -------------------------------------------------------------------------------- /examples/Advanced/Utilities/RangeFilter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Utilities/RangeFilter.hpp -------------------------------------------------------------------------------- /examples/Advanced/Utilities/RangeMapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Utilities/RangeMapper.hpp -------------------------------------------------------------------------------- /examples/Advanced/Utilities/RepetitionFilter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Utilities/RepetitionFilter.hpp -------------------------------------------------------------------------------- /examples/Advanced/Utilities/Smooth.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Utilities/Smooth.hpp -------------------------------------------------------------------------------- /examples/Advanced/Utilities/Spread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Utilities/Spread.hpp -------------------------------------------------------------------------------- /examples/Advanced/Utilities/Trigger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Utilities/Trigger.hpp -------------------------------------------------------------------------------- /examples/Advanced/Utilities/Tweener.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Utilities/Tweener.hpp -------------------------------------------------------------------------------- /examples/Advanced/Utilities/ValueFilter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Utilities/ValueFilter.hpp -------------------------------------------------------------------------------- /examples/Advanced/Utilities/ValueMixer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Advanced/Utilities/ValueMixer.hpp -------------------------------------------------------------------------------- /examples/Complete/CompleteMessageExample.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Complete/CompleteMessageExample.hpp -------------------------------------------------------------------------------- /examples/Complete/CompleteMessageExample.maxhelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Complete/CompleteMessageExample.maxhelp -------------------------------------------------------------------------------- /examples/Complete/CompleteMessageExample.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Complete/CompleteMessageExample.pd -------------------------------------------------------------------------------- /examples/Demos/GeneratePdHelp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Demos/GeneratePdHelp.cpp -------------------------------------------------------------------------------- /examples/Demos/JSONToMaxref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Demos/JSONToMaxref.cpp -------------------------------------------------------------------------------- /examples/Demos/OSC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Demos/OSC.cpp -------------------------------------------------------------------------------- /examples/Demos/maxref_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Demos/maxref_template.xml -------------------------------------------------------------------------------- /examples/GPT3/ResonantBandpass.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/GPT3/ResonantBandpass.hpp -------------------------------------------------------------------------------- /examples/Gpu/ArrayToBuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Gpu/ArrayToBuffer.hpp -------------------------------------------------------------------------------- /examples/Gpu/BufferToArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Gpu/BufferToArray.hpp -------------------------------------------------------------------------------- /examples/Gpu/Compute.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Gpu/Compute.hpp -------------------------------------------------------------------------------- /examples/Gpu/DrawRaw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Gpu/DrawRaw.hpp -------------------------------------------------------------------------------- /examples/Gpu/DrawWithHelpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Gpu/DrawWithHelpers.hpp -------------------------------------------------------------------------------- /examples/Gpu/FilterGeometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Gpu/FilterGeometry.hpp -------------------------------------------------------------------------------- /examples/Gpu/GenerateGeometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Gpu/GenerateGeometry.hpp -------------------------------------------------------------------------------- /examples/Gpu/SolidColor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Gpu/SolidColor.hpp -------------------------------------------------------------------------------- /examples/Helpers/Attributes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Helpers/Attributes.hpp -------------------------------------------------------------------------------- /examples/Helpers/AudioChannelSelector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Helpers/AudioChannelSelector.hpp -------------------------------------------------------------------------------- /examples/Helpers/Controls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Helpers/Controls.hpp -------------------------------------------------------------------------------- /examples/Helpers/CustomChannels.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Helpers/CustomChannels.hpp -------------------------------------------------------------------------------- /examples/Helpers/DynamicPort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Helpers/DynamicPort.hpp -------------------------------------------------------------------------------- /examples/Helpers/FFTDisplay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Helpers/FFTDisplay.hpp -------------------------------------------------------------------------------- /examples/Helpers/FileChange.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Helpers/FileChange.hpp -------------------------------------------------------------------------------- /examples/Helpers/Gpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Helpers/Gpu.hpp -------------------------------------------------------------------------------- /examples/Helpers/GradientScrubber.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Helpers/GradientScrubber.hpp -------------------------------------------------------------------------------- /examples/Helpers/ImageUi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Helpers/ImageUi.hpp -------------------------------------------------------------------------------- /examples/Helpers/Logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Helpers/Logger.hpp -------------------------------------------------------------------------------- /examples/Helpers/Lowpass.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Helpers/Lowpass.hpp -------------------------------------------------------------------------------- /examples/Helpers/Messages.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Helpers/Messages.hpp -------------------------------------------------------------------------------- /examples/Helpers/Midi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Helpers/Midi.hpp -------------------------------------------------------------------------------- /examples/Helpers/Noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Helpers/Noise.hpp -------------------------------------------------------------------------------- /examples/Helpers/Peak.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Helpers/Peak.hpp -------------------------------------------------------------------------------- /examples/Helpers/PeakBand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Helpers/PeakBand.hpp -------------------------------------------------------------------------------- /examples/Helpers/PeakBandFFTPort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Helpers/PeakBandFFTPort.hpp -------------------------------------------------------------------------------- /examples/Helpers/PerBus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Helpers/PerBus.hpp -------------------------------------------------------------------------------- /examples/Helpers/PerSample.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Helpers/PerSample.hpp -------------------------------------------------------------------------------- /examples/Helpers/Poles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Helpers/Poles.hpp -------------------------------------------------------------------------------- /examples/Helpers/Sines.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Helpers/Sines.hpp -------------------------------------------------------------------------------- /examples/Helpers/SmoothGain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Helpers/SmoothGain.hpp -------------------------------------------------------------------------------- /examples/Helpers/SpriteReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Helpers/SpriteReader.hpp -------------------------------------------------------------------------------- /examples/Helpers/Ui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Helpers/Ui.hpp -------------------------------------------------------------------------------- /examples/Helpers/UiBus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Helpers/UiBus.hpp -------------------------------------------------------------------------------- /examples/Helpers/ValueDelay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Helpers/ValueDelay.hpp -------------------------------------------------------------------------------- /examples/Midi/Arpeggiator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Midi/Arpeggiator.hpp -------------------------------------------------------------------------------- /examples/Midi/MidiGlide.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Midi/MidiGlide.hpp -------------------------------------------------------------------------------- /examples/Midi/MidiHiResInput.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Midi/MidiHiResInput.hpp -------------------------------------------------------------------------------- /examples/Midi/MidiHiResOutput.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Midi/MidiHiResOutput.hpp -------------------------------------------------------------------------------- /examples/Midi/MidiPitch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Midi/MidiPitch.hpp -------------------------------------------------------------------------------- /examples/Ports/BarrVerb/BarrVerb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Ports/BarrVerb/BarrVerb.hpp -------------------------------------------------------------------------------- /examples/Ports/BarrVerb/rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Ports/BarrVerb/rom.h -------------------------------------------------------------------------------- /examples/Ports/Essentia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Ports/Essentia/README.md -------------------------------------------------------------------------------- /examples/Ports/Essentia/essentia.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Ports/Essentia/essentia.hpp -------------------------------------------------------------------------------- /examples/Ports/Essentia/stats/Entropy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Ports/Essentia/stats/Entropy.hpp -------------------------------------------------------------------------------- /examples/Ports/LitterPower/CCC.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Ports/LitterPower/CCC.hpp -------------------------------------------------------------------------------- /examples/Ports/LitterPower/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Ports/LitterPower/README.md -------------------------------------------------------------------------------- /examples/Ports/Puara/Jab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Ports/Puara/Jab.hpp -------------------------------------------------------------------------------- /examples/Ports/VB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Ports/VB/README.md -------------------------------------------------------------------------------- /examples/Ports/VB/vb.fourses_tilde.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Ports/VB/vb.fourses_tilde.hpp -------------------------------------------------------------------------------- /examples/Ports/WaveDigitalFilters/PassiveLPF.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Ports/WaveDigitalFilters/PassiveLPF.hpp -------------------------------------------------------------------------------- /examples/Ports/WaveDigitalFilters/VoltageDivider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Ports/WaveDigitalFilters/VoltageDivider.hpp -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/Raw/Addition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Raw/Addition.hpp -------------------------------------------------------------------------------- /examples/Raw/Aggregate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Raw/Aggregate.hpp -------------------------------------------------------------------------------- /examples/Raw/AllPortsTypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Raw/AllPortsTypes.hpp -------------------------------------------------------------------------------- /examples/Raw/Callback.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Raw/Callback.hpp -------------------------------------------------------------------------------- /examples/Raw/Construct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Raw/Construct.hpp -------------------------------------------------------------------------------- /examples/Raw/DoubleArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Raw/DoubleArray.hpp -------------------------------------------------------------------------------- /examples/Raw/DynamicPort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Raw/DynamicPort.hpp -------------------------------------------------------------------------------- /examples/Raw/Init.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Raw/Init.hpp -------------------------------------------------------------------------------- /examples/Raw/Interpolator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Raw/Interpolator.hpp -------------------------------------------------------------------------------- /examples/Raw/Lowpass.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Raw/Lowpass.hpp -------------------------------------------------------------------------------- /examples/Raw/Messages.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Raw/Messages.hpp -------------------------------------------------------------------------------- /examples/Raw/Midi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Raw/Midi.hpp -------------------------------------------------------------------------------- /examples/Raw/MiniPerSample.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/Raw/Minimal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Raw/Minimal.hpp -------------------------------------------------------------------------------- /examples/Raw/Modular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Raw/Modular.hpp -------------------------------------------------------------------------------- /examples/Raw/Optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Raw/Optional.hpp -------------------------------------------------------------------------------- /examples/Raw/PerSampleProcessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Raw/PerSampleProcessor.hpp -------------------------------------------------------------------------------- /examples/Raw/PerSampleProcessor2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Raw/PerSampleProcessor2.hpp -------------------------------------------------------------------------------- /examples/Raw/Presets.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Raw/Presets.hpp -------------------------------------------------------------------------------- /examples/Raw/ProcessLauncher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Raw/ProcessLauncher.hpp -------------------------------------------------------------------------------- /examples/Raw/Processor.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/Raw/Random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Raw/Random.hpp -------------------------------------------------------------------------------- /examples/Raw/Reactive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Raw/Reactive.hpp -------------------------------------------------------------------------------- /examples/Raw/SampleAccurateControls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Raw/SampleAccurateControls.hpp -------------------------------------------------------------------------------- /examples/Raw/Shell.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Raw/Shell.hpp -------------------------------------------------------------------------------- /examples/Raw/Sines.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Raw/Sines.hpp -------------------------------------------------------------------------------- /examples/Raw/SpanControls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Raw/SpanControls.hpp -------------------------------------------------------------------------------- /examples/Raw/TimingSplitter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Raw/TimingSplitter.hpp -------------------------------------------------------------------------------- /examples/Raw/Ui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Raw/Ui.hpp -------------------------------------------------------------------------------- /examples/Raw/Variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Raw/Variant.hpp -------------------------------------------------------------------------------- /examples/Tutorial/AudioEffectExample.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Tutorial/AudioEffectExample.hpp -------------------------------------------------------------------------------- /examples/Tutorial/AudioSidechainExample.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Tutorial/AudioSidechainExample.hpp -------------------------------------------------------------------------------- /examples/Tutorial/ControlGallery.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Tutorial/ControlGallery.hpp -------------------------------------------------------------------------------- /examples/Tutorial/CubeGenerator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Tutorial/CubeGenerator.hpp -------------------------------------------------------------------------------- /examples/Tutorial/Distortion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Tutorial/Distortion.hpp -------------------------------------------------------------------------------- /examples/Tutorial/EmptyExample.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Tutorial/EmptyExample.hpp -------------------------------------------------------------------------------- /examples/Tutorial/SampleAccurateFilterExample.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Tutorial/SampleAccurateFilterExample.hpp -------------------------------------------------------------------------------- /examples/Tutorial/SampleAccurateGeneratorExample.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Tutorial/SampleAccurateGeneratorExample.hpp -------------------------------------------------------------------------------- /examples/Tutorial/Synth.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Tutorial/Synth.hpp -------------------------------------------------------------------------------- /examples/Tutorial/TextureFilterExample.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Tutorial/TextureFilterExample.hpp -------------------------------------------------------------------------------- /examples/Tutorial/TextureGeneratorExample.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Tutorial/TextureGeneratorExample.hpp -------------------------------------------------------------------------------- /examples/Tutorial/TrivialFilterExample.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Tutorial/TrivialFilterExample.hpp -------------------------------------------------------------------------------- /examples/Tutorial/TrivialGeneratorExample.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Tutorial/TrivialGeneratorExample.hpp -------------------------------------------------------------------------------- /examples/Tutorial/ZeroDependencyAudioEffect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/examples/Tutorial/ZeroDependencyAudioEffect.hpp -------------------------------------------------------------------------------- /include/avnd/binding/clap/all.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | -------------------------------------------------------------------------------- /include/avnd/binding/clap/audio_effect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/clap/audio_effect.hpp -------------------------------------------------------------------------------- /include/avnd/binding/clap/bus_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/clap/bus_info.hpp -------------------------------------------------------------------------------- /include/avnd/binding/clap/clap.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/avnd/binding/clap/configure.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/clap/configure.hpp -------------------------------------------------------------------------------- /include/avnd/binding/clap/helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/clap/helpers.hpp -------------------------------------------------------------------------------- /include/avnd/binding/clap/prototype.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/clap/prototype.cpp.in -------------------------------------------------------------------------------- /include/avnd/binding/dump/DumpCBOR.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/dump/DumpCBOR.hpp -------------------------------------------------------------------------------- /include/avnd/binding/dump/DumpText.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/dump/DumpText.hpp -------------------------------------------------------------------------------- /include/avnd/binding/dump/prototype.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/dump/prototype.cpp.in -------------------------------------------------------------------------------- /include/avnd/binding/example/all.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/avnd/binding/example/example_processor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/example/example_processor.hpp -------------------------------------------------------------------------------- /include/avnd/binding/example/prototype.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/example/prototype.cpp.in -------------------------------------------------------------------------------- /include/avnd/binding/gstreamer/audio_filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/gstreamer/audio_filter.hpp -------------------------------------------------------------------------------- /include/avnd/binding/gstreamer/audio_sink.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/gstreamer/audio_sink.hpp -------------------------------------------------------------------------------- /include/avnd/binding/gstreamer/audio_source.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/gstreamer/audio_source.hpp -------------------------------------------------------------------------------- /include/avnd/binding/gstreamer/configuration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/gstreamer/configuration.hpp -------------------------------------------------------------------------------- /include/avnd/binding/gstreamer/element.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/gstreamer/element.hpp -------------------------------------------------------------------------------- /include/avnd/binding/gstreamer/parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/gstreamer/parameters.hpp -------------------------------------------------------------------------------- /include/avnd/binding/gstreamer/prototype.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/gstreamer/prototype.cpp.in -------------------------------------------------------------------------------- /include/avnd/binding/gstreamer/texture_filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/gstreamer/texture_filter.hpp -------------------------------------------------------------------------------- /include/avnd/binding/gstreamer/texture_sink.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/gstreamer/texture_sink.hpp -------------------------------------------------------------------------------- /include/avnd/binding/gstreamer/texture_source.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/gstreamer/texture_source.hpp -------------------------------------------------------------------------------- /include/avnd/binding/gstreamer/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/gstreamer/utils.hpp -------------------------------------------------------------------------------- /include/avnd/binding/liblo/receive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/liblo/receive.hpp -------------------------------------------------------------------------------- /include/avnd/binding/liblo/send.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/liblo/send.hpp -------------------------------------------------------------------------------- /include/avnd/binding/max/all.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/avnd/binding/max/atom_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/max/atom_helpers.hpp -------------------------------------------------------------------------------- /include/avnd/binding/max/atom_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/max/atom_iterator.hpp -------------------------------------------------------------------------------- /include/avnd/binding/max/attributes_setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/max/attributes_setup.hpp -------------------------------------------------------------------------------- /include/avnd/binding/max/audio_processor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/max/audio_processor.hpp -------------------------------------------------------------------------------- /include/avnd/binding/max/configure.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/max/configure.hpp -------------------------------------------------------------------------------- /include/avnd/binding/max/dict.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/max/dict.hpp -------------------------------------------------------------------------------- /include/avnd/binding/max/dsp.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/avnd/binding/max/from_atoms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/max/from_atoms.hpp -------------------------------------------------------------------------------- /include/avnd/binding/max/from_dict.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/max/from_dict.hpp -------------------------------------------------------------------------------- /include/avnd/binding/max/helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/max/helpers.hpp -------------------------------------------------------------------------------- /include/avnd/binding/max/init.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/max/init.hpp -------------------------------------------------------------------------------- /include/avnd/binding/max/inputs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/max/inputs.hpp -------------------------------------------------------------------------------- /include/avnd/binding/max/jitter_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/max/jitter_helpers.hpp -------------------------------------------------------------------------------- /include/avnd/binding/max/jitter_processor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/max/jitter_processor.hpp -------------------------------------------------------------------------------- /include/avnd/binding/max/jitter_texture_conversion.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/avnd/binding/max/jitter_texture_format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/max/jitter_texture_format.hpp -------------------------------------------------------------------------------- /include/avnd/binding/max/message_processor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/max/message_processor.hpp -------------------------------------------------------------------------------- /include/avnd/binding/max/messages.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/max/messages.hpp -------------------------------------------------------------------------------- /include/avnd/binding/max/outputs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/max/outputs.hpp -------------------------------------------------------------------------------- /include/avnd/binding/max/processor_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/max/processor_common.hpp -------------------------------------------------------------------------------- /include/avnd/binding/max/prototype.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/max/prototype.cpp.in -------------------------------------------------------------------------------- /include/avnd/binding/max/resources/PkgInfo: -------------------------------------------------------------------------------- 1 | iLaXmax2 -------------------------------------------------------------------------------- /include/avnd/binding/max/to_atoms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/max/to_atoms.hpp -------------------------------------------------------------------------------- /include/avnd/binding/ossia/all.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ossia/all.hpp -------------------------------------------------------------------------------- /include/avnd/binding/ossia/builtin_ports.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ossia/builtin_ports.hpp -------------------------------------------------------------------------------- /include/avnd/binding/ossia/callbacks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ossia/callbacks.hpp -------------------------------------------------------------------------------- /include/avnd/binding/ossia/configure.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ossia/configure.hpp -------------------------------------------------------------------------------- /include/avnd/binding/ossia/controls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ossia/controls.hpp -------------------------------------------------------------------------------- /include/avnd/binding/ossia/data_node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ossia/data_node.hpp -------------------------------------------------------------------------------- /include/avnd/binding/ossia/dynamic_ports.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ossia/dynamic_ports.hpp -------------------------------------------------------------------------------- /include/avnd/binding/ossia/ffts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ossia/ffts.hpp -------------------------------------------------------------------------------- /include/avnd/binding/ossia/from_value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ossia/from_value.hpp -------------------------------------------------------------------------------- /include/avnd/binding/ossia/geometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ossia/geometry.hpp -------------------------------------------------------------------------------- /include/avnd/binding/ossia/message_process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ossia/message_process.hpp -------------------------------------------------------------------------------- /include/avnd/binding/ossia/mono_audio_node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ossia/mono_audio_node.hpp -------------------------------------------------------------------------------- /include/avnd/binding/ossia/node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ossia/node.hpp -------------------------------------------------------------------------------- /include/avnd/binding/ossia/ossia_audio_node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ossia/ossia_audio_node.hpp -------------------------------------------------------------------------------- /include/avnd/binding/ossia/ossia_to_curve.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ossia/ossia_to_curve.hpp -------------------------------------------------------------------------------- /include/avnd/binding/ossia/poly_audio_node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ossia/poly_audio_node.hpp -------------------------------------------------------------------------------- /include/avnd/binding/ossia/port_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ossia/port_base.hpp -------------------------------------------------------------------------------- /include/avnd/binding/ossia/port_run_postprocess.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ossia/port_run_postprocess.hpp -------------------------------------------------------------------------------- /include/avnd/binding/ossia/port_run_preprocess.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ossia/port_run_preprocess.hpp -------------------------------------------------------------------------------- /include/avnd/binding/ossia/port_setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ossia/port_setup.hpp -------------------------------------------------------------------------------- /include/avnd/binding/ossia/prototype.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ossia/prototype.cpp.in -------------------------------------------------------------------------------- /include/avnd/binding/ossia/qt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ossia/qt.hpp -------------------------------------------------------------------------------- /include/avnd/binding/ossia/soundfiles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ossia/soundfiles.hpp -------------------------------------------------------------------------------- /include/avnd/binding/ossia/time_controls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ossia/time_controls.hpp -------------------------------------------------------------------------------- /include/avnd/binding/ossia/to_value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ossia/to_value.hpp -------------------------------------------------------------------------------- /include/avnd/binding/ossia/uuid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ossia/uuid.hpp -------------------------------------------------------------------------------- /include/avnd/binding/ossia/value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ossia/value.hpp -------------------------------------------------------------------------------- /include/avnd/binding/ossia/window_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ossia/window_functions.hpp -------------------------------------------------------------------------------- /include/avnd/binding/pd/all.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/pd/all.hpp -------------------------------------------------------------------------------- /include/avnd/binding/pd/atom_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/pd/atom_iterator.hpp -------------------------------------------------------------------------------- /include/avnd/binding/pd/audio_processor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/pd/audio_processor.hpp -------------------------------------------------------------------------------- /include/avnd/binding/pd/configure.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/pd/configure.hpp -------------------------------------------------------------------------------- /include/avnd/binding/pd/construct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/pd/construct.hpp -------------------------------------------------------------------------------- /include/avnd/binding/pd/dsp.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/avnd/binding/pd/helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/pd/helpers.hpp -------------------------------------------------------------------------------- /include/avnd/binding/pd/init.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/pd/init.hpp -------------------------------------------------------------------------------- /include/avnd/binding/pd/inputs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/pd/inputs.hpp -------------------------------------------------------------------------------- /include/avnd/binding/pd/message_processor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/pd/message_processor.hpp -------------------------------------------------------------------------------- /include/avnd/binding/pd/messages.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/pd/messages.hpp -------------------------------------------------------------------------------- /include/avnd/binding/pd/outputs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/pd/outputs.hpp -------------------------------------------------------------------------------- /include/avnd/binding/pd/prototype.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/pd/prototype.cpp.in -------------------------------------------------------------------------------- /include/avnd/binding/python/all.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/python/all.hpp -------------------------------------------------------------------------------- /include/avnd/binding/python/configure.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/python/configure.hpp -------------------------------------------------------------------------------- /include/avnd/binding/python/processor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/python/processor.hpp -------------------------------------------------------------------------------- /include/avnd/binding/python/prototype.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/python/prototype.cpp.in -------------------------------------------------------------------------------- /include/avnd/binding/standalone/all.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/standalone/all.hpp -------------------------------------------------------------------------------- /include/avnd/binding/standalone/audio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/standalone/audio.hpp -------------------------------------------------------------------------------- /include/avnd/binding/standalone/configure.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/standalone/configure.hpp -------------------------------------------------------------------------------- /include/avnd/binding/standalone/oscquery_mapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/standalone/oscquery_mapper.hpp -------------------------------------------------------------------------------- /include/avnd/binding/standalone/prototype.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/standalone/prototype.cpp.in -------------------------------------------------------------------------------- /include/avnd/binding/standalone/standalone.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/standalone/standalone.hpp -------------------------------------------------------------------------------- /include/avnd/binding/touchdesigner/CHOP_AUDIO.prototype.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/touchdesigner/CHOP_AUDIO.prototype.cpp.in -------------------------------------------------------------------------------- /include/avnd/binding/touchdesigner/CHOP_MESSAGE.prototype.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/touchdesigner/CHOP_MESSAGE.prototype.cpp.in -------------------------------------------------------------------------------- /include/avnd/binding/touchdesigner/DAT.prototype.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/touchdesigner/DAT.prototype.cpp.in -------------------------------------------------------------------------------- /include/avnd/binding/touchdesigner/SOP.prototype.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/touchdesigner/SOP.prototype.cpp.in -------------------------------------------------------------------------------- /include/avnd/binding/touchdesigner/TOP.prototype.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/touchdesigner/TOP.prototype.cpp.in -------------------------------------------------------------------------------- /include/avnd/binding/touchdesigner/all.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/touchdesigner/all.hpp -------------------------------------------------------------------------------- /include/avnd/binding/touchdesigner/chop/audio_processor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/touchdesigner/chop/audio_processor.hpp -------------------------------------------------------------------------------- /include/avnd/binding/touchdesigner/chop/message_processor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/touchdesigner/chop/message_processor.hpp -------------------------------------------------------------------------------- /include/avnd/binding/touchdesigner/configure.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/touchdesigner/configure.hpp -------------------------------------------------------------------------------- /include/avnd/binding/touchdesigner/dat/data_processor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/touchdesigner/dat/data_processor.hpp -------------------------------------------------------------------------------- /include/avnd/binding/touchdesigner/helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/touchdesigner/helpers.hpp -------------------------------------------------------------------------------- /include/avnd/binding/touchdesigner/parameter_setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/touchdesigner/parameter_setup.hpp -------------------------------------------------------------------------------- /include/avnd/binding/touchdesigner/parameter_update.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/touchdesigner/parameter_update.hpp -------------------------------------------------------------------------------- /include/avnd/binding/touchdesigner/sop/geometry_processor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/touchdesigner/sop/geometry_processor.hpp -------------------------------------------------------------------------------- /include/avnd/binding/touchdesigner/top/texture_processor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/touchdesigner/top/texture_processor.hpp -------------------------------------------------------------------------------- /include/avnd/binding/ui/nuklear/nuklear.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ui/nuklear/nuklear.hpp -------------------------------------------------------------------------------- /include/avnd/binding/ui/nuklear/nuklear_glfw_gl4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ui/nuklear/nuklear_glfw_gl4.h -------------------------------------------------------------------------------- /include/avnd/binding/ui/nuklear_layout_ui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ui/nuklear_layout_ui.hpp -------------------------------------------------------------------------------- /include/avnd/binding/ui/qml/enum_control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ui/qml/enum_control.hpp -------------------------------------------------------------------------------- /include/avnd/binding/ui/qml/enum_ui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ui/qml/enum_ui.hpp -------------------------------------------------------------------------------- /include/avnd/binding/ui/qml/float_control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ui/qml/float_control.hpp -------------------------------------------------------------------------------- /include/avnd/binding/ui/qml/float_knob.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ui/qml/float_knob.hpp -------------------------------------------------------------------------------- /include/avnd/binding/ui/qml/float_slider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ui/qml/float_slider.hpp -------------------------------------------------------------------------------- /include/avnd/binding/ui/qml/int_control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ui/qml/int_control.hpp -------------------------------------------------------------------------------- /include/avnd/binding/ui/qml/int_knob.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ui/qml/int_knob.hpp -------------------------------------------------------------------------------- /include/avnd/binding/ui/qml/int_slider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ui/qml/int_slider.hpp -------------------------------------------------------------------------------- /include/avnd/binding/ui/qml/toggle_control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ui/qml/toggle_control.hpp -------------------------------------------------------------------------------- /include/avnd/binding/ui/qml/toggle_ui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ui/qml/toggle_ui.hpp -------------------------------------------------------------------------------- /include/avnd/binding/ui/qml_layout_ui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ui/qml_layout_ui.hpp -------------------------------------------------------------------------------- /include/avnd/binding/ui/qml_ui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/ui/qml_ui.hpp -------------------------------------------------------------------------------- /include/avnd/binding/vintage/all.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | -------------------------------------------------------------------------------- /include/avnd/binding/vintage/atomic_controls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/vintage/atomic_controls.hpp -------------------------------------------------------------------------------- /include/avnd/binding/vintage/audio_effect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/vintage/audio_effect.hpp -------------------------------------------------------------------------------- /include/avnd/binding/vintage/configure.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/vintage/configure.hpp -------------------------------------------------------------------------------- /include/avnd/binding/vintage/dispatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/vintage/dispatch.hpp -------------------------------------------------------------------------------- /include/avnd/binding/vintage/helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/vintage/helpers.hpp -------------------------------------------------------------------------------- /include/avnd/binding/vintage/midi_processor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/vintage/midi_processor.hpp -------------------------------------------------------------------------------- /include/avnd/binding/vintage/polyphonic_synth.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/vintage/polyphonic_synth.hpp -------------------------------------------------------------------------------- /include/avnd/binding/vintage/processor_setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/vintage/processor_setup.hpp -------------------------------------------------------------------------------- /include/avnd/binding/vintage/programs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/vintage/programs.hpp -------------------------------------------------------------------------------- /include/avnd/binding/vintage/prototype.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/vintage/prototype.cpp.in -------------------------------------------------------------------------------- /include/avnd/binding/vintage/synth_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/vintage/synth_helpers.hpp -------------------------------------------------------------------------------- /include/avnd/binding/vintage/vintage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/vintage/vintage.hpp -------------------------------------------------------------------------------- /include/avnd/binding/vst3/all.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | -------------------------------------------------------------------------------- /include/avnd/binding/vst3/audio_effect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/vst3/audio_effect.hpp -------------------------------------------------------------------------------- /include/avnd/binding/vst3/bus_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/vst3/bus_info.hpp -------------------------------------------------------------------------------- /include/avnd/binding/vst3/component.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/vst3/component.hpp -------------------------------------------------------------------------------- /include/avnd/binding/vst3/component_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/vst3/component_base.hpp -------------------------------------------------------------------------------- /include/avnd/binding/vst3/configure.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/vst3/configure.hpp -------------------------------------------------------------------------------- /include/avnd/binding/vst3/connection_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/vst3/connection_point.hpp -------------------------------------------------------------------------------- /include/avnd/binding/vst3/controller.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/vst3/controller.hpp -------------------------------------------------------------------------------- /include/avnd/binding/vst3/controller_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/vst3/controller_base.hpp -------------------------------------------------------------------------------- /include/avnd/binding/vst3/factory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/vst3/factory.hpp -------------------------------------------------------------------------------- /include/avnd/binding/vst3/helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/vst3/helpers.hpp -------------------------------------------------------------------------------- /include/avnd/binding/vst3/metadata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/vst3/metadata.hpp -------------------------------------------------------------------------------- /include/avnd/binding/vst3/programs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/vst3/programs.hpp -------------------------------------------------------------------------------- /include/avnd/binding/vst3/prototype.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/vst3/prototype.cpp.in -------------------------------------------------------------------------------- /include/avnd/binding/vst3/refcount.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/binding/vst3/refcount.hpp -------------------------------------------------------------------------------- /include/avnd/binding/vst3/types.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/avnd/common/aggregates.base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/common/aggregates.base.hpp -------------------------------------------------------------------------------- /include/avnd/common/aggregates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/common/aggregates.hpp -------------------------------------------------------------------------------- /include/avnd/common/aggregates.includes.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/avnd/common/aggregates.p1061.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/common/aggregates.p1061.hpp -------------------------------------------------------------------------------- /include/avnd/common/aggregates.pfr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/common/aggregates.pfr.hpp -------------------------------------------------------------------------------- /include/avnd/common/aggregates.recursive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/common/aggregates.recursive.hpp -------------------------------------------------------------------------------- /include/avnd/common/aggregates.simple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/common/aggregates.simple.hpp -------------------------------------------------------------------------------- /include/avnd/common/arithmetic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/common/arithmetic.hpp -------------------------------------------------------------------------------- /include/avnd/common/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/common/array.hpp -------------------------------------------------------------------------------- /include/avnd/common/concepts_polyfill.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/common/concepts_polyfill.hpp -------------------------------------------------------------------------------- /include/avnd/common/coroutines.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/common/coroutines.hpp -------------------------------------------------------------------------------- /include/avnd/common/dummy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/common/dummy.hpp -------------------------------------------------------------------------------- /include/avnd/common/enum_reflection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/common/enum_reflection.hpp -------------------------------------------------------------------------------- /include/avnd/common/enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/common/enums.hpp -------------------------------------------------------------------------------- /include/avnd/common/errors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/common/errors.hpp -------------------------------------------------------------------------------- /include/avnd/common/export.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/common/export.hpp -------------------------------------------------------------------------------- /include/avnd/common/for_nth.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/common/for_nth.hpp -------------------------------------------------------------------------------- /include/avnd/common/function_reflection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/common/function_reflection.hpp -------------------------------------------------------------------------------- /include/avnd/common/index.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/common/index.hpp -------------------------------------------------------------------------------- /include/avnd/common/index_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/common/index_sequence.hpp -------------------------------------------------------------------------------- /include/avnd/common/init_cpp_with_c_object_header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/common/init_cpp_with_c_object_header.hpp -------------------------------------------------------------------------------- /include/avnd/common/inline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/common/inline.hpp -------------------------------------------------------------------------------- /include/avnd/common/limited_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/common/limited_string.hpp -------------------------------------------------------------------------------- /include/avnd/common/limited_string_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/common/limited_string_view.hpp -------------------------------------------------------------------------------- /include/avnd/common/member_reflection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/common/member_reflection.hpp -------------------------------------------------------------------------------- /include/avnd/common/no_unique_address.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/common/no_unique_address.hpp -------------------------------------------------------------------------------- /include/avnd/common/optionals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/common/optionals.hpp -------------------------------------------------------------------------------- /include/avnd/common/span_polyfill.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/common/span_polyfill.hpp -------------------------------------------------------------------------------- /include/avnd/common/struct_reflection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/common/struct_reflection.hpp -------------------------------------------------------------------------------- /include/avnd/common/tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/common/tag.hpp -------------------------------------------------------------------------------- /include/avnd/common/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/common/tuple.hpp -------------------------------------------------------------------------------- /include/avnd/common/widechar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/common/widechar.hpp -------------------------------------------------------------------------------- /include/avnd/concepts/all.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/concepts/all.hpp -------------------------------------------------------------------------------- /include/avnd/concepts/attributes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/concepts/attributes.hpp -------------------------------------------------------------------------------- /include/avnd/concepts/audio_port.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/concepts/audio_port.hpp -------------------------------------------------------------------------------- /include/avnd/concepts/audio_processor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/concepts/audio_processor.hpp -------------------------------------------------------------------------------- /include/avnd/concepts/callback.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/concepts/callback.hpp -------------------------------------------------------------------------------- /include/avnd/concepts/channels.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/concepts/channels.hpp -------------------------------------------------------------------------------- /include/avnd/concepts/control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/concepts/control.hpp -------------------------------------------------------------------------------- /include/avnd/concepts/curve.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/concepts/curve.hpp -------------------------------------------------------------------------------- /include/avnd/concepts/dynamic_ports.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/concepts/dynamic_ports.hpp -------------------------------------------------------------------------------- /include/avnd/concepts/fft.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/concepts/fft.hpp -------------------------------------------------------------------------------- /include/avnd/concepts/field_names.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/concepts/field_names.hpp -------------------------------------------------------------------------------- /include/avnd/concepts/file_port.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/concepts/file_port.hpp -------------------------------------------------------------------------------- /include/avnd/concepts/generic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/concepts/generic.hpp -------------------------------------------------------------------------------- /include/avnd/concepts/gfx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/concepts/gfx.hpp -------------------------------------------------------------------------------- /include/avnd/concepts/hardware.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/concepts/hardware.hpp -------------------------------------------------------------------------------- /include/avnd/concepts/init.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/concepts/init.hpp -------------------------------------------------------------------------------- /include/avnd/concepts/layout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/concepts/layout.hpp -------------------------------------------------------------------------------- /include/avnd/concepts/logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/concepts/logger.hpp -------------------------------------------------------------------------------- /include/avnd/concepts/mapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/concepts/mapper.hpp -------------------------------------------------------------------------------- /include/avnd/concepts/message.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/concepts/message.hpp -------------------------------------------------------------------------------- /include/avnd/concepts/message_bus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/concepts/message_bus.hpp -------------------------------------------------------------------------------- /include/avnd/concepts/midi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/concepts/midi.hpp -------------------------------------------------------------------------------- /include/avnd/concepts/midi_port.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/concepts/midi_port.hpp -------------------------------------------------------------------------------- /include/avnd/concepts/midifile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/concepts/midifile.hpp -------------------------------------------------------------------------------- /include/avnd/concepts/modules.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/concepts/modules.hpp -------------------------------------------------------------------------------- /include/avnd/concepts/object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/concepts/object.hpp -------------------------------------------------------------------------------- /include/avnd/concepts/painter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/concepts/painter.hpp -------------------------------------------------------------------------------- /include/avnd/concepts/parameter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/concepts/parameter.hpp -------------------------------------------------------------------------------- /include/avnd/concepts/port.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/concepts/port.hpp -------------------------------------------------------------------------------- /include/avnd/concepts/processor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/concepts/processor.hpp -------------------------------------------------------------------------------- /include/avnd/concepts/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/concepts/range.hpp -------------------------------------------------------------------------------- /include/avnd/concepts/schedule.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/concepts/schedule.hpp -------------------------------------------------------------------------------- /include/avnd/concepts/smooth.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/concepts/smooth.hpp -------------------------------------------------------------------------------- /include/avnd/concepts/soundfile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/concepts/soundfile.hpp -------------------------------------------------------------------------------- /include/avnd/concepts/synth.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/concepts/synth.hpp -------------------------------------------------------------------------------- /include/avnd/concepts/temporality.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/concepts/temporality.hpp -------------------------------------------------------------------------------- /include/avnd/concepts/ui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/concepts/ui.hpp -------------------------------------------------------------------------------- /include/avnd/concepts/widget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/concepts/widget.hpp -------------------------------------------------------------------------------- /include/avnd/concepts/worker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/concepts/worker.hpp -------------------------------------------------------------------------------- /include/avnd/introspection/channels.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/introspection/channels.hpp -------------------------------------------------------------------------------- /include/avnd/introspection/generic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/introspection/generic.hpp -------------------------------------------------------------------------------- /include/avnd/introspection/gfx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/introspection/gfx.hpp -------------------------------------------------------------------------------- /include/avnd/introspection/hardware.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/introspection/hardware.hpp -------------------------------------------------------------------------------- /include/avnd/introspection/input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/introspection/input.hpp -------------------------------------------------------------------------------- /include/avnd/introspection/layout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/introspection/layout.hpp -------------------------------------------------------------------------------- /include/avnd/introspection/mapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/introspection/mapper.hpp -------------------------------------------------------------------------------- /include/avnd/introspection/messages.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/introspection/messages.hpp -------------------------------------------------------------------------------- /include/avnd/introspection/midi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/introspection/midi.hpp -------------------------------------------------------------------------------- /include/avnd/introspection/modules.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/introspection/modules.hpp -------------------------------------------------------------------------------- /include/avnd/introspection/output.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/introspection/output.hpp -------------------------------------------------------------------------------- /include/avnd/introspection/port.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/introspection/port.hpp -------------------------------------------------------------------------------- /include/avnd/introspection/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/introspection/range.hpp -------------------------------------------------------------------------------- /include/avnd/introspection/smooth.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/introspection/smooth.hpp -------------------------------------------------------------------------------- /include/avnd/introspection/type_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/introspection/type_wrapper.hpp -------------------------------------------------------------------------------- /include/avnd/introspection/vecf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/introspection/vecf.hpp -------------------------------------------------------------------------------- /include/avnd/introspection/widgets.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/introspection/widgets.hpp -------------------------------------------------------------------------------- /include/avnd/prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/prefix.hpp -------------------------------------------------------------------------------- /include/avnd/wrappers/audio_channel_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/wrappers/audio_channel_manager.hpp -------------------------------------------------------------------------------- /include/avnd/wrappers/avnd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/wrappers/avnd.hpp -------------------------------------------------------------------------------- /include/avnd/wrappers/bus_host_process_adapter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/wrappers/bus_host_process_adapter.hpp -------------------------------------------------------------------------------- /include/avnd/wrappers/callbacks_adapter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/wrappers/callbacks_adapter.hpp -------------------------------------------------------------------------------- /include/avnd/wrappers/colors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/wrappers/colors.hpp -------------------------------------------------------------------------------- /include/avnd/wrappers/configure.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/wrappers/configure.hpp -------------------------------------------------------------------------------- /include/avnd/wrappers/control_display.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/wrappers/control_display.hpp -------------------------------------------------------------------------------- /include/avnd/wrappers/controls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/wrappers/controls.hpp -------------------------------------------------------------------------------- /include/avnd/wrappers/controls_double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/wrappers/controls_double.hpp -------------------------------------------------------------------------------- /include/avnd/wrappers/controls_fp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/wrappers/controls_fp.hpp -------------------------------------------------------------------------------- /include/avnd/wrappers/controls_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/wrappers/controls_storage.hpp -------------------------------------------------------------------------------- /include/avnd/wrappers/effect_container.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/wrappers/effect_container.hpp -------------------------------------------------------------------------------- /include/avnd/wrappers/generic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/wrappers/generic.hpp -------------------------------------------------------------------------------- /include/avnd/wrappers/metadatas.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/wrappers/metadatas.hpp -------------------------------------------------------------------------------- /include/avnd/wrappers/prepare.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/wrappers/prepare.hpp -------------------------------------------------------------------------------- /include/avnd/wrappers/process/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/wrappers/process/base.hpp -------------------------------------------------------------------------------- /include/avnd/wrappers/process/per_channel_arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/wrappers/process/per_channel_arg.hpp -------------------------------------------------------------------------------- /include/avnd/wrappers/process/per_channel_port.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/wrappers/process/per_channel_port.hpp -------------------------------------------------------------------------------- /include/avnd/wrappers/process/per_sample_arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/wrappers/process/per_sample_arg.hpp -------------------------------------------------------------------------------- /include/avnd/wrappers/process/per_sample_port.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/wrappers/process/per_sample_port.hpp -------------------------------------------------------------------------------- /include/avnd/wrappers/process/poly_arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/wrappers/process/poly_arg.hpp -------------------------------------------------------------------------------- /include/avnd/wrappers/process/poly_port.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/wrappers/process/poly_port.hpp -------------------------------------------------------------------------------- /include/avnd/wrappers/process_adapter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/wrappers/process_adapter.hpp -------------------------------------------------------------------------------- /include/avnd/wrappers/process_bus/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/wrappers/process_bus/base.hpp -------------------------------------------------------------------------------- /include/avnd/wrappers/process_bus/per_channel_arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/wrappers/process_bus/per_channel_arg.hpp -------------------------------------------------------------------------------- /include/avnd/wrappers/process_bus/per_channel_port.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/wrappers/process_bus/per_channel_port.hpp -------------------------------------------------------------------------------- /include/avnd/wrappers/process_bus/per_sample_arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/wrappers/process_bus/per_sample_arg.hpp -------------------------------------------------------------------------------- /include/avnd/wrappers/process_bus/per_sample_port.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/wrappers/process_bus/per_sample_port.hpp -------------------------------------------------------------------------------- /include/avnd/wrappers/process_bus/poly_arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/wrappers/process_bus/poly_arg.hpp -------------------------------------------------------------------------------- /include/avnd/wrappers/process_bus/poly_port.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/wrappers/process_bus/poly_port.hpp -------------------------------------------------------------------------------- /include/avnd/wrappers/process_bus_adapter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/wrappers/process_bus_adapter.hpp -------------------------------------------------------------------------------- /include/avnd/wrappers/process_execution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/wrappers/process_execution.hpp -------------------------------------------------------------------------------- /include/avnd/wrappers/ranges.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/wrappers/ranges.hpp -------------------------------------------------------------------------------- /include/avnd/wrappers/smooth.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/wrappers/smooth.hpp -------------------------------------------------------------------------------- /include/avnd/wrappers/soundfile_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/wrappers/soundfile_storage.hpp -------------------------------------------------------------------------------- /include/avnd/wrappers/widgets.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/avnd/wrappers/widgets.hpp -------------------------------------------------------------------------------- /include/gpp/commands.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/gpp/commands.hpp -------------------------------------------------------------------------------- /include/gpp/generators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/gpp/generators.hpp -------------------------------------------------------------------------------- /include/gpp/layout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/gpp/layout.hpp -------------------------------------------------------------------------------- /include/gpp/meta.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | /* SPDX-License-Identifier: GPL-3.0-or-later */ 4 | 5 | #include 6 | -------------------------------------------------------------------------------- /include/gpp/ports.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/gpp/ports.hpp -------------------------------------------------------------------------------- /include/halp/attributes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/halp/attributes.hpp -------------------------------------------------------------------------------- /include/halp/audio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/halp/audio.hpp -------------------------------------------------------------------------------- /include/halp/callback.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/halp/callback.hpp -------------------------------------------------------------------------------- /include/halp/compat/gamma.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/halp/compat/gamma.hpp -------------------------------------------------------------------------------- /include/halp/controls.basic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/halp/controls.basic.hpp -------------------------------------------------------------------------------- /include/halp/controls.buttons.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/halp/controls.buttons.hpp -------------------------------------------------------------------------------- /include/halp/controls.enums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/halp/controls.enums.hpp -------------------------------------------------------------------------------- /include/halp/controls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/halp/controls.hpp -------------------------------------------------------------------------------- /include/halp/controls.sliders.gcc10.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/halp/controls.sliders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/halp/controls.sliders.hpp -------------------------------------------------------------------------------- /include/halp/controls.typedefs.hpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/halp/controls_fmt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/halp/controls_fmt.hpp -------------------------------------------------------------------------------- /include/halp/curve.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/halp/curve.hpp -------------------------------------------------------------------------------- /include/halp/custom_widgets.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/halp/custom_widgets.hpp -------------------------------------------------------------------------------- /include/halp/device.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/halp/device.hpp -------------------------------------------------------------------------------- /include/halp/dynamic_port.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/halp/dynamic_port.hpp -------------------------------------------------------------------------------- /include/halp/fft.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/halp/fft.hpp -------------------------------------------------------------------------------- /include/halp/file_port.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/halp/file_port.hpp -------------------------------------------------------------------------------- /include/halp/geometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/halp/geometry.hpp -------------------------------------------------------------------------------- /include/halp/gradient_port.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/halp/gradient_port.hpp -------------------------------------------------------------------------------- /include/halp/inline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/halp/inline.hpp -------------------------------------------------------------------------------- /include/halp/layout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/halp/layout.hpp -------------------------------------------------------------------------------- /include/halp/log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/halp/log.hpp -------------------------------------------------------------------------------- /include/halp/mappers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/halp/mappers.hpp -------------------------------------------------------------------------------- /include/halp/messages.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/halp/messages.hpp -------------------------------------------------------------------------------- /include/halp/meta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/halp/meta.hpp -------------------------------------------------------------------------------- /include/halp/midi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/halp/midi.hpp -------------------------------------------------------------------------------- /include/halp/midifile_port.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/halp/midifile_port.hpp -------------------------------------------------------------------------------- /include/halp/modules.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/halp/modules.hpp -------------------------------------------------------------------------------- /include/halp/polyfill.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/halp/polyfill.hpp -------------------------------------------------------------------------------- /include/halp/reactive_value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/halp/reactive_value.hpp -------------------------------------------------------------------------------- /include/halp/sample_accurate_controls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/halp/sample_accurate_controls.hpp -------------------------------------------------------------------------------- /include/halp/schedule.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/halp/schedule.hpp -------------------------------------------------------------------------------- /include/halp/shared_instance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/halp/shared_instance.hpp -------------------------------------------------------------------------------- /include/halp/smooth_controls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/halp/smooth_controls.hpp -------------------------------------------------------------------------------- /include/halp/smoothers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/halp/smoothers.hpp -------------------------------------------------------------------------------- /include/halp/soundfile_port.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/halp/soundfile_port.hpp -------------------------------------------------------------------------------- /include/halp/static_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/halp/static_string.hpp -------------------------------------------------------------------------------- /include/halp/texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/halp/texture.hpp -------------------------------------------------------------------------------- /include/halp/texture_formats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/halp/texture_formats.hpp -------------------------------------------------------------------------------- /include/halp/value_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/include/halp/value_types.hpp -------------------------------------------------------------------------------- /resources/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/resources/background.svg -------------------------------------------------------------------------------- /src/disable_exceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/src/disable_exceptions.cpp -------------------------------------------------------------------------------- /src/dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/src/dummy.cpp -------------------------------------------------------------------------------- /tests/objects/gain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/tests/objects/gain.cpp -------------------------------------------------------------------------------- /tests/objects/patternal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/tests/objects/patternal.cpp -------------------------------------------------------------------------------- /tests/test_audioprocessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/tests/test_audioprocessor.cpp -------------------------------------------------------------------------------- /tests/test_curve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/tests/test_curve.cpp -------------------------------------------------------------------------------- /tests/test_index_in_struct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/tests/test_index_in_struct.cpp -------------------------------------------------------------------------------- /tests/test_introspection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/tests/test_introspection.cpp -------------------------------------------------------------------------------- /tests/test_introspection_many.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/tests/test_introspection_many.cpp -------------------------------------------------------------------------------- /tests/test_introspection_rec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/tests/test_introspection_rec.cpp -------------------------------------------------------------------------------- /tests/test_ossia_values.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/tests/test_ossia_values.cpp -------------------------------------------------------------------------------- /tests/test_predicate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/tests/test_predicate.cpp -------------------------------------------------------------------------------- /tests/tests_channels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/tests/tests_channels.cpp -------------------------------------------------------------------------------- /tests/tests_function_reflection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/tests/tests_function_reflection.cpp -------------------------------------------------------------------------------- /tests/tests_vintage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celtera/avendish/HEAD/tests/tests_vintage.cpp --------------------------------------------------------------------------------