├── .github └── FUNDING.yml ├── .gitignore ├── Builds └── LinuxMakefile │ ├── Makefile │ ├── make_helpers │ └── arch_detection.cpp │ └── valgrind.log ├── JuceLibraryCode ├── AppConfig.h ├── BinaryData.cpp ├── BinaryData.h ├── JuceHeader.h ├── JucePluginDefines.h ├── ReadMe.txt ├── include_juce_audio_basics.cpp ├── include_juce_audio_basics.mm ├── include_juce_audio_devices.cpp ├── include_juce_audio_devices.mm ├── include_juce_audio_formats.cpp ├── include_juce_audio_formats.mm ├── include_juce_audio_plugin_client_AAX.cpp ├── include_juce_audio_plugin_client_AAX.mm ├── include_juce_audio_plugin_client_AAX_utils.cpp ├── include_juce_audio_plugin_client_ARA.cpp ├── include_juce_audio_plugin_client_AU_1.mm ├── include_juce_audio_plugin_client_AU_2.mm ├── include_juce_audio_plugin_client_AUv3.mm ├── include_juce_audio_plugin_client_LV2.cpp ├── include_juce_audio_plugin_client_LV2.mm ├── include_juce_audio_plugin_client_Standalone.cpp ├── include_juce_audio_plugin_client_Unity.cpp ├── include_juce_audio_plugin_client_VST2.cpp ├── include_juce_audio_plugin_client_VST2.mm ├── include_juce_audio_plugin_client_VST3.cpp ├── include_juce_audio_plugin_client_VST3.mm ├── include_juce_audio_processors.cpp ├── include_juce_audio_processors.mm ├── include_juce_audio_processors_ara.cpp ├── include_juce_audio_processors_lv2_libs.cpp ├── include_juce_audio_utils.cpp ├── include_juce_audio_utils.mm ├── include_juce_core.cpp ├── include_juce_core.mm ├── include_juce_core_CompilationTime.cpp ├── include_juce_data_structures.cpp ├── include_juce_data_structures.mm ├── include_juce_events.cpp ├── include_juce_events.mm ├── include_juce_graphics.cpp ├── include_juce_graphics.mm ├── include_juce_graphics_Harfbuzz.cpp ├── include_juce_graphics_Sheenbidi.c ├── include_juce_gui_basics.cpp ├── include_juce_gui_basics.mm ├── include_juce_gui_extra.cpp ├── include_juce_gui_extra.mm └── modules │ ├── juce_audio_basics │ ├── audio_play_head │ │ ├── juce_AudioPlayHead.cpp │ │ └── juce_AudioPlayHead.h │ ├── buffers │ │ ├── juce_AudioChannelSet.cpp │ │ ├── juce_AudioChannelSet.h │ │ ├── juce_AudioDataConverters.cpp │ │ ├── juce_AudioDataConverters.h │ │ ├── juce_AudioProcessLoadMeasurer.cpp │ │ ├── juce_AudioProcessLoadMeasurer.h │ │ ├── juce_AudioSampleBuffer.h │ │ ├── juce_FloatVectorOperations.cpp │ │ └── juce_FloatVectorOperations.h │ ├── juce_audio_basics.cpp │ ├── juce_audio_basics.h │ ├── juce_audio_basics.mm │ ├── midi │ │ ├── juce_MidiBuffer.cpp │ │ ├── juce_MidiBuffer.h │ │ ├── juce_MidiDataConcatenator.h │ │ ├── juce_MidiFile.cpp │ │ ├── juce_MidiFile.h │ │ ├── juce_MidiKeyboardState.cpp │ │ ├── juce_MidiKeyboardState.h │ │ ├── juce_MidiMessage.cpp │ │ ├── juce_MidiMessage.h │ │ ├── juce_MidiMessageSequence.cpp │ │ ├── juce_MidiMessageSequence.h │ │ ├── juce_MidiRPN.cpp │ │ ├── juce_MidiRPN.h │ │ └── ump │ │ │ ├── juce_UMP.h │ │ │ ├── juce_UMPBytesOnGroup.h │ │ │ ├── juce_UMPConversion.h │ │ │ ├── juce_UMPConverters.h │ │ │ ├── juce_UMPDeviceInfo.h │ │ │ ├── juce_UMPDispatcher.h │ │ │ ├── juce_UMPFactory.h │ │ │ ├── juce_UMPIterator.cpp │ │ │ ├── juce_UMPIterator.h │ │ │ ├── juce_UMPMidi1ToBytestreamTranslator.h │ │ │ ├── juce_UMPMidi1ToMidi2DefaultTranslator.cpp │ │ │ ├── juce_UMPMidi1ToMidi2DefaultTranslator.h │ │ │ ├── juce_UMPProtocols.h │ │ │ ├── juce_UMPReceiver.h │ │ │ ├── juce_UMPSysEx7.cpp │ │ │ ├── juce_UMPSysEx7.h │ │ │ ├── juce_UMPUtils.cpp │ │ │ ├── juce_UMPUtils.h │ │ │ ├── juce_UMPView.cpp │ │ │ ├── juce_UMPView.h │ │ │ ├── juce_UMP_test.cpp │ │ │ ├── juce_UMPacket.h │ │ │ └── juce_UMPackets.h │ ├── mpe │ │ ├── juce_MPEInstrument.cpp │ │ ├── juce_MPEInstrument.h │ │ ├── juce_MPEMessages.cpp │ │ ├── juce_MPEMessages.h │ │ ├── juce_MPENote.cpp │ │ ├── juce_MPENote.h │ │ ├── juce_MPESynthesiser.cpp │ │ ├── juce_MPESynthesiser.h │ │ ├── juce_MPESynthesiserBase.cpp │ │ ├── juce_MPESynthesiserBase.h │ │ ├── juce_MPESynthesiserVoice.cpp │ │ ├── juce_MPESynthesiserVoice.h │ │ ├── juce_MPEUtils.cpp │ │ ├── juce_MPEUtils.h │ │ ├── juce_MPEValue.cpp │ │ ├── juce_MPEValue.h │ │ ├── juce_MPEZoneLayout.cpp │ │ └── juce_MPEZoneLayout.h │ ├── native │ │ ├── juce_AudioWorkgroup_mac.h │ │ ├── juce_CoreAudioLayouts_mac.h │ │ └── juce_CoreAudioTimeConversions_mac.h │ ├── sources │ │ ├── juce_AudioSource.h │ │ ├── juce_BufferingAudioSource.cpp │ │ ├── juce_BufferingAudioSource.h │ │ ├── juce_ChannelRemappingAudioSource.cpp │ │ ├── juce_ChannelRemappingAudioSource.h │ │ ├── juce_IIRFilterAudioSource.cpp │ │ ├── juce_IIRFilterAudioSource.h │ │ ├── juce_MemoryAudioSource.cpp │ │ ├── juce_MemoryAudioSource.h │ │ ├── juce_MixerAudioSource.cpp │ │ ├── juce_MixerAudioSource.h │ │ ├── juce_PositionableAudioSource.cpp │ │ ├── juce_PositionableAudioSource.h │ │ ├── juce_ResamplingAudioSource.cpp │ │ ├── juce_ResamplingAudioSource.h │ │ ├── juce_ReverbAudioSource.cpp │ │ ├── juce_ReverbAudioSource.h │ │ ├── juce_ToneGeneratorAudioSource.cpp │ │ └── juce_ToneGeneratorAudioSource.h │ ├── synthesisers │ │ ├── juce_Synthesiser.cpp │ │ └── juce_Synthesiser.h │ └── utilities │ │ ├── juce_ADSR.h │ │ ├── juce_ADSR_test.cpp │ │ ├── juce_AudioWorkgroup.cpp │ │ ├── juce_AudioWorkgroup.h │ │ ├── juce_Decibels.h │ │ ├── juce_GenericInterpolator.h │ │ ├── juce_IIRFilter.cpp │ │ ├── juce_IIRFilter.h │ │ ├── juce_Interpolators.cpp │ │ ├── juce_Interpolators.h │ │ ├── juce_LagrangeInterpolator.cpp │ │ ├── juce_Reverb.h │ │ ├── juce_SmoothedValue.cpp │ │ ├── juce_SmoothedValue.h │ │ └── juce_WindowedSincInterpolator.cpp │ ├── juce_audio_devices │ ├── audio_io │ │ ├── juce_AudioDeviceManager.cpp │ │ ├── juce_AudioDeviceManager.h │ │ ├── juce_AudioIODevice.cpp │ │ ├── juce_AudioIODevice.h │ │ ├── juce_AudioIODeviceType.cpp │ │ ├── juce_AudioIODeviceType.h │ │ ├── juce_SampleRateHelpers.cpp │ │ └── juce_SystemAudioVolume.h │ ├── juce_audio_devices.cpp │ ├── juce_audio_devices.h │ ├── juce_audio_devices.mm │ ├── midi_io │ │ ├── juce_MidiDeviceListConnectionBroadcaster.cpp │ │ ├── juce_MidiDevices.cpp │ │ ├── juce_MidiDevices.h │ │ ├── juce_MidiMessageCollector.cpp │ │ ├── juce_MidiMessageCollector.h │ │ └── ump │ │ │ ├── juce_UMPBytestreamInputHandler.h │ │ │ └── juce_UMPU32InputHandler.h │ ├── native │ │ ├── java │ │ │ └── app │ │ │ │ └── com │ │ │ │ └── rmsl │ │ │ │ └── juce │ │ │ │ └── JuceMidiSupport.java │ │ ├── juce_ALSA_linux.cpp │ │ ├── juce_ASIO_windows.cpp │ │ ├── juce_Audio_android.cpp │ │ ├── juce_Audio_ios.cpp │ │ ├── juce_Audio_ios.h │ │ ├── juce_Bela_linux.cpp │ │ ├── juce_CoreAudio_mac.cpp │ │ ├── juce_CoreMidi_mac.mm │ │ ├── juce_DirectSound_windows.cpp │ │ ├── juce_HighPerformanceAudioHelpers_android.h │ │ ├── juce_JackAudio.cpp │ │ ├── juce_Midi_android.cpp │ │ ├── juce_Midi_linux.cpp │ │ ├── juce_Midi_windows.cpp │ │ ├── juce_Oboe_android.cpp │ │ ├── juce_OpenSL_android.cpp │ │ ├── juce_WASAPI_windows.cpp │ │ └── oboe │ │ │ ├── .clang-tidy │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── include │ │ │ └── oboe │ │ │ │ ├── AudioStream.h │ │ │ │ ├── AudioStreamBase.h │ │ │ │ ├── AudioStreamBuilder.h │ │ │ │ ├── AudioStreamCallback.h │ │ │ │ ├── Definitions.h │ │ │ │ ├── FifoBuffer.h │ │ │ │ ├── FifoControllerBase.h │ │ │ │ ├── FullDuplexStream.h │ │ │ │ ├── LatencyTuner.h │ │ │ │ ├── Oboe.h │ │ │ │ ├── OboeExtensions.h │ │ │ │ ├── ResultWithValue.h │ │ │ │ ├── StabilizedCallback.h │ │ │ │ ├── Utilities.h │ │ │ │ └── Version.h │ │ │ └── src │ │ │ ├── aaudio │ │ │ ├── AAudioExtensions.h │ │ │ ├── AAudioLoader.cpp │ │ │ ├── AAudioLoader.h │ │ │ ├── AudioStreamAAudio.cpp │ │ │ └── AudioStreamAAudio.h │ │ │ ├── common │ │ │ ├── AdpfWrapper.cpp │ │ │ ├── AdpfWrapper.h │ │ │ ├── AudioClock.h │ │ │ ├── AudioSourceCaller.cpp │ │ │ ├── AudioSourceCaller.h │ │ │ ├── AudioStream.cpp │ │ │ ├── AudioStreamBuilder.cpp │ │ │ ├── DataConversionFlowGraph.cpp │ │ │ ├── DataConversionFlowGraph.h │ │ │ ├── FilterAudioStream.cpp │ │ │ ├── FilterAudioStream.h │ │ │ ├── FixedBlockAdapter.cpp │ │ │ ├── FixedBlockAdapter.h │ │ │ ├── FixedBlockReader.cpp │ │ │ ├── FixedBlockReader.h │ │ │ ├── FixedBlockWriter.cpp │ │ │ ├── FixedBlockWriter.h │ │ │ ├── LatencyTuner.cpp │ │ │ ├── MonotonicCounter.h │ │ │ ├── OboeDebug.h │ │ │ ├── OboeExtensions.cpp │ │ │ ├── QuirksManager.cpp │ │ │ ├── QuirksManager.h │ │ │ ├── README.md │ │ │ ├── SourceFloatCaller.cpp │ │ │ ├── SourceFloatCaller.h │ │ │ ├── SourceI16Caller.cpp │ │ │ ├── SourceI16Caller.h │ │ │ ├── SourceI24Caller.cpp │ │ │ ├── SourceI24Caller.h │ │ │ ├── SourceI32Caller.cpp │ │ │ ├── SourceI32Caller.h │ │ │ ├── StabilizedCallback.cpp │ │ │ ├── Trace.cpp │ │ │ ├── Trace.h │ │ │ ├── Utilities.cpp │ │ │ └── Version.cpp │ │ │ ├── fifo │ │ │ ├── FifoBuffer.cpp │ │ │ ├── FifoController.cpp │ │ │ ├── FifoController.h │ │ │ ├── FifoControllerBase.cpp │ │ │ ├── FifoControllerIndirect.cpp │ │ │ └── FifoControllerIndirect.h │ │ │ ├── flowgraph │ │ │ ├── ChannelCountConverter.cpp │ │ │ ├── ChannelCountConverter.h │ │ │ ├── ClipToRange.cpp │ │ │ ├── ClipToRange.h │ │ │ ├── FlowGraphNode.cpp │ │ │ ├── FlowGraphNode.h │ │ │ ├── FlowgraphUtilities.h │ │ │ ├── Limiter.cpp │ │ │ ├── Limiter.h │ │ │ ├── ManyToMultiConverter.cpp │ │ │ ├── ManyToMultiConverter.h │ │ │ ├── MonoBlend.cpp │ │ │ ├── MonoBlend.h │ │ │ ├── MonoToMultiConverter.cpp │ │ │ ├── MonoToMultiConverter.h │ │ │ ├── MultiToManyConverter.cpp │ │ │ ├── MultiToManyConverter.h │ │ │ ├── MultiToMonoConverter.cpp │ │ │ ├── MultiToMonoConverter.h │ │ │ ├── RampLinear.cpp │ │ │ ├── RampLinear.h │ │ │ ├── SampleRateConverter.cpp │ │ │ ├── SampleRateConverter.h │ │ │ ├── SinkFloat.cpp │ │ │ ├── SinkFloat.h │ │ │ ├── SinkI16.cpp │ │ │ ├── SinkI16.h │ │ │ ├── SinkI24.cpp │ │ │ ├── SinkI24.h │ │ │ ├── SinkI32.cpp │ │ │ ├── SinkI32.h │ │ │ ├── SinkI8_24.cpp │ │ │ ├── SinkI8_24.h │ │ │ ├── SourceFloat.cpp │ │ │ ├── SourceFloat.h │ │ │ ├── SourceI16.cpp │ │ │ ├── SourceI16.h │ │ │ ├── SourceI24.cpp │ │ │ ├── SourceI24.h │ │ │ ├── SourceI32.cpp │ │ │ ├── SourceI32.h │ │ │ ├── SourceI8_24.cpp │ │ │ ├── SourceI8_24.h │ │ │ └── resampler │ │ │ │ ├── HyperbolicCosineWindow.h │ │ │ │ ├── IntegerRatio.cpp │ │ │ │ ├── IntegerRatio.h │ │ │ │ ├── KaiserWindow.h │ │ │ │ ├── LinearResampler.cpp │ │ │ │ ├── LinearResampler.h │ │ │ │ ├── MultiChannelResampler.cpp │ │ │ │ ├── MultiChannelResampler.h │ │ │ │ ├── PolyphaseResampler.cpp │ │ │ │ ├── PolyphaseResampler.h │ │ │ │ ├── PolyphaseResamplerMono.cpp │ │ │ │ ├── PolyphaseResamplerMono.h │ │ │ │ ├── PolyphaseResamplerStereo.cpp │ │ │ │ ├── PolyphaseResamplerStereo.h │ │ │ │ ├── README.md │ │ │ │ ├── ResamplerDefinitions.h │ │ │ │ ├── SincResampler.cpp │ │ │ │ ├── SincResampler.h │ │ │ │ ├── SincResamplerStereo.cpp │ │ │ │ └── SincResamplerStereo.h │ │ │ └── opensles │ │ │ ├── AudioInputStreamOpenSLES.cpp │ │ │ ├── AudioInputStreamOpenSLES.h │ │ │ ├── AudioOutputStreamOpenSLES.cpp │ │ │ ├── AudioOutputStreamOpenSLES.h │ │ │ ├── AudioStreamBuffered.cpp │ │ │ ├── AudioStreamBuffered.h │ │ │ ├── AudioStreamOpenSLES.cpp │ │ │ ├── AudioStreamOpenSLES.h │ │ │ ├── EngineOpenSLES.cpp │ │ │ ├── EngineOpenSLES.h │ │ │ ├── OpenSLESUtilities.cpp │ │ │ ├── OpenSLESUtilities.h │ │ │ ├── OutputMixerOpenSLES.cpp │ │ │ └── OutputMixerOpenSLES.h │ └── sources │ │ ├── juce_AudioSourcePlayer.cpp │ │ ├── juce_AudioSourcePlayer.h │ │ ├── juce_AudioTransportSource.cpp │ │ └── juce_AudioTransportSource.h │ ├── juce_audio_formats │ ├── codecs │ │ ├── flac │ │ │ ├── Flac Licence.txt │ │ │ ├── JUCE_CHANGES.txt │ │ │ ├── all.h │ │ │ ├── alloc.h │ │ │ ├── assert.h │ │ │ ├── callback.h │ │ │ ├── compat.h │ │ │ ├── endswap.h │ │ │ ├── export.h │ │ │ ├── format.h │ │ │ ├── libFLAC │ │ │ │ ├── bitmath.c │ │ │ │ ├── bitreader.c │ │ │ │ ├── bitwriter.c │ │ │ │ ├── cpu.c │ │ │ │ ├── crc.c │ │ │ │ ├── deduplication │ │ │ │ │ ├── bitreader_read_rice_signed_block.c │ │ │ │ │ ├── lpc_compute_autocorrelation_intrin.c │ │ │ │ │ └── lpc_compute_autocorrelation_intrin_neon.c │ │ │ │ ├── fixed.c │ │ │ │ ├── float.c │ │ │ │ ├── format.c │ │ │ │ ├── include │ │ │ │ │ ├── private │ │ │ │ │ │ ├── bitmath.h │ │ │ │ │ │ ├── bitreader.h │ │ │ │ │ │ ├── bitwriter.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── crc.h │ │ │ │ │ │ ├── fixed.h │ │ │ │ │ │ ├── float.h │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ ├── lpc.h │ │ │ │ │ │ ├── md5.h │ │ │ │ │ │ ├── memory.h │ │ │ │ │ │ ├── stream_encoder.h │ │ │ │ │ │ ├── stream_encoder_framing.h │ │ │ │ │ │ └── window.h │ │ │ │ │ └── protected │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ └── stream_encoder.h │ │ │ │ ├── lpc_flac.c │ │ │ │ ├── lpc_intrin_neon.c │ │ │ │ ├── md5.c │ │ │ │ ├── memory.c │ │ │ │ ├── stream_decoder.c │ │ │ │ ├── stream_encoder.c │ │ │ │ ├── stream_encoder_framing.c │ │ │ │ └── window_flac.c │ │ │ ├── metadata.h │ │ │ ├── ordinals.h │ │ │ ├── private.h │ │ │ ├── stream_decoder.h │ │ │ └── stream_encoder.h │ │ ├── juce_AiffAudioFormat.cpp │ │ ├── juce_AiffAudioFormat.h │ │ ├── juce_CoreAudioFormat.cpp │ │ ├── juce_CoreAudioFormat.h │ │ ├── juce_FlacAudioFormat.cpp │ │ ├── juce_FlacAudioFormat.h │ │ ├── juce_LAMEEncoderAudioFormat.cpp │ │ ├── juce_LAMEEncoderAudioFormat.h │ │ ├── juce_MP3AudioFormat.cpp │ │ ├── juce_MP3AudioFormat.h │ │ ├── juce_OggVorbisAudioFormat.cpp │ │ ├── juce_OggVorbisAudioFormat.h │ │ ├── juce_WavAudioFormat.cpp │ │ ├── juce_WavAudioFormat.h │ │ ├── juce_WindowsMediaAudioFormat.cpp │ │ ├── juce_WindowsMediaAudioFormat.h │ │ └── oggvorbis │ │ │ ├── Ogg Vorbis Licence.txt │ │ │ ├── bitwise.c │ │ │ ├── codec.h │ │ │ ├── config_types.h │ │ │ ├── crctable.h │ │ │ ├── framing.c │ │ │ ├── libvorbis-1.3.7 │ │ │ ├── AUTHORS │ │ │ ├── CHANGES │ │ │ ├── COPYING │ │ │ ├── README.md │ │ │ └── lib │ │ │ │ ├── analysis.c │ │ │ │ ├── backends.h │ │ │ │ ├── bitrate.c │ │ │ │ ├── bitrate.h │ │ │ │ ├── block.c │ │ │ │ ├── books │ │ │ │ ├── coupled │ │ │ │ │ ├── res_books_51.h │ │ │ │ │ └── res_books_stereo.h │ │ │ │ ├── floor │ │ │ │ │ └── floor_books.h │ │ │ │ └── uncoupled │ │ │ │ │ └── res_books_uncoupled.h │ │ │ │ ├── codebook.c │ │ │ │ ├── codebook.h │ │ │ │ ├── codec_internal.h │ │ │ │ ├── envelope.c │ │ │ │ ├── envelope.h │ │ │ │ ├── floor0.c │ │ │ │ ├── floor1.c │ │ │ │ ├── highlevel.h │ │ │ │ ├── info.c │ │ │ │ ├── lookup.c │ │ │ │ ├── lookup.h │ │ │ │ ├── lookup_data.h │ │ │ │ ├── lpc.c │ │ │ │ ├── lpc.h │ │ │ │ ├── lsp.c │ │ │ │ ├── lsp.h │ │ │ │ ├── mapping0.c │ │ │ │ ├── masking.h │ │ │ │ ├── mdct.c │ │ │ │ ├── mdct.h │ │ │ │ ├── misc.c │ │ │ │ ├── misc.h │ │ │ │ ├── modes │ │ │ │ ├── floor_all.h │ │ │ │ ├── psych_11.h │ │ │ │ ├── psych_16.h │ │ │ │ ├── psych_44.h │ │ │ │ ├── psych_8.h │ │ │ │ ├── residue_16.h │ │ │ │ ├── residue_44.h │ │ │ │ ├── residue_44p51.h │ │ │ │ ├── residue_44u.h │ │ │ │ ├── residue_8.h │ │ │ │ ├── setup_11.h │ │ │ │ ├── setup_16.h │ │ │ │ ├── setup_22.h │ │ │ │ ├── setup_32.h │ │ │ │ ├── setup_44.h │ │ │ │ ├── setup_44p51.h │ │ │ │ ├── setup_44u.h │ │ │ │ ├── setup_8.h │ │ │ │ └── setup_X.h │ │ │ │ ├── os.h │ │ │ │ ├── psy.c │ │ │ │ ├── psy.h │ │ │ │ ├── registry.c │ │ │ │ ├── registry.h │ │ │ │ ├── res0.c │ │ │ │ ├── scales.h │ │ │ │ ├── sharedbook.c │ │ │ │ ├── smallft.c │ │ │ │ ├── smallft.h │ │ │ │ ├── synthesis.c │ │ │ │ ├── vorbisenc.c │ │ │ │ ├── vorbisfile.c │ │ │ │ ├── window.c │ │ │ │ └── window.h │ │ │ ├── ogg.h │ │ │ ├── os_types.h │ │ │ ├── vorbisenc.h │ │ │ └── vorbisfile.h │ ├── format │ │ ├── juce_ARAAudioReaders.cpp │ │ ├── juce_ARAAudioReaders.h │ │ ├── juce_AudioFormat.cpp │ │ ├── juce_AudioFormat.h │ │ ├── juce_AudioFormatManager.cpp │ │ ├── juce_AudioFormatManager.h │ │ ├── juce_AudioFormatReader.cpp │ │ ├── juce_AudioFormatReader.h │ │ ├── juce_AudioFormatReaderSource.cpp │ │ ├── juce_AudioFormatReaderSource.h │ │ ├── juce_AudioFormatWriter.cpp │ │ ├── juce_AudioFormatWriter.h │ │ ├── juce_AudioSubsectionReader.cpp │ │ ├── juce_AudioSubsectionReader.h │ │ ├── juce_BufferingAudioFormatReader.cpp │ │ ├── juce_BufferingAudioFormatReader.h │ │ └── juce_MemoryMappedAudioFormatReader.h │ ├── juce_audio_formats.cpp │ ├── juce_audio_formats.h │ ├── juce_audio_formats.mm │ └── sampler │ │ ├── juce_Sampler.cpp │ │ └── juce_Sampler.h │ ├── juce_audio_plugin_client │ ├── AAX │ │ ├── SDK │ │ │ ├── Interfaces │ │ │ │ ├── AAX.h │ │ │ │ ├── AAX_Assert.h │ │ │ │ ├── AAX_Atomic.h │ │ │ │ ├── AAX_CArrayDataBuffer.h │ │ │ │ ├── AAX_CAtomicQueue.h │ │ │ │ ├── AAX_CAutoreleasePool.h │ │ │ │ ├── AAX_CBinaryDisplayDelegate.h │ │ │ │ ├── AAX_CBinaryTaperDelegate.h │ │ │ │ ├── AAX_CChunkDataParser.h │ │ │ │ ├── AAX_CDecibelDisplayDelegateDecorator.h │ │ │ │ ├── AAX_CEffectDirectData.h │ │ │ │ ├── AAX_CEffectGUI.h │ │ │ │ ├── AAX_CEffectParameters.h │ │ │ │ ├── AAX_CHostProcessor.h │ │ │ │ ├── AAX_CHostServices.h │ │ │ │ ├── AAX_CLinearTaperDelegate.h │ │ │ │ ├── AAX_CLogTaperDelegate.h │ │ │ │ ├── AAX_CMutex.h │ │ │ │ ├── AAX_CNumberDisplayDelegate.h │ │ │ │ ├── AAX_CPacketDispatcher.h │ │ │ │ ├── AAX_CParameter.h │ │ │ │ ├── AAX_CParameterManager.h │ │ │ │ ├── AAX_CPercentDisplayDelegateDecorator.h │ │ │ │ ├── AAX_CPieceWiseLinearTaperDelegate.h │ │ │ │ ├── AAX_CRangeTaperDelegate.h │ │ │ │ ├── AAX_CSessionDocumentClient.h │ │ │ │ ├── AAX_CStateDisplayDelegate.h │ │ │ │ ├── AAX_CStateTaperDelegate.h │ │ │ │ ├── AAX_CString.h │ │ │ │ ├── AAX_CStringDataBuffer.h │ │ │ │ ├── AAX_CStringDisplayDelegate.h │ │ │ │ ├── AAX_CTaskAgent.h │ │ │ │ ├── AAX_CUnitDisplayDelegateDecorator.h │ │ │ │ ├── AAX_CUnitPrefixDisplayDelegateDecorator.h │ │ │ │ ├── AAX_Callbacks.h │ │ │ │ ├── AAX_CommonConversions.h │ │ │ │ ├── AAX_EndianSwap.h │ │ │ │ ├── AAX_Enums.h │ │ │ │ ├── AAX_EnvironmentUtilities.h │ │ │ │ ├── AAX_Errors.h │ │ │ │ ├── AAX_Exception.h │ │ │ │ ├── AAX_Exports.cpp │ │ │ │ ├── AAX_GUITypes.h │ │ │ │ ├── AAX_IACFAutomationDelegate.h │ │ │ │ ├── AAX_IACFCollection.h │ │ │ │ ├── AAX_IACFComponentDescriptor.h │ │ │ │ ├── AAX_IACFController.h │ │ │ │ ├── AAX_IACFDataBuffer.h │ │ │ │ ├── AAX_IACFDescriptionHost.h │ │ │ │ ├── AAX_IACFEffectDescriptor.h │ │ │ │ ├── AAX_IACFEffectDirectData.h │ │ │ │ ├── AAX_IACFEffectGUI.h │ │ │ │ ├── AAX_IACFEffectParameters.h │ │ │ │ ├── AAX_IACFFeatureInfo.h │ │ │ │ ├── AAX_IACFHostProcessor.h │ │ │ │ ├── AAX_IACFHostProcessorDelegate.h │ │ │ │ ├── AAX_IACFHostServices.h │ │ │ │ ├── AAX_IACFPageTable.h │ │ │ │ ├── AAX_IACFPageTableController.h │ │ │ │ ├── AAX_IACFPrivateDataAccess.h │ │ │ │ ├── AAX_IACFPropertyMap.h │ │ │ │ ├── AAX_IACFSessionDocument.h │ │ │ │ ├── AAX_IACFSessionDocumentClient.h │ │ │ │ ├── AAX_IACFTask.h │ │ │ │ ├── AAX_IACFTaskAgent.h │ │ │ │ ├── AAX_IACFTransport.h │ │ │ │ ├── AAX_IACFTransportControl.h │ │ │ │ ├── AAX_IACFViewContainer.h │ │ │ │ ├── AAX_IAutomationDelegate.h │ │ │ │ ├── AAX_ICollection.h │ │ │ │ ├── AAX_IComponentDescriptor.h │ │ │ │ ├── AAX_IContainer.h │ │ │ │ ├── AAX_IController.h │ │ │ │ ├── AAX_IDataBuffer.h │ │ │ │ ├── AAX_IDataBufferWrapper.h │ │ │ │ ├── AAX_IDescriptionHost.h │ │ │ │ ├── AAX_IDisplayDelegate.h │ │ │ │ ├── AAX_IDisplayDelegateDecorator.h │ │ │ │ ├── AAX_IDma.h │ │ │ │ ├── AAX_IEffectDescriptor.h │ │ │ │ ├── AAX_IEffectDirectData.h │ │ │ │ ├── AAX_IEffectGUI.h │ │ │ │ ├── AAX_IEffectParameters.h │ │ │ │ ├── AAX_IFeatureInfo.h │ │ │ │ ├── AAX_IHostProcessor.h │ │ │ │ ├── AAX_IHostProcessorDelegate.h │ │ │ │ ├── AAX_IHostServices.h │ │ │ │ ├── AAX_IMIDINode.h │ │ │ │ ├── AAX_IPageTable.h │ │ │ │ ├── AAX_IParameter.h │ │ │ │ ├── AAX_IPointerQueue.h │ │ │ │ ├── AAX_IPrivateDataAccess.h │ │ │ │ ├── AAX_IPropertyMap.h │ │ │ │ ├── AAX_ISessionDocument.h │ │ │ │ ├── AAX_ISessionDocumentClient.h │ │ │ │ ├── AAX_IString.h │ │ │ │ ├── AAX_ITaperDelegate.h │ │ │ │ ├── AAX_ITask.h │ │ │ │ ├── AAX_ITaskAgent.h │ │ │ │ ├── AAX_ITransport.h │ │ │ │ ├── AAX_IViewContainer.h │ │ │ │ ├── AAX_Init.h │ │ │ │ ├── AAX_MIDIUtilities.h │ │ │ │ ├── AAX_PageTableUtilities.h │ │ │ │ ├── AAX_PopStructAlignment.h │ │ │ │ ├── AAX_PostStructAlignmentHelper.h │ │ │ │ ├── AAX_PreStructAlignmentHelper.h │ │ │ │ ├── AAX_Properties.h │ │ │ │ ├── AAX_Push2ByteStructAlignment.h │ │ │ │ ├── AAX_Push4ByteStructAlignment.h │ │ │ │ ├── AAX_Push8ByteStructAlignment.h │ │ │ │ ├── AAX_SessionDocumentTypes.h │ │ │ │ ├── AAX_SliderConversions.h │ │ │ │ ├── AAX_StringUtilities.h │ │ │ │ ├── AAX_StringUtilities.hpp │ │ │ │ ├── AAX_TransportTypes.h │ │ │ │ ├── AAX_UIDs.h │ │ │ │ ├── AAX_UtilsNative.h │ │ │ │ ├── AAX_VAutomationDelegate.h │ │ │ │ ├── AAX_VCollection.h │ │ │ │ ├── AAX_VComponentDescriptor.h │ │ │ │ ├── AAX_VController.h │ │ │ │ ├── AAX_VDataBufferWrapper.h │ │ │ │ ├── AAX_VDescriptionHost.h │ │ │ │ ├── AAX_VEffectDescriptor.h │ │ │ │ ├── AAX_VFeatureInfo.h │ │ │ │ ├── AAX_VHostProcessorDelegate.h │ │ │ │ ├── AAX_VHostServices.h │ │ │ │ ├── AAX_VPageTable.h │ │ │ │ ├── AAX_VPrivateDataAccess.h │ │ │ │ ├── AAX_VPropertyMap.h │ │ │ │ ├── AAX_VSessionDocument.h │ │ │ │ ├── AAX_VTask.h │ │ │ │ ├── AAX_VTransport.h │ │ │ │ ├── AAX_VViewContainer.h │ │ │ │ ├── AAX_Version.h │ │ │ │ └── ACF │ │ │ │ │ ├── ACFPtr.h │ │ │ │ │ ├── CACFClassFactory.cpp │ │ │ │ │ ├── CACFClassFactory.h │ │ │ │ │ ├── CACFUnknown.h │ │ │ │ │ ├── ConstACFPtr.h │ │ │ │ │ ├── acfassert.h │ │ │ │ │ ├── acfbaseapi.h │ │ │ │ │ ├── acfbasetypes.h │ │ │ │ │ ├── acfcheckm.h │ │ │ │ │ ├── acfextras.h │ │ │ │ │ ├── acfresult.h │ │ │ │ │ ├── acfuids.h │ │ │ │ │ ├── acfunknown.h │ │ │ │ │ ├── defineacfuid.h │ │ │ │ │ └── initacfuid.h │ │ │ ├── LICENSE.txt │ │ │ ├── Libs │ │ │ │ └── AAXLibrary │ │ │ │ │ └── source │ │ │ │ │ ├── AAX_CACFUnknown.cpp │ │ │ │ │ ├── AAX_CAutoreleasePool.Win.cpp │ │ │ │ │ ├── AAX_CChunkDataParser.cpp │ │ │ │ │ ├── AAX_CEffectDirectData.cpp │ │ │ │ │ ├── AAX_CEffectGUI.cpp │ │ │ │ │ ├── AAX_CEffectParameters.cpp │ │ │ │ │ ├── AAX_CHostProcessor.cpp │ │ │ │ │ ├── AAX_CHostServices.cpp │ │ │ │ │ ├── AAX_CMutex.cpp │ │ │ │ │ ├── AAX_CPacketDispatcher.cpp │ │ │ │ │ ├── AAX_CParameter.cpp │ │ │ │ │ ├── AAX_CParameterManager.cpp │ │ │ │ │ ├── AAX_CString.cpp │ │ │ │ │ ├── AAX_CUIDs.cpp │ │ │ │ │ ├── AAX_CommonConversions.cpp │ │ │ │ │ ├── AAX_IEffectDirectData.cpp │ │ │ │ │ ├── AAX_IEffectGUI.cpp │ │ │ │ │ ├── AAX_IEffectParameters.cpp │ │ │ │ │ ├── AAX_IHostProcessor.cpp │ │ │ │ │ ├── AAX_Init.cpp │ │ │ │ │ ├── AAX_Properties.cpp │ │ │ │ │ ├── AAX_SliderConversions.cpp │ │ │ │ │ ├── AAX_VAutomationDelegate.cpp │ │ │ │ │ ├── AAX_VCollection.cpp │ │ │ │ │ ├── AAX_VComponentDescriptor.cpp │ │ │ │ │ ├── AAX_VController.cpp │ │ │ │ │ ├── AAX_VDescriptionHost.cpp │ │ │ │ │ ├── AAX_VEffectDescriptor.cpp │ │ │ │ │ ├── AAX_VFeatureInfo.cpp │ │ │ │ │ ├── AAX_VHostProcessorDelegate.cpp │ │ │ │ │ ├── AAX_VHostServices.cpp │ │ │ │ │ ├── AAX_VPageTable.cpp │ │ │ │ │ ├── AAX_VPrivateDataAccess.cpp │ │ │ │ │ ├── AAX_VPropertyMap.cpp │ │ │ │ │ ├── AAX_VTransport.cpp │ │ │ │ │ └── AAX_VViewContainer.cpp │ │ │ └── Utilities │ │ │ │ ├── CreatePackage.bat │ │ │ │ └── PlugIn.ico │ │ └── juce_AAX_Modifier_Injector.h │ ├── AU │ │ └── AudioUnitSDK │ │ │ ├── AUBase.cpp │ │ │ ├── AUBase.h │ │ │ ├── AUBuffer.cpp │ │ │ ├── AUBuffer.h │ │ │ ├── AUBufferAllocator.cpp │ │ │ ├── AUEffectBase.cpp │ │ │ ├── AUEffectBase.h │ │ │ ├── AUInputElement.cpp │ │ │ ├── AUInputElement.h │ │ │ ├── AUMIDIBase.cpp │ │ │ ├── AUMIDIBase.h │ │ │ ├── AUMIDIEffectBase.cpp │ │ │ ├── AUMIDIEffectBase.h │ │ │ ├── AUMIDIUtility.h │ │ │ ├── AUOutputElement.cpp │ │ │ ├── AUOutputElement.h │ │ │ ├── AUPlugInDispatch.cpp │ │ │ ├── AUPlugInDispatch.h │ │ │ ├── AUScopeElement.cpp │ │ │ ├── AUScopeElement.h │ │ │ ├── AUSilentTimeout.h │ │ │ ├── AUUtility.h │ │ │ ├── AudioUnitSDK.h │ │ │ ├── ComponentBase.cpp │ │ │ ├── ComponentBase.h │ │ │ ├── JUCE CHANGES.txt │ │ │ ├── LICENSE.txt │ │ │ ├── MusicDeviceBase.cpp │ │ │ └── MusicDeviceBase.h │ ├── LV2 │ │ └── juce_LV2ManifestHelper.cpp │ ├── Standalone │ │ └── juce_StandaloneFilterWindow.h │ ├── Unity │ │ └── juce_UnityPluginInterface.h │ ├── VST3 │ │ ├── juce_VST3ManifestHelper.cpp │ │ └── juce_VST3ManifestHelper.mm │ ├── detail │ │ ├── juce_CheckSettingMacros.h │ │ ├── juce_CreatePluginFilter.h │ │ ├── juce_IncludeModuleHeaders.h │ │ ├── juce_IncludeSystemHeaders.h │ │ ├── juce_LinuxMessageThread.h │ │ ├── juce_PluginUtilities.h │ │ └── juce_VSTWindowUtilities.h │ ├── juce_audio_plugin_client.h │ ├── juce_audio_plugin_client_AAX.cpp │ ├── juce_audio_plugin_client_AAX.mm │ ├── juce_audio_plugin_client_AAX_utils.cpp │ ├── juce_audio_plugin_client_ARA.cpp │ ├── juce_audio_plugin_client_AU_1.mm │ ├── juce_audio_plugin_client_AU_2.mm │ ├── juce_audio_plugin_client_AUv3.mm │ ├── juce_audio_plugin_client_LV2.cpp │ ├── juce_audio_plugin_client_LV2.mm │ ├── juce_audio_plugin_client_Standalone.cpp │ ├── juce_audio_plugin_client_Unity.cpp │ ├── juce_audio_plugin_client_VST2.cpp │ ├── juce_audio_plugin_client_VST2.mm │ ├── juce_audio_plugin_client_VST3.cpp │ └── juce_audio_plugin_client_VST3.mm │ ├── juce_audio_processors │ ├── format │ │ ├── juce_AudioPluginFormat.cpp │ │ ├── juce_AudioPluginFormat.h │ │ ├── juce_AudioPluginFormatManager.cpp │ │ └── juce_AudioPluginFormatManager.h │ ├── format_types │ │ ├── LV2_SDK │ │ │ ├── README.md │ │ │ ├── generate_lv2_bundle_sources.py │ │ │ ├── juce_lv2_config.h │ │ │ ├── lilv │ │ │ │ ├── COPYING │ │ │ │ ├── lilv │ │ │ │ │ ├── lilv.h │ │ │ │ │ └── lilvmm.hpp │ │ │ │ └── src │ │ │ │ │ ├── collections.c │ │ │ │ │ ├── filesystem.c │ │ │ │ │ ├── filesystem.h │ │ │ │ │ ├── instance.c │ │ │ │ │ ├── lib.c │ │ │ │ │ ├── lilv_internal.h │ │ │ │ │ ├── node.c │ │ │ │ │ ├── plugin.c │ │ │ │ │ ├── pluginclass.c │ │ │ │ │ ├── port.c │ │ │ │ │ ├── query.c │ │ │ │ │ ├── scalepoint.c │ │ │ │ │ ├── state.c │ │ │ │ │ ├── ui.c │ │ │ │ │ ├── util.c │ │ │ │ │ ├── world.c │ │ │ │ │ └── zix │ │ │ │ │ ├── common.h │ │ │ │ │ ├── tree.c │ │ │ │ │ └── tree.h │ │ │ ├── lilv_config.h │ │ │ ├── lv2 │ │ │ │ ├── COPYING │ │ │ │ └── lv2 │ │ │ │ │ ├── atom │ │ │ │ │ ├── atom-test-utils.c │ │ │ │ │ ├── atom-test.c │ │ │ │ │ ├── atom.h │ │ │ │ │ ├── atom.meta.ttl │ │ │ │ │ ├── atom.ttl │ │ │ │ │ ├── forge-overflow-test.c │ │ │ │ │ ├── forge.h │ │ │ │ │ ├── manifest.ttl │ │ │ │ │ └── util.h │ │ │ │ │ ├── buf-size │ │ │ │ │ ├── buf-size.h │ │ │ │ │ ├── buf-size.meta.ttl │ │ │ │ │ ├── buf-size.ttl │ │ │ │ │ └── manifest.ttl │ │ │ │ │ ├── core │ │ │ │ │ ├── attributes.h │ │ │ │ │ ├── lv2.h │ │ │ │ │ ├── lv2_util.h │ │ │ │ │ ├── lv2core.meta.ttl │ │ │ │ │ ├── lv2core.ttl │ │ │ │ │ ├── manifest.ttl │ │ │ │ │ ├── meta.ttl │ │ │ │ │ └── people.ttl │ │ │ │ │ ├── data-access │ │ │ │ │ ├── data-access.h │ │ │ │ │ ├── data-access.meta.ttl │ │ │ │ │ ├── data-access.ttl │ │ │ │ │ └── manifest.ttl │ │ │ │ │ ├── dynmanifest │ │ │ │ │ ├── dynmanifest.h │ │ │ │ │ ├── dynmanifest.meta.ttl │ │ │ │ │ ├── dynmanifest.ttl │ │ │ │ │ └── manifest.ttl │ │ │ │ │ ├── event │ │ │ │ │ ├── event-helpers.h │ │ │ │ │ ├── event.h │ │ │ │ │ ├── event.meta.ttl │ │ │ │ │ ├── event.ttl │ │ │ │ │ └── manifest.ttl │ │ │ │ │ ├── instance-access │ │ │ │ │ ├── instance-access.h │ │ │ │ │ ├── instance-access.meta.ttl │ │ │ │ │ ├── instance-access.ttl │ │ │ │ │ └── manifest.ttl │ │ │ │ │ ├── log │ │ │ │ │ ├── log.h │ │ │ │ │ ├── log.meta.ttl │ │ │ │ │ ├── log.ttl │ │ │ │ │ ├── logger.h │ │ │ │ │ └── manifest.ttl │ │ │ │ │ ├── midi │ │ │ │ │ ├── manifest.ttl │ │ │ │ │ ├── midi.h │ │ │ │ │ ├── midi.meta.ttl │ │ │ │ │ └── midi.ttl │ │ │ │ │ ├── morph │ │ │ │ │ ├── manifest.ttl │ │ │ │ │ ├── morph.h │ │ │ │ │ ├── morph.meta.ttl │ │ │ │ │ └── morph.ttl │ │ │ │ │ ├── options │ │ │ │ │ ├── manifest.ttl │ │ │ │ │ ├── options.h │ │ │ │ │ ├── options.meta.ttl │ │ │ │ │ └── options.ttl │ │ │ │ │ ├── parameters │ │ │ │ │ ├── manifest.ttl │ │ │ │ │ ├── parameters.h │ │ │ │ │ ├── parameters.meta.ttl │ │ │ │ │ └── parameters.ttl │ │ │ │ │ ├── patch │ │ │ │ │ ├── manifest.ttl │ │ │ │ │ ├── patch.h │ │ │ │ │ ├── patch.meta.ttl │ │ │ │ │ └── patch.ttl │ │ │ │ │ ├── port-groups │ │ │ │ │ ├── manifest.ttl │ │ │ │ │ ├── port-groups.h │ │ │ │ │ ├── port-groups.meta.ttl │ │ │ │ │ └── port-groups.ttl │ │ │ │ │ ├── port-props │ │ │ │ │ ├── manifest.ttl │ │ │ │ │ ├── port-props.h │ │ │ │ │ ├── port-props.meta.ttl │ │ │ │ │ └── port-props.ttl │ │ │ │ │ ├── presets │ │ │ │ │ ├── manifest.ttl │ │ │ │ │ ├── presets.h │ │ │ │ │ ├── presets.meta.ttl │ │ │ │ │ └── presets.ttl │ │ │ │ │ ├── resize-port │ │ │ │ │ ├── manifest.ttl │ │ │ │ │ ├── resize-port.h │ │ │ │ │ ├── resize-port.meta.ttl │ │ │ │ │ └── resize-port.ttl │ │ │ │ │ ├── state │ │ │ │ │ ├── manifest.ttl │ │ │ │ │ ├── state.h │ │ │ │ │ ├── state.meta.ttl │ │ │ │ │ └── state.ttl │ │ │ │ │ ├── time │ │ │ │ │ ├── manifest.ttl │ │ │ │ │ ├── time.h │ │ │ │ │ ├── time.meta.ttl │ │ │ │ │ └── time.ttl │ │ │ │ │ ├── ui │ │ │ │ │ ├── manifest.ttl │ │ │ │ │ ├── ui.h │ │ │ │ │ ├── ui.meta.ttl │ │ │ │ │ └── ui.ttl │ │ │ │ │ ├── units │ │ │ │ │ ├── manifest.ttl │ │ │ │ │ ├── units.h │ │ │ │ │ ├── units.meta.ttl │ │ │ │ │ └── units.ttl │ │ │ │ │ ├── uri-map │ │ │ │ │ ├── manifest.ttl │ │ │ │ │ ├── uri-map.h │ │ │ │ │ ├── uri-map.meta.ttl │ │ │ │ │ └── uri-map.ttl │ │ │ │ │ ├── urid │ │ │ │ │ ├── manifest.ttl │ │ │ │ │ ├── urid.h │ │ │ │ │ ├── urid.meta.ttl │ │ │ │ │ └── urid.ttl │ │ │ │ │ └── worker │ │ │ │ │ ├── manifest.ttl │ │ │ │ │ ├── worker.h │ │ │ │ │ ├── worker.meta.ttl │ │ │ │ │ └── worker.ttl │ │ │ ├── serd │ │ │ │ ├── COPYING │ │ │ │ ├── serd │ │ │ │ │ └── serd.h │ │ │ │ └── src │ │ │ │ │ ├── .clang-tidy │ │ │ │ │ ├── attributes.h │ │ │ │ │ ├── base64.c │ │ │ │ │ ├── base64.h │ │ │ │ │ ├── byte_sink.h │ │ │ │ │ ├── byte_source.c │ │ │ │ │ ├── byte_source.h │ │ │ │ │ ├── env.c │ │ │ │ │ ├── n3.c │ │ │ │ │ ├── node.c │ │ │ │ │ ├── node.h │ │ │ │ │ ├── reader.c │ │ │ │ │ ├── reader.h │ │ │ │ │ ├── serd_config.h │ │ │ │ │ ├── serd_internal.h │ │ │ │ │ ├── serdi.c │ │ │ │ │ ├── stack.h │ │ │ │ │ ├── string.c │ │ │ │ │ ├── string_utils.h │ │ │ │ │ ├── system.c │ │ │ │ │ ├── system.h │ │ │ │ │ ├── uri.c │ │ │ │ │ ├── uri_utils.h │ │ │ │ │ └── writer.c │ │ │ ├── serd_config.h │ │ │ ├── sord │ │ │ │ ├── COPYING │ │ │ │ ├── sord │ │ │ │ │ ├── sord.h │ │ │ │ │ └── sordmm.hpp │ │ │ │ └── src │ │ │ │ │ ├── sord.c │ │ │ │ │ ├── sord_config.h │ │ │ │ │ ├── sord_internal.h │ │ │ │ │ ├── sord_test.c │ │ │ │ │ ├── sord_validate.c │ │ │ │ │ ├── sordi.c │ │ │ │ │ ├── sordmm_test.cpp │ │ │ │ │ ├── syntax.c │ │ │ │ │ └── zix │ │ │ │ │ ├── btree.c │ │ │ │ │ ├── btree.h │ │ │ │ │ ├── common.h │ │ │ │ │ ├── digest.c │ │ │ │ │ ├── digest.h │ │ │ │ │ ├── hash.c │ │ │ │ │ └── hash.h │ │ │ ├── sord_config.h │ │ │ └── sratom │ │ │ │ ├── COPYING │ │ │ │ ├── sratom │ │ │ │ └── sratom.h │ │ │ │ └── src │ │ │ │ └── sratom.c │ │ ├── VST3_SDK │ │ │ ├── JUCE_README.md │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── VST3_License_Agreement.pdf │ │ │ ├── VST3_Usage_Guidelines.pdf │ │ │ ├── base │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── source │ │ │ │ │ ├── baseiids.cpp │ │ │ │ │ ├── classfactoryhelpers.h │ │ │ │ │ ├── fbuffer.cpp │ │ │ │ │ ├── fbuffer.h │ │ │ │ │ ├── fcommandline.h │ │ │ │ │ ├── fdebug.cpp │ │ │ │ │ ├── fdebug.h │ │ │ │ │ ├── fobject.cpp │ │ │ │ │ ├── fobject.h │ │ │ │ │ ├── fstreamer.cpp │ │ │ │ │ ├── fstreamer.h │ │ │ │ │ ├── fstring.cpp │ │ │ │ │ ├── fstring.h │ │ │ │ │ ├── updatehandler.cpp │ │ │ │ │ └── updatehandler.h │ │ │ │ └── thread │ │ │ │ │ ├── include │ │ │ │ │ └── flock.h │ │ │ │ │ └── source │ │ │ │ │ └── flock.cpp │ │ │ ├── pluginterfaces │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── base │ │ │ │ │ ├── conststringtable.cpp │ │ │ │ │ ├── conststringtable.h │ │ │ │ │ ├── coreiids.cpp │ │ │ │ │ ├── falignpop.h │ │ │ │ │ ├── falignpush.h │ │ │ │ │ ├── fplatform.h │ │ │ │ │ ├── fstrdefs.h │ │ │ │ │ ├── ftypes.h │ │ │ │ │ ├── funknown.cpp │ │ │ │ │ ├── funknown.h │ │ │ │ │ ├── funknownimpl.h │ │ │ │ │ ├── futils.h │ │ │ │ │ ├── fvariant.h │ │ │ │ │ ├── ibstream.h │ │ │ │ │ ├── icloneable.h │ │ │ │ │ ├── ipersistent.h │ │ │ │ │ ├── ipluginbase.h │ │ │ │ │ ├── iplugincompatibility.h │ │ │ │ │ ├── istringresult.h │ │ │ │ │ ├── iupdatehandler.h │ │ │ │ │ ├── smartpointer.h │ │ │ │ │ ├── typesizecheck.h │ │ │ │ │ ├── ustring.cpp │ │ │ │ │ └── ustring.h │ │ │ │ ├── gui │ │ │ │ │ ├── iplugview.h │ │ │ │ │ └── iplugviewcontentscalesupport.h │ │ │ │ └── vst │ │ │ │ │ ├── ivstattributes.h │ │ │ │ │ ├── ivstaudioprocessor.h │ │ │ │ │ ├── ivstautomationstate.h │ │ │ │ │ ├── ivstchannelcontextinfo.h │ │ │ │ │ ├── ivstcomponent.h │ │ │ │ │ ├── ivstcontextmenu.h │ │ │ │ │ ├── ivstdataexchange.h │ │ │ │ │ ├── ivsteditcontroller.h │ │ │ │ │ ├── ivstevents.h │ │ │ │ │ ├── ivsthostapplication.h │ │ │ │ │ ├── ivstinterappaudio.h │ │ │ │ │ ├── ivstmessage.h │ │ │ │ │ ├── ivstmidicontrollers.h │ │ │ │ │ ├── ivstmidilearn.h │ │ │ │ │ ├── ivstnoteexpression.h │ │ │ │ │ ├── ivstparameterchanges.h │ │ │ │ │ ├── ivstparameterfunctionname.h │ │ │ │ │ ├── ivstphysicalui.h │ │ │ │ │ ├── ivstpluginterfacesupport.h │ │ │ │ │ ├── ivstplugview.h │ │ │ │ │ ├── ivstprefetchablesupport.h │ │ │ │ │ ├── ivstprocesscontext.h │ │ │ │ │ ├── ivstremapparamid.h │ │ │ │ │ ├── ivstrepresentation.h │ │ │ │ │ ├── ivsttestplugprovider.h │ │ │ │ │ ├── ivstunits.h │ │ │ │ │ ├── vstpshpack4.h │ │ │ │ │ ├── vstspeaker.h │ │ │ │ │ └── vsttypes.h │ │ │ └── public.sdk │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── samples │ │ │ │ └── vst-utilities │ │ │ │ │ └── moduleinfotool │ │ │ │ │ └── source │ │ │ │ │ └── main.cpp │ │ │ │ └── source │ │ │ │ ├── common │ │ │ │ ├── commonstringconvert.cpp │ │ │ │ ├── commonstringconvert.h │ │ │ │ ├── memorystream.cpp │ │ │ │ ├── memorystream.h │ │ │ │ ├── pluginview.cpp │ │ │ │ ├── pluginview.h │ │ │ │ ├── readfile.cpp │ │ │ │ └── readfile.h │ │ │ │ └── vst │ │ │ │ ├── hosting │ │ │ │ ├── hostclasses.cpp │ │ │ │ ├── hostclasses.h │ │ │ │ ├── module.cpp │ │ │ │ ├── module.h │ │ │ │ ├── module_linux.cpp │ │ │ │ ├── module_mac.mm │ │ │ │ ├── module_win32.cpp │ │ │ │ ├── pluginterfacesupport.cpp │ │ │ │ └── pluginterfacesupport.h │ │ │ │ ├── moduleinfo │ │ │ │ ├── ReadMe.md │ │ │ │ ├── json.h │ │ │ │ ├── jsoncxx.h │ │ │ │ ├── moduleinfo.h │ │ │ │ ├── moduleinfocreator.cpp │ │ │ │ ├── moduleinfocreator.h │ │ │ │ ├── moduleinfoparser.cpp │ │ │ │ └── moduleinfoparser.h │ │ │ │ ├── utility │ │ │ │ ├── optional.h │ │ │ │ ├── stringconvert.cpp │ │ │ │ ├── stringconvert.h │ │ │ │ ├── uid.h │ │ │ │ ├── vst2persistence.cpp │ │ │ │ └── vst2persistence.h │ │ │ │ ├── vstbus.cpp │ │ │ │ ├── vstbus.h │ │ │ │ ├── vstcomponent.cpp │ │ │ │ ├── vstcomponent.h │ │ │ │ ├── vstcomponentbase.cpp │ │ │ │ ├── vstcomponentbase.h │ │ │ │ ├── vsteditcontroller.cpp │ │ │ │ ├── vsteditcontroller.h │ │ │ │ ├── vstinitiids.cpp │ │ │ │ ├── vstparameters.cpp │ │ │ │ ├── vstparameters.h │ │ │ │ ├── vstpresetfile.cpp │ │ │ │ └── vstpresetfile.h │ │ ├── juce_ARACommon.cpp │ │ ├── juce_ARACommon.h │ │ ├── juce_ARAHosting.cpp │ │ ├── juce_ARAHosting.h │ │ ├── juce_AU_Shared.h │ │ ├── juce_AudioUnitPluginFormat.h │ │ ├── juce_AudioUnitPluginFormat.mm │ │ ├── juce_LADSPAPluginFormat.cpp │ │ ├── juce_LADSPAPluginFormat.h │ │ ├── juce_LV2Common.h │ │ ├── juce_LV2PluginFormat.cpp │ │ ├── juce_LV2PluginFormat.h │ │ ├── juce_LV2PluginFormat_test.cpp │ │ ├── juce_LV2Resources.h │ │ ├── juce_LV2SupportLibs.cpp │ │ ├── juce_LegacyAudioParameter.cpp │ │ ├── juce_VST3Common.h │ │ ├── juce_VST3Headers.h │ │ ├── juce_VST3PluginFormat.cpp │ │ ├── juce_VST3PluginFormat.h │ │ ├── juce_VST3PluginFormat_test.cpp │ │ ├── juce_VSTCommon.h │ │ ├── juce_VSTMidiEventList.h │ │ ├── juce_VSTPluginFormat.cpp │ │ ├── juce_VSTPluginFormat.h │ │ └── pslextensions │ │ │ ├── ipslcontextinfo.h │ │ │ ├── ipsleditcontroller.h │ │ │ ├── ipslgainreduction.h │ │ │ ├── ipslhostcommands.h │ │ │ ├── ipslviewembedding.h │ │ │ ├── ipslviewscaling.h │ │ │ ├── pslauextensions.h │ │ │ └── pslvst2extensions.h │ ├── juce_audio_processors.cpp │ ├── juce_audio_processors.h │ ├── juce_audio_processors.mm │ ├── juce_audio_processors_ara.cpp │ ├── juce_audio_processors_lv2_libs.cpp │ ├── processors │ │ ├── juce_AudioPluginInstance.cpp │ │ ├── juce_AudioPluginInstance.h │ │ ├── juce_AudioProcessor.cpp │ │ ├── juce_AudioProcessor.h │ │ ├── juce_AudioProcessorEditor.cpp │ │ ├── juce_AudioProcessorEditor.h │ │ ├── juce_AudioProcessorEditorHostContext.h │ │ ├── juce_AudioProcessorGraph.cpp │ │ ├── juce_AudioProcessorGraph.h │ │ ├── juce_AudioProcessorListener.h │ │ ├── juce_AudioProcessorParameter.h │ │ ├── juce_AudioProcessorParameterGroup.cpp │ │ ├── juce_AudioProcessorParameterGroup.h │ │ ├── juce_GenericAudioProcessorEditor.cpp │ │ ├── juce_GenericAudioProcessorEditor.h │ │ ├── juce_HostedAudioProcessorParameter.h │ │ ├── juce_PluginDescription.cpp │ │ └── juce_PluginDescription.h │ ├── scanning │ │ ├── juce_KnownPluginList.cpp │ │ ├── juce_KnownPluginList.h │ │ ├── juce_PluginDirectoryScanner.cpp │ │ ├── juce_PluginDirectoryScanner.h │ │ ├── juce_PluginListComponent.cpp │ │ └── juce_PluginListComponent.h │ └── utilities │ │ ├── ARA │ │ ├── juce_ARADebug.h │ │ ├── juce_ARADocumentController.cpp │ │ ├── juce_ARADocumentController.h │ │ ├── juce_ARADocumentControllerCommon.cpp │ │ ├── juce_ARAModelObjects.cpp │ │ ├── juce_ARAModelObjects.h │ │ ├── juce_ARAPlugInInstanceRoles.cpp │ │ ├── juce_ARAPlugInInstanceRoles.h │ │ ├── juce_ARA_utils.cpp │ │ ├── juce_ARA_utils.h │ │ ├── juce_AudioProcessor_ARAExtensions.cpp │ │ └── juce_AudioProcessor_ARAExtensions.h │ │ ├── juce_AAXClientExtensions.cpp │ │ ├── juce_AAXClientExtensions.h │ │ ├── juce_AudioParameterBool.cpp │ │ ├── juce_AudioParameterBool.h │ │ ├── juce_AudioParameterChoice.cpp │ │ ├── juce_AudioParameterChoice.h │ │ ├── juce_AudioParameterFloat.cpp │ │ ├── juce_AudioParameterFloat.h │ │ ├── juce_AudioParameterInt.cpp │ │ ├── juce_AudioParameterInt.h │ │ ├── juce_AudioProcessorParameterWithID.cpp │ │ ├── juce_AudioProcessorParameterWithID.h │ │ ├── juce_AudioProcessorValueTreeState.cpp │ │ ├── juce_AudioProcessorValueTreeState.h │ │ ├── juce_ExtensionsVisitor.h │ │ ├── juce_FlagCache.h │ │ ├── juce_ParameterAttachments.cpp │ │ ├── juce_ParameterAttachments.h │ │ ├── juce_PluginHostType.cpp │ │ ├── juce_PluginHostType.h │ │ ├── juce_RangedAudioParameter.cpp │ │ ├── juce_RangedAudioParameter.h │ │ ├── juce_VST2ClientExtensions.cpp │ │ ├── juce_VST2ClientExtensions.h │ │ ├── juce_VST3ClientExtensions.cpp │ │ └── juce_VST3ClientExtensions.h │ ├── juce_audio_utils │ ├── audio_cd │ │ ├── juce_AudioCDBurner.h │ │ ├── juce_AudioCDReader.cpp │ │ └── juce_AudioCDReader.h │ ├── gui │ │ ├── juce_AudioAppComponent.cpp │ │ ├── juce_AudioAppComponent.h │ │ ├── juce_AudioDeviceSelectorComponent.cpp │ │ ├── juce_AudioDeviceSelectorComponent.h │ │ ├── juce_AudioThumbnail.cpp │ │ ├── juce_AudioThumbnail.h │ │ ├── juce_AudioThumbnailBase.h │ │ ├── juce_AudioThumbnailCache.cpp │ │ ├── juce_AudioThumbnailCache.h │ │ ├── juce_AudioVisualiserComponent.cpp │ │ ├── juce_AudioVisualiserComponent.h │ │ ├── juce_BluetoothMidiDevicePairingDialogue.h │ │ ├── juce_KeyboardComponentBase.cpp │ │ ├── juce_KeyboardComponentBase.h │ │ ├── juce_MPEKeyboardComponent.cpp │ │ ├── juce_MPEKeyboardComponent.h │ │ ├── juce_MidiKeyboardComponent.cpp │ │ └── juce_MidiKeyboardComponent.h │ ├── juce_audio_utils.cpp │ ├── juce_audio_utils.h │ ├── juce_audio_utils.mm │ ├── native │ │ ├── juce_AudioCDBurner_mac.mm │ │ ├── juce_AudioCDBurner_windows.cpp │ │ ├── juce_AudioCDReader_linux.cpp │ │ ├── juce_AudioCDReader_mac.mm │ │ ├── juce_AudioCDReader_windows.cpp │ │ ├── juce_BluetoothMidiDevicePairingDialogue_android.cpp │ │ ├── juce_BluetoothMidiDevicePairingDialogue_ios.mm │ │ ├── juce_BluetoothMidiDevicePairingDialogue_linux.cpp │ │ ├── juce_BluetoothMidiDevicePairingDialogue_mac.mm │ │ └── juce_BluetoothMidiDevicePairingDialogue_windows.cpp │ └── players │ │ ├── juce_AudioProcessorPlayer.cpp │ │ ├── juce_AudioProcessorPlayer.h │ │ ├── juce_SoundPlayer.cpp │ │ └── juce_SoundPlayer.h │ ├── juce_core │ ├── containers │ │ ├── juce_AbstractFifo.cpp │ │ ├── juce_AbstractFifo.h │ │ ├── juce_Array.h │ │ ├── juce_ArrayAllocationBase.h │ │ ├── juce_ArrayBase.cpp │ │ ├── juce_ArrayBase.h │ │ ├── juce_DynamicObject.cpp │ │ ├── juce_DynamicObject.h │ │ ├── juce_ElementComparator.h │ │ ├── juce_Enumerate.h │ │ ├── juce_Enumerate_test.cpp │ │ ├── juce_FixedSizeFunction.h │ │ ├── juce_FixedSizeFunction_test.cpp │ │ ├── juce_HashMap.h │ │ ├── juce_HashMap_test.cpp │ │ ├── juce_LinkedListPointer.h │ │ ├── juce_ListenerList.h │ │ ├── juce_ListenerList_test.cpp │ │ ├── juce_NamedValueSet.cpp │ │ ├── juce_NamedValueSet.h │ │ ├── juce_Optional.h │ │ ├── juce_Optional_test.cpp │ │ ├── juce_OwnedArray.cpp │ │ ├── juce_OwnedArray.h │ │ ├── juce_PropertySet.cpp │ │ ├── juce_PropertySet.h │ │ ├── juce_ReferenceCountedArray.cpp │ │ ├── juce_ReferenceCountedArray.h │ │ ├── juce_ScopedValueSetter.h │ │ ├── juce_SingleThreadedAbstractFifo.h │ │ ├── juce_SortedSet.h │ │ ├── juce_Span.h │ │ ├── juce_SparseSet.cpp │ │ ├── juce_SparseSet.h │ │ ├── juce_Variant.cpp │ │ └── juce_Variant.h │ ├── detail │ │ ├── juce_CallbackListenerList.h │ │ └── juce_NativeFileHandle.h │ ├── files │ │ ├── juce_AndroidDocument.h │ │ ├── juce_DirectoryIterator.cpp │ │ ├── juce_DirectoryIterator.h │ │ ├── juce_File.cpp │ │ ├── juce_File.h │ │ ├── juce_FileFilter.cpp │ │ ├── juce_FileFilter.h │ │ ├── juce_FileInputStream.cpp │ │ ├── juce_FileInputStream.h │ │ ├── juce_FileOutputStream.cpp │ │ ├── juce_FileOutputStream.h │ │ ├── juce_FileSearchPath.cpp │ │ ├── juce_FileSearchPath.h │ │ ├── juce_MemoryMappedFile.h │ │ ├── juce_RangedDirectoryIterator.cpp │ │ ├── juce_RangedDirectoryIterator.h │ │ ├── juce_TemporaryFile.cpp │ │ ├── juce_TemporaryFile.h │ │ ├── juce_WildcardFileFilter.cpp │ │ ├── juce_WildcardFileFilter.h │ │ ├── juce_common_MimeTypes.cpp │ │ └── juce_common_MimeTypes.h │ ├── json │ │ ├── juce_JSON.cpp │ │ ├── juce_JSON.h │ │ ├── juce_JSONSerialisation.h │ │ ├── juce_JSONSerialisation_test.cpp │ │ ├── juce_JSONUtils.cpp │ │ └── juce_JSONUtils.h │ ├── juce_core.cpp │ ├── juce_core.h │ ├── juce_core.mm │ ├── juce_core_CompilationTime.cpp │ ├── logging │ │ ├── juce_FileLogger.cpp │ │ ├── juce_FileLogger.h │ │ ├── juce_Logger.cpp │ │ └── juce_Logger.h │ ├── maths │ │ ├── juce_BigInteger.cpp │ │ ├── juce_BigInteger.h │ │ ├── juce_Expression.cpp │ │ ├── juce_Expression.h │ │ ├── juce_MathsFunctions.h │ │ ├── juce_MathsFunctions_test.cpp │ │ ├── juce_NormalisableRange.h │ │ ├── juce_Random.cpp │ │ ├── juce_Random.h │ │ ├── juce_Range.h │ │ └── juce_StatisticsAccumulator.h │ ├── memory │ │ ├── juce_AllocationHooks.cpp │ │ ├── juce_AllocationHooks.h │ │ ├── juce_Atomic.h │ │ ├── juce_ByteOrder.h │ │ ├── juce_ContainerDeletePolicy.h │ │ ├── juce_CopyableHeapBlock.h │ │ ├── juce_HeapBlock.h │ │ ├── juce_HeavyweightLeakedObjectDetector.h │ │ ├── juce_LeakedObjectDetector.h │ │ ├── juce_Memory.h │ │ ├── juce_MemoryBlock.cpp │ │ ├── juce_MemoryBlock.h │ │ ├── juce_OptionalScopedPointer.h │ │ ├── juce_ReferenceCountedObject.h │ │ ├── juce_Reservoir.h │ │ ├── juce_ScopedPointer.h │ │ ├── juce_SharedResourcePointer.h │ │ ├── juce_SharedResourcePointer_test.cpp │ │ ├── juce_Singleton.h │ │ └── juce_WeakReference.h │ ├── misc │ │ ├── juce_ConsoleApplication.cpp │ │ ├── juce_ConsoleApplication.h │ │ ├── juce_EnumHelpers.h │ │ ├── juce_EnumHelpers_test.cpp │ │ ├── juce_Functional.h │ │ ├── juce_OptionsHelpers.h │ │ ├── juce_Result.cpp │ │ ├── juce_Result.h │ │ ├── juce_RuntimePermissions.cpp │ │ ├── juce_RuntimePermissions.h │ │ ├── juce_ScopeGuard.cpp │ │ ├── juce_ScopeGuard.h │ │ ├── juce_Uuid.cpp │ │ ├── juce_Uuid.h │ │ └── juce_WindowsRegistry.h │ ├── native │ │ ├── java │ │ │ ├── README.txt │ │ │ └── app │ │ │ │ └── com │ │ │ │ └── rmsl │ │ │ │ └── juce │ │ │ │ ├── FragmentOverlay.java │ │ │ │ ├── JuceHTTPStream.java │ │ │ │ └── JuceInvocationHandler.java │ │ ├── javacore │ │ │ ├── app │ │ │ │ └── com │ │ │ │ │ └── rmsl │ │ │ │ │ └── juce │ │ │ │ │ └── JuceApp.java │ │ │ └── init │ │ │ │ └── com │ │ │ │ └── rmsl │ │ │ │ └── juce │ │ │ │ └── Java.java │ │ ├── juce_AndroidDocument_android.cpp │ │ ├── juce_BasicNativeHeaders.h │ │ ├── juce_CFHelpers_mac.h │ │ ├── juce_ComSmartPtr_windows.h │ │ ├── juce_CommonFile_linux.cpp │ │ ├── juce_Files_android.cpp │ │ ├── juce_Files_linux.cpp │ │ ├── juce_Files_mac.mm │ │ ├── juce_Files_windows.cpp │ │ ├── juce_IPAddress_posix.h │ │ ├── juce_JNIHelpers_android.cpp │ │ ├── juce_JNIHelpers_android.h │ │ ├── juce_Misc_android.cpp │ │ ├── juce_NamedPipe_posix.cpp │ │ ├── juce_Network_android.cpp │ │ ├── juce_Network_curl.cpp │ │ ├── juce_Network_linux.cpp │ │ ├── juce_Network_mac.mm │ │ ├── juce_Network_windows.cpp │ │ ├── juce_ObjCHelpers_mac.h │ │ ├── juce_ObjCHelpers_mac_test.mm │ │ ├── juce_PlatformTimerListener.h │ │ ├── juce_PlatformTimer_generic.cpp │ │ ├── juce_PlatformTimer_windows.cpp │ │ ├── juce_Process_mac.mm │ │ ├── juce_Registry_windows.cpp │ │ ├── juce_RuntimePermissions_android.cpp │ │ ├── juce_SharedCode_intel.h │ │ ├── juce_SharedCode_posix.h │ │ ├── juce_Strings_mac.mm │ │ ├── juce_SystemStats_android.cpp │ │ ├── juce_SystemStats_linux.cpp │ │ ├── juce_SystemStats_mac.mm │ │ ├── juce_SystemStats_wasm.cpp │ │ ├── juce_SystemStats_windows.cpp │ │ ├── juce_ThreadPriorities_native.h │ │ ├── juce_Threads_android.cpp │ │ ├── juce_Threads_linux.cpp │ │ ├── juce_Threads_mac.mm │ │ └── juce_Threads_windows.cpp │ ├── network │ │ ├── juce_IPAddress.cpp │ │ ├── juce_IPAddress.h │ │ ├── juce_MACAddress.cpp │ │ ├── juce_MACAddress.h │ │ ├── juce_NamedPipe.cpp │ │ ├── juce_NamedPipe.h │ │ ├── juce_Socket.cpp │ │ ├── juce_Socket.h │ │ ├── juce_URL.cpp │ │ ├── juce_URL.h │ │ ├── juce_WebInputStream.cpp │ │ └── juce_WebInputStream.h │ ├── serialisation │ │ └── juce_Serialisation.h │ ├── streams │ │ ├── juce_AndroidDocumentInputSource.h │ │ ├── juce_BufferedInputStream.cpp │ │ ├── juce_BufferedInputStream.h │ │ ├── juce_FileInputSource.cpp │ │ ├── juce_FileInputSource.h │ │ ├── juce_InputSource.h │ │ ├── juce_InputStream.cpp │ │ ├── juce_InputStream.h │ │ ├── juce_MemoryInputStream.cpp │ │ ├── juce_MemoryInputStream.h │ │ ├── juce_MemoryOutputStream.cpp │ │ ├── juce_MemoryOutputStream.h │ │ ├── juce_OutputStream.cpp │ │ ├── juce_OutputStream.h │ │ ├── juce_SubregionStream.cpp │ │ ├── juce_SubregionStream.h │ │ ├── juce_URLInputSource.cpp │ │ └── juce_URLInputSource.h │ ├── system │ │ ├── juce_CompilerSupport.h │ │ ├── juce_CompilerWarnings.h │ │ ├── juce_PlatformDefs.h │ │ ├── juce_StandardHeader.h │ │ ├── juce_SystemStats.cpp │ │ ├── juce_SystemStats.h │ │ └── juce_TargetPlatform.h │ ├── text │ │ ├── juce_Base64.cpp │ │ ├── juce_Base64.h │ │ ├── juce_CharPointer_ASCII.h │ │ ├── juce_CharPointer_UTF16.h │ │ ├── juce_CharPointer_UTF16_test.cpp │ │ ├── juce_CharPointer_UTF32.h │ │ ├── juce_CharPointer_UTF32_test.cpp │ │ ├── juce_CharPointer_UTF8.h │ │ ├── juce_CharPointer_UTF8_test.cpp │ │ ├── juce_CharacterFunctions.cpp │ │ ├── juce_CharacterFunctions.h │ │ ├── juce_Identifier.cpp │ │ ├── juce_Identifier.h │ │ ├── juce_LocalisedStrings.cpp │ │ ├── juce_LocalisedStrings.h │ │ ├── juce_NewLine.h │ │ ├── juce_String.cpp │ │ ├── juce_String.h │ │ ├── juce_StringArray.cpp │ │ ├── juce_StringArray.h │ │ ├── juce_StringPairArray.cpp │ │ ├── juce_StringPairArray.h │ │ ├── juce_StringPool.cpp │ │ ├── juce_StringPool.h │ │ ├── juce_StringRef.h │ │ ├── juce_TextDiff.cpp │ │ └── juce_TextDiff.h │ ├── threads │ │ ├── juce_ChildProcess.cpp │ │ ├── juce_ChildProcess.h │ │ ├── juce_CriticalSection.h │ │ ├── juce_DynamicLibrary.h │ │ ├── juce_HighResolutionTimer.cpp │ │ ├── juce_HighResolutionTimer.h │ │ ├── juce_InterProcessLock.h │ │ ├── juce_Process.h │ │ ├── juce_ReadWriteLock.cpp │ │ ├── juce_ReadWriteLock.h │ │ ├── juce_ScopedLock.h │ │ ├── juce_ScopedReadLock.h │ │ ├── juce_ScopedWriteLock.h │ │ ├── juce_SpinLock.h │ │ ├── juce_Thread.cpp │ │ ├── juce_Thread.h │ │ ├── juce_ThreadLocalValue.h │ │ ├── juce_ThreadPool.cpp │ │ ├── juce_ThreadPool.h │ │ ├── juce_TimeSliceThread.cpp │ │ ├── juce_TimeSliceThread.h │ │ ├── juce_WaitableEvent.cpp │ │ └── juce_WaitableEvent.h │ ├── time │ │ ├── juce_PerformanceCounter.cpp │ │ ├── juce_PerformanceCounter.h │ │ ├── juce_RelativeTime.cpp │ │ ├── juce_RelativeTime.h │ │ ├── juce_Time.cpp │ │ └── juce_Time.h │ ├── unit_tests │ │ ├── juce_UnitTest.cpp │ │ ├── juce_UnitTest.h │ │ └── juce_UnitTestCategories.h │ ├── xml │ │ ├── juce_XmlDocument.cpp │ │ ├── juce_XmlDocument.h │ │ ├── juce_XmlElement.cpp │ │ └── juce_XmlElement.h │ └── zip │ │ ├── juce_GZIPCompressorOutputStream.cpp │ │ ├── juce_GZIPCompressorOutputStream.h │ │ ├── juce_GZIPDecompressorInputStream.cpp │ │ ├── juce_GZIPDecompressorInputStream.h │ │ ├── juce_ZipFile.cpp │ │ ├── juce_ZipFile.h │ │ ├── juce_zlib.h │ │ └── zlib │ │ ├── JUCE_CHANGES.txt │ │ ├── LICENSE │ │ ├── README │ │ ├── adler32.c │ │ ├── compress.c │ │ ├── crc32.c │ │ ├── crc32.h │ │ ├── deflate.c │ │ ├── deflate.h │ │ ├── gzguts.h │ │ ├── infback.c │ │ ├── inffast.c │ │ ├── inffast.h │ │ ├── inffixed.h │ │ ├── inflate.c │ │ ├── inflate.h │ │ ├── inftrees.c │ │ ├── inftrees.h │ │ ├── trees.c │ │ ├── trees.h │ │ ├── uncompr.c │ │ ├── zconf.h │ │ ├── zlib.h │ │ ├── zutil.c │ │ └── zutil.h │ ├── juce_data_structures │ ├── app_properties │ │ ├── juce_ApplicationProperties.cpp │ │ ├── juce_ApplicationProperties.h │ │ ├── juce_PropertiesFile.cpp │ │ └── juce_PropertiesFile.h │ ├── juce_data_structures.cpp │ ├── juce_data_structures.h │ ├── juce_data_structures.mm │ ├── undomanager │ │ ├── juce_UndoManager.cpp │ │ ├── juce_UndoManager.h │ │ ├── juce_UndoableAction.cpp │ │ └── juce_UndoableAction.h │ └── values │ │ ├── juce_CachedValue.cpp │ │ ├── juce_CachedValue.h │ │ ├── juce_Value.cpp │ │ ├── juce_Value.h │ │ ├── juce_ValueTree.cpp │ │ ├── juce_ValueTree.h │ │ ├── juce_ValueTreePropertyWithDefault.h │ │ ├── juce_ValueTreePropertyWithDefault_test.cpp │ │ ├── juce_ValueTreeSynchroniser.cpp │ │ └── juce_ValueTreeSynchroniser.h │ ├── juce_events │ ├── broadcasters │ │ ├── juce_ActionBroadcaster.cpp │ │ ├── juce_ActionBroadcaster.h │ │ ├── juce_ActionListener.h │ │ ├── juce_AsyncUpdater.cpp │ │ ├── juce_AsyncUpdater.h │ │ ├── juce_ChangeBroadcaster.cpp │ │ ├── juce_ChangeBroadcaster.h │ │ ├── juce_ChangeListener.h │ │ ├── juce_LockingAsyncUpdater.cpp │ │ └── juce_LockingAsyncUpdater.h │ ├── interprocess │ │ ├── juce_ChildProcessManager.cpp │ │ ├── juce_ChildProcessManager.h │ │ ├── juce_ConnectedChildProcess.cpp │ │ ├── juce_ConnectedChildProcess.h │ │ ├── juce_InterprocessConnection.cpp │ │ ├── juce_InterprocessConnection.h │ │ ├── juce_InterprocessConnectionServer.cpp │ │ ├── juce_InterprocessConnectionServer.h │ │ ├── juce_NetworkServiceDiscovery.cpp │ │ └── juce_NetworkServiceDiscovery.h │ ├── juce_events.cpp │ ├── juce_events.h │ ├── juce_events.mm │ ├── messages │ │ ├── juce_ApplicationBase.cpp │ │ ├── juce_ApplicationBase.h │ │ ├── juce_CallbackMessage.h │ │ ├── juce_DeletedAtShutdown.cpp │ │ ├── juce_DeletedAtShutdown.h │ │ ├── juce_Initialisation.h │ │ ├── juce_Message.h │ │ ├── juce_MessageListener.cpp │ │ ├── juce_MessageListener.h │ │ ├── juce_MessageManager.cpp │ │ ├── juce_MessageManager.h │ │ ├── juce_MountedVolumeListChangeDetector.h │ │ └── juce_NotificationType.h │ ├── native │ │ ├── juce_EventLoopInternal_linux.h │ │ ├── juce_EventLoop_linux.h │ │ ├── juce_HiddenMessageWindow_windows.h │ │ ├── juce_MessageManager_ios.mm │ │ ├── juce_MessageManager_mac.mm │ │ ├── juce_MessageQueue_mac.h │ │ ├── juce_Messaging_android.cpp │ │ ├── juce_Messaging_linux.cpp │ │ ├── juce_Messaging_windows.cpp │ │ ├── juce_RunningInUnity.h │ │ ├── juce_ScopedLowPowerModeDisabler.cpp │ │ ├── juce_ScopedLowPowerModeDisabler.h │ │ ├── juce_WinRTWrapper_windows.cpp │ │ └── juce_WinRTWrapper_windows.h │ └── timers │ │ ├── juce_MultiTimer.cpp │ │ ├── juce_MultiTimer.h │ │ ├── juce_TimedCallback.h │ │ ├── juce_Timer.cpp │ │ └── juce_Timer.h │ ├── juce_graphics │ ├── colour │ │ ├── juce_Colour.cpp │ │ ├── juce_Colour.h │ │ ├── juce_ColourGradient.cpp │ │ ├── juce_ColourGradient.h │ │ ├── juce_Colours.cpp │ │ ├── juce_Colours.h │ │ ├── juce_FillType.cpp │ │ ├── juce_FillType.h │ │ └── juce_PixelFormats.h │ ├── contexts │ │ ├── juce_GraphicsContext.cpp │ │ ├── juce_GraphicsContext.h │ │ ├── juce_LowLevelGraphicsContext.h │ │ ├── juce_LowLevelGraphicsSoftwareRenderer.cpp │ │ └── juce_LowLevelGraphicsSoftwareRenderer.h │ ├── detail │ │ ├── juce_JustifiedText.cpp │ │ ├── juce_JustifiedText.h │ │ ├── juce_Ranges.cpp │ │ ├── juce_Ranges.h │ │ ├── juce_ShapedText.cpp │ │ ├── juce_ShapedText.h │ │ ├── juce_SimpleShapedText.cpp │ │ ├── juce_SimpleShapedText.h │ │ └── juce_Unicode.h │ ├── effects │ │ ├── juce_DropShadowEffect.cpp │ │ ├── juce_DropShadowEffect.h │ │ ├── juce_GlowEffect.cpp │ │ ├── juce_GlowEffect.h │ │ └── juce_ImageEffectFilter.h │ ├── fonts │ │ ├── harfbuzz │ │ │ ├── COPYING │ │ │ ├── OT │ │ │ │ ├── Color │ │ │ │ │ ├── CBDT │ │ │ │ │ │ └── CBDT.hh │ │ │ │ │ ├── COLR │ │ │ │ │ │ ├── COLR.hh │ │ │ │ │ │ └── colrv1-closure.hh │ │ │ │ │ ├── CPAL │ │ │ │ │ │ └── CPAL.hh │ │ │ │ │ ├── sbix │ │ │ │ │ │ └── sbix.hh │ │ │ │ │ └── svg │ │ │ │ │ │ └── svg.hh │ │ │ │ ├── Layout │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── Coverage.hh │ │ │ │ │ │ ├── CoverageFormat1.hh │ │ │ │ │ │ ├── CoverageFormat2.hh │ │ │ │ │ │ └── RangeRecord.hh │ │ │ │ │ ├── GDEF │ │ │ │ │ │ └── GDEF.hh │ │ │ │ │ ├── GPOS │ │ │ │ │ │ ├── Anchor.hh │ │ │ │ │ │ ├── AnchorFormat1.hh │ │ │ │ │ │ ├── AnchorFormat2.hh │ │ │ │ │ │ ├── AnchorFormat3.hh │ │ │ │ │ │ ├── AnchorMatrix.hh │ │ │ │ │ │ ├── ChainContextPos.hh │ │ │ │ │ │ ├── Common.hh │ │ │ │ │ │ ├── ContextPos.hh │ │ │ │ │ │ ├── CursivePos.hh │ │ │ │ │ │ ├── CursivePosFormat1.hh │ │ │ │ │ │ ├── ExtensionPos.hh │ │ │ │ │ │ ├── GPOS.hh │ │ │ │ │ │ ├── LigatureArray.hh │ │ │ │ │ │ ├── MarkArray.hh │ │ │ │ │ │ ├── MarkBasePos.hh │ │ │ │ │ │ ├── MarkBasePosFormat1.hh │ │ │ │ │ │ ├── MarkLigPos.hh │ │ │ │ │ │ ├── MarkLigPosFormat1.hh │ │ │ │ │ │ ├── MarkMarkPos.hh │ │ │ │ │ │ ├── MarkMarkPosFormat1.hh │ │ │ │ │ │ ├── MarkRecord.hh │ │ │ │ │ │ ├── PairPos.hh │ │ │ │ │ │ ├── PairPosFormat1.hh │ │ │ │ │ │ ├── PairPosFormat2.hh │ │ │ │ │ │ ├── PairSet.hh │ │ │ │ │ │ ├── PairValueRecord.hh │ │ │ │ │ │ ├── PosLookup.hh │ │ │ │ │ │ ├── PosLookupSubTable.hh │ │ │ │ │ │ ├── SinglePos.hh │ │ │ │ │ │ ├── SinglePosFormat1.hh │ │ │ │ │ │ ├── SinglePosFormat2.hh │ │ │ │ │ │ └── ValueFormat.hh │ │ │ │ │ ├── GSUB │ │ │ │ │ │ ├── AlternateSet.hh │ │ │ │ │ │ ├── AlternateSubst.hh │ │ │ │ │ │ ├── AlternateSubstFormat1.hh │ │ │ │ │ │ ├── ChainContextSubst.hh │ │ │ │ │ │ ├── Common.hh │ │ │ │ │ │ ├── ContextSubst.hh │ │ │ │ │ │ ├── ExtensionSubst.hh │ │ │ │ │ │ ├── GSUB.hh │ │ │ │ │ │ ├── Ligature.hh │ │ │ │ │ │ ├── LigatureSet.hh │ │ │ │ │ │ ├── LigatureSubst.hh │ │ │ │ │ │ ├── LigatureSubstFormat1.hh │ │ │ │ │ │ ├── MultipleSubst.hh │ │ │ │ │ │ ├── MultipleSubstFormat1.hh │ │ │ │ │ │ ├── ReverseChainSingleSubst.hh │ │ │ │ │ │ ├── ReverseChainSingleSubstFormat1.hh │ │ │ │ │ │ ├── Sequence.hh │ │ │ │ │ │ ├── SingleSubst.hh │ │ │ │ │ │ ├── SingleSubstFormat1.hh │ │ │ │ │ │ ├── SingleSubstFormat2.hh │ │ │ │ │ │ ├── SubstLookup.hh │ │ │ │ │ │ └── SubstLookupSubTable.hh │ │ │ │ │ └── types.hh │ │ │ │ ├── Var │ │ │ │ │ └── VARC │ │ │ │ │ │ ├── VARC.cc │ │ │ │ │ │ ├── VARC.hh │ │ │ │ │ │ └── coord-setter.hh │ │ │ │ ├── glyf │ │ │ │ │ ├── CompositeGlyph.hh │ │ │ │ │ ├── Glyph.hh │ │ │ │ │ ├── GlyphHeader.hh │ │ │ │ │ ├── SimpleGlyph.hh │ │ │ │ │ ├── SubsetGlyph.hh │ │ │ │ │ ├── composite-iter.hh │ │ │ │ │ ├── glyf-helpers.hh │ │ │ │ │ ├── glyf.hh │ │ │ │ │ ├── loca.hh │ │ │ │ │ └── path-builder.hh │ │ │ │ └── name │ │ │ │ │ └── name.hh │ │ │ ├── failing-alloc.c │ │ │ ├── harfbuzz-subset.cc │ │ │ ├── harfbuzz.cc │ │ │ ├── hb-aat-layout-ankr-table.hh │ │ │ ├── hb-aat-layout-bsln-table.hh │ │ │ ├── hb-aat-layout-common.hh │ │ │ ├── hb-aat-layout-feat-table.hh │ │ │ ├── hb-aat-layout-just-table.hh │ │ │ ├── hb-aat-layout-kerx-table.hh │ │ │ ├── hb-aat-layout-morx-table.hh │ │ │ ├── hb-aat-layout-opbd-table.hh │ │ │ ├── hb-aat-layout-trak-table.hh │ │ │ ├── hb-aat-layout.cc │ │ │ ├── hb-aat-layout.h │ │ │ ├── hb-aat-layout.hh │ │ │ ├── hb-aat-ltag-table.hh │ │ │ ├── hb-aat-map.cc │ │ │ ├── hb-aat-map.hh │ │ │ ├── hb-aat.h │ │ │ ├── hb-algs.hh │ │ │ ├── hb-array.hh │ │ │ ├── hb-atomic.hh │ │ │ ├── hb-bimap.hh │ │ │ ├── hb-bit-page.hh │ │ │ ├── hb-bit-set-invertible.hh │ │ │ ├── hb-bit-set.hh │ │ │ ├── hb-blob.cc │ │ │ ├── hb-blob.h │ │ │ ├── hb-blob.hh │ │ │ ├── hb-buffer-deserialize-json.hh │ │ │ ├── hb-buffer-deserialize-text-glyphs.hh │ │ │ ├── hb-buffer-deserialize-text-unicode.hh │ │ │ ├── hb-buffer-serialize.cc │ │ │ ├── hb-buffer-verify.cc │ │ │ ├── hb-buffer.cc │ │ │ ├── hb-buffer.h │ │ │ ├── hb-buffer.hh │ │ │ ├── hb-cache.hh │ │ │ ├── hb-cff-interp-common.hh │ │ │ ├── hb-cff-interp-cs-common.hh │ │ │ ├── hb-cff-interp-dict-common.hh │ │ │ ├── hb-cff1-interp-cs.hh │ │ │ ├── hb-cff2-interp-cs.hh │ │ │ ├── hb-common.cc │ │ │ ├── hb-common.h │ │ │ ├── hb-config.hh │ │ │ ├── hb-coretext-font.cc │ │ │ ├── hb-coretext-shape.cc │ │ │ ├── hb-coretext.h │ │ │ ├── hb-cplusplus.hh │ │ │ ├── hb-debug.hh │ │ │ ├── hb-deprecated.h │ │ │ ├── hb-directwrite.cc │ │ │ ├── hb-directwrite.h │ │ │ ├── hb-dispatch.hh │ │ │ ├── hb-draw.cc │ │ │ ├── hb-draw.h │ │ │ ├── hb-draw.hh │ │ │ ├── hb-face-builder.cc │ │ │ ├── hb-face.cc │ │ │ ├── hb-face.h │ │ │ ├── hb-face.hh │ │ │ ├── hb-fallback-shape.cc │ │ │ ├── hb-font.cc │ │ │ ├── hb-font.h │ │ │ ├── hb-font.hh │ │ │ ├── hb-ft-colr.hh │ │ │ ├── hb-ft.cc │ │ │ ├── hb-ft.h │ │ │ ├── hb-gdi.cc │ │ │ ├── hb-gdi.h │ │ │ ├── hb-geometry.hh │ │ │ ├── hb-glib.cc │ │ │ ├── hb-glib.h │ │ │ ├── hb-gobject-structs.cc │ │ │ ├── hb-gobject-structs.h │ │ │ ├── hb-gobject.h │ │ │ ├── hb-graphite2.cc │ │ │ ├── hb-graphite2.h │ │ │ ├── hb-icu.cc │ │ │ ├── hb-icu.h │ │ │ ├── hb-iter.hh │ │ │ ├── hb-kern.hh │ │ │ ├── hb-limits.hh │ │ │ ├── hb-machinery.hh │ │ │ ├── hb-map.cc │ │ │ ├── hb-map.h │ │ │ ├── hb-map.hh │ │ │ ├── hb-meta.hh │ │ │ ├── hb-ms-feature-ranges.hh │ │ │ ├── hb-multimap.hh │ │ │ ├── hb-mutex.hh │ │ │ ├── hb-null.hh │ │ │ ├── hb-number-parser.hh │ │ │ ├── hb-number.cc │ │ │ ├── hb-number.hh │ │ │ ├── hb-object.hh │ │ │ ├── hb-open-file.hh │ │ │ ├── hb-open-type.hh │ │ │ ├── hb-ot-cff-common.hh │ │ │ ├── hb-ot-cff1-std-str.hh │ │ │ ├── hb-ot-cff1-table.cc │ │ │ ├── hb-ot-cff1-table.hh │ │ │ ├── hb-ot-cff2-table.cc │ │ │ ├── hb-ot-cff2-table.hh │ │ │ ├── hb-ot-cmap-table.hh │ │ │ ├── hb-ot-color.cc │ │ │ ├── hb-ot-color.h │ │ │ ├── hb-ot-deprecated.h │ │ │ ├── hb-ot-face-table-list.hh │ │ │ ├── hb-ot-face.cc │ │ │ ├── hb-ot-face.hh │ │ │ ├── hb-ot-font.cc │ │ │ ├── hb-ot-font.h │ │ │ ├── hb-ot-gasp-table.hh │ │ │ ├── hb-ot-glyf-table.hh │ │ │ ├── hb-ot-hdmx-table.hh │ │ │ ├── hb-ot-head-table.hh │ │ │ ├── hb-ot-hhea-table.hh │ │ │ ├── hb-ot-hmtx-table.hh │ │ │ ├── hb-ot-kern-table.hh │ │ │ ├── hb-ot-layout-base-table.hh │ │ │ ├── hb-ot-layout-common.hh │ │ │ ├── hb-ot-layout-gdef-table.hh │ │ │ ├── hb-ot-layout-gpos-table.hh │ │ │ ├── hb-ot-layout-gsub-table.hh │ │ │ ├── hb-ot-layout-gsubgpos.hh │ │ │ ├── hb-ot-layout-jstf-table.hh │ │ │ ├── hb-ot-layout.cc │ │ │ ├── hb-ot-layout.h │ │ │ ├── hb-ot-layout.hh │ │ │ ├── hb-ot-map.cc │ │ │ ├── hb-ot-map.hh │ │ │ ├── hb-ot-math-table.hh │ │ │ ├── hb-ot-math.cc │ │ │ ├── hb-ot-math.h │ │ │ ├── hb-ot-maxp-table.hh │ │ │ ├── hb-ot-meta-table.hh │ │ │ ├── hb-ot-meta.cc │ │ │ ├── hb-ot-meta.h │ │ │ ├── hb-ot-metrics.cc │ │ │ ├── hb-ot-metrics.h │ │ │ ├── hb-ot-metrics.hh │ │ │ ├── hb-ot-name-language-static.hh │ │ │ ├── hb-ot-name-language.hh │ │ │ ├── hb-ot-name-table.hh │ │ │ ├── hb-ot-name.cc │ │ │ ├── hb-ot-name.h │ │ │ ├── hb-ot-os2-table.hh │ │ │ ├── hb-ot-os2-unicode-ranges.hh │ │ │ ├── hb-ot-post-macroman.hh │ │ │ ├── hb-ot-post-table-v2subset.hh │ │ │ ├── hb-ot-post-table.hh │ │ │ ├── hb-ot-shape-fallback.cc │ │ │ ├── hb-ot-shape-fallback.hh │ │ │ ├── hb-ot-shape-normalize.cc │ │ │ ├── hb-ot-shape-normalize.hh │ │ │ ├── hb-ot-shape.cc │ │ │ ├── hb-ot-shape.h │ │ │ ├── hb-ot-shape.hh │ │ │ ├── hb-ot-shaper-arabic-fallback.hh │ │ │ ├── hb-ot-shaper-arabic-joining-list.hh │ │ │ ├── hb-ot-shaper-arabic-pua.hh │ │ │ ├── hb-ot-shaper-arabic-table.hh │ │ │ ├── hb-ot-shaper-arabic-win1256.hh │ │ │ ├── hb-ot-shaper-arabic.cc │ │ │ ├── hb-ot-shaper-arabic.hh │ │ │ ├── hb-ot-shaper-default.cc │ │ │ ├── hb-ot-shaper-hangul.cc │ │ │ ├── hb-ot-shaper-hebrew.cc │ │ │ ├── hb-ot-shaper-indic-machine.hh │ │ │ ├── hb-ot-shaper-indic-table.cc │ │ │ ├── hb-ot-shaper-indic.cc │ │ │ ├── hb-ot-shaper-indic.hh │ │ │ ├── hb-ot-shaper-khmer-machine.hh │ │ │ ├── hb-ot-shaper-khmer.cc │ │ │ ├── hb-ot-shaper-myanmar-machine.hh │ │ │ ├── hb-ot-shaper-myanmar.cc │ │ │ ├── hb-ot-shaper-syllabic.cc │ │ │ ├── hb-ot-shaper-syllabic.hh │ │ │ ├── hb-ot-shaper-thai.cc │ │ │ ├── hb-ot-shaper-use-machine.hh │ │ │ ├── hb-ot-shaper-use-table.hh │ │ │ ├── hb-ot-shaper-use.cc │ │ │ ├── hb-ot-shaper-vowel-constraints.cc │ │ │ ├── hb-ot-shaper-vowel-constraints.hh │ │ │ ├── hb-ot-shaper.hh │ │ │ ├── hb-ot-stat-table.hh │ │ │ ├── hb-ot-tag-table.hh │ │ │ ├── hb-ot-tag.cc │ │ │ ├── hb-ot-var-avar-table.hh │ │ │ ├── hb-ot-var-common.hh │ │ │ ├── hb-ot-var-cvar-table.hh │ │ │ ├── hb-ot-var-fvar-table.hh │ │ │ ├── hb-ot-var-gvar-table.hh │ │ │ ├── hb-ot-var-hvar-table.hh │ │ │ ├── hb-ot-var-mvar-table.hh │ │ │ ├── hb-ot-var-varc-table.hh │ │ │ ├── hb-ot-var.cc │ │ │ ├── hb-ot-var.h │ │ │ ├── hb-ot-vorg-table.hh │ │ │ ├── hb-ot.h │ │ │ ├── hb-outline.cc │ │ │ ├── hb-outline.hh │ │ │ ├── hb-paint-extents.cc │ │ │ ├── hb-paint-extents.hh │ │ │ ├── hb-paint.cc │ │ │ ├── hb-paint.h │ │ │ ├── hb-paint.hh │ │ │ ├── hb-pool.hh │ │ │ ├── hb-priority-queue.hh │ │ │ ├── hb-repacker.hh │ │ │ ├── hb-sanitize.hh │ │ │ ├── hb-serialize.hh │ │ │ ├── hb-set-digest.hh │ │ │ ├── hb-set.cc │ │ │ ├── hb-set.h │ │ │ ├── hb-set.hh │ │ │ ├── hb-shape-plan.cc │ │ │ ├── hb-shape-plan.h │ │ │ ├── hb-shape-plan.hh │ │ │ ├── hb-shape.cc │ │ │ ├── hb-shape.h │ │ │ ├── hb-shaper-impl.hh │ │ │ ├── hb-shaper-list.hh │ │ │ ├── hb-shaper.cc │ │ │ ├── hb-shaper.hh │ │ │ ├── hb-static.cc │ │ │ ├── hb-string-array.hh │ │ │ ├── hb-style.cc │ │ │ ├── hb-style.h │ │ │ ├── hb-subset-accelerator.hh │ │ │ ├── hb-subset-cff-common.cc │ │ │ ├── hb-subset-cff-common.hh │ │ │ ├── hb-subset-cff1.cc │ │ │ ├── hb-subset-cff2.cc │ │ │ ├── hb-subset-input.cc │ │ │ ├── hb-subset-input.hh │ │ │ ├── hb-subset-instancer-iup.cc │ │ │ ├── hb-subset-instancer-iup.hh │ │ │ ├── hb-subset-instancer-solver.cc │ │ │ ├── hb-subset-instancer-solver.hh │ │ │ ├── hb-subset-plan-member-list.hh │ │ │ ├── hb-subset-plan.cc │ │ │ ├── hb-subset-plan.hh │ │ │ ├── hb-subset-repacker.cc │ │ │ ├── hb-subset-repacker.h │ │ │ ├── hb-subset.cc │ │ │ ├── hb-subset.h │ │ │ ├── hb-subset.hh │ │ │ ├── hb-ucd-table.hh │ │ │ ├── hb-ucd.cc │ │ │ ├── hb-unicode-emoji-table.hh │ │ │ ├── hb-unicode.cc │ │ │ ├── hb-unicode.h │ │ │ ├── hb-unicode.hh │ │ │ ├── hb-uniscribe.cc │ │ │ ├── hb-uniscribe.h │ │ │ ├── hb-utf.hh │ │ │ ├── hb-vector.hh │ │ │ ├── hb-version.h │ │ │ ├── hb-wasm-api-blob.hh │ │ │ ├── hb-wasm-api-buffer.hh │ │ │ ├── hb-wasm-api-common.hh │ │ │ ├── hb-wasm-api-face.hh │ │ │ ├── hb-wasm-api-font.hh │ │ │ ├── hb-wasm-api-list.hh │ │ │ ├── hb-wasm-api-shape.hh │ │ │ ├── hb-wasm-api.cc │ │ │ ├── hb-wasm-api.h │ │ │ ├── hb-wasm-api.hh │ │ │ ├── hb-wasm-shape.cc │ │ │ ├── hb.h │ │ │ └── hb.hh │ │ ├── juce_AttributedString.cpp │ │ ├── juce_AttributedString.h │ │ ├── juce_Font.cpp │ │ ├── juce_Font.h │ │ ├── juce_FontOptions.cpp │ │ ├── juce_FontOptions.h │ │ ├── juce_FunctionPointerDestructor.h │ │ ├── juce_GlyphArrangement.cpp │ │ ├── juce_GlyphArrangement.h │ │ ├── juce_LruCache.h │ │ ├── juce_TextLayout.cpp │ │ ├── juce_TextLayout.h │ │ ├── juce_Typeface.cpp │ │ ├── juce_Typeface.h │ │ ├── juce_TypefaceFileCache.h │ │ └── juce_TypefaceTestData.cpp │ ├── geometry │ │ ├── juce_AffineTransform.cpp │ │ ├── juce_AffineTransform.h │ │ ├── juce_BorderSize.h │ │ ├── juce_EdgeTable.cpp │ │ ├── juce_EdgeTable.h │ │ ├── juce_Line.h │ │ ├── juce_Parallelogram.h │ │ ├── juce_Parallelogram_test.cpp │ │ ├── juce_Path.cpp │ │ ├── juce_Path.h │ │ ├── juce_PathIterator.cpp │ │ ├── juce_PathIterator.h │ │ ├── juce_PathStrokeType.cpp │ │ ├── juce_PathStrokeType.h │ │ ├── juce_Point.h │ │ ├── juce_Rectangle.h │ │ ├── juce_RectangleList.h │ │ └── juce_Rectangle_test.cpp │ ├── image_formats │ │ ├── jpglib │ │ │ ├── README │ │ │ ├── cderror.h │ │ │ ├── changes to libjpeg for JUCE.txt │ │ │ ├── jcapimin.c │ │ │ ├── jcapistd.c │ │ │ ├── jccoefct.c │ │ │ ├── jccolor.c │ │ │ ├── jcdctmgr.c │ │ │ ├── jchuff.c │ │ │ ├── jchuff.h │ │ │ ├── jcinit.c │ │ │ ├── jcmainct.c │ │ │ ├── jcmarker.c │ │ │ ├── jcmaster.c │ │ │ ├── jcomapi.c │ │ │ ├── jconfig.h │ │ │ ├── jcparam.c │ │ │ ├── jcphuff.c │ │ │ ├── jcprepct.c │ │ │ ├── jcsample.c │ │ │ ├── jctrans.c │ │ │ ├── jdapimin.c │ │ │ ├── jdapistd.c │ │ │ ├── jdatasrc.c │ │ │ ├── jdcoefct.c │ │ │ ├── jdcolor.c │ │ │ ├── jdct.h │ │ │ ├── jddctmgr.c │ │ │ ├── jdhuff.c │ │ │ ├── jdhuff.h │ │ │ ├── jdinput.c │ │ │ ├── jdmainct.c │ │ │ ├── jdmarker.c │ │ │ ├── jdmaster.c │ │ │ ├── jdmerge.c │ │ │ ├── jdphuff.c │ │ │ ├── jdpostct.c │ │ │ ├── jdsample.c │ │ │ ├── jdtrans.c │ │ │ ├── jerror.c │ │ │ ├── jerror.h │ │ │ ├── jfdctflt.c │ │ │ ├── jfdctfst.c │ │ │ ├── jfdctint.c │ │ │ ├── jidctflt.c │ │ │ ├── jidctfst.c │ │ │ ├── jidctint.c │ │ │ ├── jidctred.c │ │ │ ├── jinclude.h │ │ │ ├── jmemmgr.c │ │ │ ├── jmemnobs.c │ │ │ ├── jmemsys.h │ │ │ ├── jmorecfg.h │ │ │ ├── jpegint.h │ │ │ ├── jpeglib.h │ │ │ ├── jquant1.c │ │ │ ├── jquant2.c │ │ │ ├── jutils.c │ │ │ ├── jversion.h │ │ │ ├── transupp.c │ │ │ └── transupp.h │ │ ├── juce_GIFLoader.cpp │ │ ├── juce_JPEGLoader.cpp │ │ ├── juce_PNGLoader.cpp │ │ └── pnglib │ │ │ ├── LICENSE │ │ │ ├── libpng_readme.txt │ │ │ ├── png.c │ │ │ ├── png.h │ │ │ ├── pngconf.h │ │ │ ├── pngdebug.h │ │ │ ├── pngerror.c │ │ │ ├── pngget.c │ │ │ ├── pnginfo.h │ │ │ ├── pngmem.c │ │ │ ├── pngpread.c │ │ │ ├── pngpriv.h │ │ │ ├── pngread.c │ │ │ ├── pngrio.c │ │ │ ├── pngrtran.c │ │ │ ├── pngrutil.c │ │ │ ├── pngset.c │ │ │ ├── pngstruct.h │ │ │ ├── pngtrans.c │ │ │ ├── pngwio.c │ │ │ ├── pngwrite.c │ │ │ ├── pngwtran.c │ │ │ └── pngwutil.c │ ├── images │ │ ├── juce_Image.cpp │ │ ├── juce_Image.h │ │ ├── juce_ImageCache.cpp │ │ ├── juce_ImageCache.h │ │ ├── juce_ImageConvolutionKernel.cpp │ │ ├── juce_ImageConvolutionKernel.h │ │ ├── juce_ImageFileFormat.cpp │ │ ├── juce_ImageFileFormat.h │ │ └── juce_ScaledImage.h │ ├── juce_graphics.cpp │ ├── juce_graphics.h │ ├── juce_graphics.mm │ ├── juce_graphics_Harfbuzz.cpp │ ├── juce_graphics_Sheenbidi.c │ ├── native │ │ ├── juce_CoreGraphicsContext_mac.h │ │ ├── juce_CoreGraphicsContext_mac.mm │ │ ├── juce_CoreGraphicsHelpers_mac.h │ │ ├── juce_Direct2DGraphicsContext_windows.cpp │ │ ├── juce_Direct2DGraphicsContext_windows.h │ │ ├── juce_Direct2DHelpers_windows.cpp │ │ ├── juce_Direct2DHwndContext_windows.cpp │ │ ├── juce_Direct2DHwndContext_windows.h │ │ ├── juce_Direct2DImageContext_windows.cpp │ │ ├── juce_Direct2DImageContext_windows.h │ │ ├── juce_Direct2DImage_windows.cpp │ │ ├── juce_Direct2DImage_windows.h │ │ ├── juce_Direct2DMetrics_windows.cpp │ │ ├── juce_Direct2DMetrics_windows.h │ │ ├── juce_Direct2DPixelDataPage_windows.h │ │ ├── juce_Direct2DResources_windows.cpp │ │ ├── juce_DirectWriteTypeface_windows.cpp │ │ ├── juce_DirectX_windows.h │ │ ├── juce_EventTracing.h │ │ ├── juce_Fonts_android.cpp │ │ ├── juce_Fonts_freetype.cpp │ │ ├── juce_Fonts_linux.cpp │ │ ├── juce_Fonts_mac.mm │ │ ├── juce_GraphicsContext_android.cpp │ │ ├── juce_IconHelpers_android.cpp │ │ ├── juce_IconHelpers_linux.cpp │ │ ├── juce_IconHelpers_mac.cpp │ │ ├── juce_IconHelpers_windows.cpp │ │ └── juce_RenderingHelpers.h │ ├── placement │ │ ├── juce_Justification.h │ │ ├── juce_RectanglePlacement.cpp │ │ └── juce_RectanglePlacement.h │ └── unicode │ │ ├── juce_Unicode.cpp │ │ ├── juce_UnicodeBidi.cpp │ │ ├── juce_UnicodeGenerated.cpp │ │ ├── juce_UnicodeLine.cpp │ │ ├── juce_UnicodeScript.cpp │ │ ├── juce_UnicodeUtils.cpp │ │ └── sheenbidi │ │ ├── Headers │ │ ├── SBAlgorithm.h │ │ ├── SBBase.h │ │ ├── SBBidiType.h │ │ ├── SBCodepoint.h │ │ ├── SBCodepointSequence.h │ │ ├── SBConfig.h │ │ ├── SBGeneralCategory.h │ │ ├── SBLine.h │ │ ├── SBMirrorLocator.h │ │ ├── SBParagraph.h │ │ ├── SBRun.h │ │ ├── SBScript.h │ │ ├── SBScriptLocator.h │ │ └── SheenBidi.h │ │ ├── JUCE_CHANGES.txt │ │ ├── LICENSE │ │ └── Source │ │ ├── BidiChain.c │ │ ├── BidiChain.h │ │ ├── BidiTypeLookup.c │ │ ├── BidiTypeLookup.h │ │ ├── BracketQueue.c │ │ ├── BracketQueue.h │ │ ├── BracketType.h │ │ ├── GeneralCategoryLookup.c │ │ ├── GeneralCategoryLookup.h │ │ ├── IsolatingRun.c │ │ ├── IsolatingRun.h │ │ ├── LevelRun.c │ │ ├── LevelRun.h │ │ ├── PairingLookup.c │ │ ├── PairingLookup.h │ │ ├── RunExtrema.h │ │ ├── RunKind.h │ │ ├── RunQueue.c │ │ ├── RunQueue.h │ │ ├── SBAlgorithm.c │ │ ├── SBAlgorithm.h │ │ ├── SBAssert.h │ │ ├── SBBase.c │ │ ├── SBBase.h │ │ ├── SBCodepointSequence.c │ │ ├── SBCodepointSequence.h │ │ ├── SBLine.c │ │ ├── SBLine.h │ │ ├── SBLog.c │ │ ├── SBLog.h │ │ ├── SBMirrorLocator.c │ │ ├── SBMirrorLocator.h │ │ ├── SBParagraph.c │ │ ├── SBParagraph.h │ │ ├── SBScriptLocator.c │ │ ├── SBScriptLocator.h │ │ ├── ScriptLookup.c │ │ ├── ScriptLookup.h │ │ ├── ScriptStack.c │ │ ├── ScriptStack.h │ │ ├── SheenBidi.c │ │ ├── StatusStack.c │ │ └── StatusStack.h │ ├── juce_gui_basics │ ├── accessibility │ │ ├── enums │ │ │ ├── juce_AccessibilityActions.h │ │ │ ├── juce_AccessibilityEvent.h │ │ │ └── juce_AccessibilityRole.h │ │ ├── interfaces │ │ │ ├── juce_AccessibilityCellInterface.h │ │ │ ├── juce_AccessibilityTableInterface.h │ │ │ ├── juce_AccessibilityTextInterface.h │ │ │ └── juce_AccessibilityValueInterface.h │ │ ├── juce_AccessibilityHandler.cpp │ │ ├── juce_AccessibilityHandler.h │ │ └── juce_AccessibilityState.h │ ├── application │ │ ├── juce_Application.cpp │ │ └── juce_Application.h │ ├── buttons │ │ ├── juce_ArrowButton.cpp │ │ ├── juce_ArrowButton.h │ │ ├── juce_Button.cpp │ │ ├── juce_Button.h │ │ ├── juce_DrawableButton.cpp │ │ ├── juce_DrawableButton.h │ │ ├── juce_HyperlinkButton.cpp │ │ ├── juce_HyperlinkButton.h │ │ ├── juce_ImageButton.cpp │ │ ├── juce_ImageButton.h │ │ ├── juce_ShapeButton.cpp │ │ ├── juce_ShapeButton.h │ │ ├── juce_TextButton.cpp │ │ ├── juce_TextButton.h │ │ ├── juce_ToggleButton.cpp │ │ ├── juce_ToggleButton.h │ │ ├── juce_ToolbarButton.cpp │ │ └── juce_ToolbarButton.h │ ├── commands │ │ ├── juce_ApplicationCommandID.h │ │ ├── juce_ApplicationCommandInfo.cpp │ │ ├── juce_ApplicationCommandInfo.h │ │ ├── juce_ApplicationCommandManager.cpp │ │ ├── juce_ApplicationCommandManager.h │ │ ├── juce_ApplicationCommandTarget.cpp │ │ ├── juce_ApplicationCommandTarget.h │ │ ├── juce_KeyPressMappingSet.cpp │ │ └── juce_KeyPressMappingSet.h │ ├── components │ │ ├── juce_CachedComponentImage.h │ │ ├── juce_Component.cpp │ │ ├── juce_Component.h │ │ ├── juce_ComponentListener.cpp │ │ ├── juce_ComponentListener.h │ │ ├── juce_ComponentTraverser.h │ │ ├── juce_FocusTraverser.cpp │ │ ├── juce_FocusTraverser.h │ │ ├── juce_ModalComponentManager.cpp │ │ └── juce_ModalComponentManager.h │ ├── desktop │ │ ├── juce_Desktop.cpp │ │ ├── juce_Desktop.h │ │ ├── juce_Displays.cpp │ │ └── juce_Displays.h │ ├── detail │ │ ├── juce_AccessibilityHelpers.cpp │ │ ├── juce_AccessibilityHelpers.h │ │ ├── juce_AlertWindowHelpers.h │ │ ├── juce_ButtonAccessibilityHandler.h │ │ ├── juce_ComponentHelpers.h │ │ ├── juce_ComponentPeerHelpers.cpp │ │ ├── juce_ComponentPeerHelpers.h │ │ ├── juce_CustomMouseCursorInfo.h │ │ ├── juce_FocusHelpers.h │ │ ├── juce_FocusRestorer.h │ │ ├── juce_LookAndFeelHelpers.h │ │ ├── juce_MouseInputSourceImpl.h │ │ ├── juce_MouseInputSourceList.h │ │ ├── juce_PointerState.h │ │ ├── juce_ScalingHelpers.h │ │ ├── juce_ScopedContentSharerImpl.h │ │ ├── juce_ScopedContentSharerInterface.h │ │ ├── juce_ScopedMessageBoxImpl.h │ │ ├── juce_ScopedMessageBoxInterface.h │ │ ├── juce_StandardCachedComponentImage.h │ │ ├── juce_ToolbarItemDragAndDropOverlayComponent.h │ │ ├── juce_TopLevelWindowManager.h │ │ ├── juce_ViewportHelpers.h │ │ └── juce_WindowingHelpers.h │ ├── drawables │ │ ├── juce_Drawable.cpp │ │ ├── juce_Drawable.h │ │ ├── juce_DrawableComposite.cpp │ │ ├── juce_DrawableComposite.h │ │ ├── juce_DrawableImage.cpp │ │ ├── juce_DrawableImage.h │ │ ├── juce_DrawablePath.cpp │ │ ├── juce_DrawablePath.h │ │ ├── juce_DrawableRectangle.cpp │ │ ├── juce_DrawableRectangle.h │ │ ├── juce_DrawableShape.cpp │ │ ├── juce_DrawableShape.h │ │ ├── juce_DrawableText.cpp │ │ ├── juce_DrawableText.h │ │ └── juce_SVGParser.cpp │ ├── filebrowser │ │ ├── juce_ContentSharer.cpp │ │ ├── juce_ContentSharer.h │ │ ├── juce_DirectoryContentsDisplayComponent.cpp │ │ ├── juce_DirectoryContentsDisplayComponent.h │ │ ├── juce_DirectoryContentsList.cpp │ │ ├── juce_DirectoryContentsList.h │ │ ├── juce_FileBrowserComponent.cpp │ │ ├── juce_FileBrowserComponent.h │ │ ├── juce_FileBrowserListener.h │ │ ├── juce_FileChooser.cpp │ │ ├── juce_FileChooser.h │ │ ├── juce_FileChooserDialogBox.cpp │ │ ├── juce_FileChooserDialogBox.h │ │ ├── juce_FileListComponent.cpp │ │ ├── juce_FileListComponent.h │ │ ├── juce_FilePreviewComponent.h │ │ ├── juce_FileSearchPathListComponent.cpp │ │ ├── juce_FileSearchPathListComponent.h │ │ ├── juce_FileTreeComponent.cpp │ │ ├── juce_FileTreeComponent.h │ │ ├── juce_FilenameComponent.cpp │ │ ├── juce_FilenameComponent.h │ │ ├── juce_ImagePreviewComponent.cpp │ │ └── juce_ImagePreviewComponent.h │ ├── juce_gui_basics.cpp │ ├── juce_gui_basics.h │ ├── juce_gui_basics.mm │ ├── keyboard │ │ ├── juce_CaretComponent.cpp │ │ ├── juce_CaretComponent.h │ │ ├── juce_KeyListener.cpp │ │ ├── juce_KeyListener.h │ │ ├── juce_KeyPress.cpp │ │ ├── juce_KeyPress.h │ │ ├── juce_KeyboardFocusTraverser.cpp │ │ ├── juce_KeyboardFocusTraverser.h │ │ ├── juce_ModifierKeys.cpp │ │ ├── juce_ModifierKeys.h │ │ ├── juce_SystemClipboard.h │ │ ├── juce_TextEditorKeyMapper.h │ │ └── juce_TextInputTarget.h │ ├── layout │ │ ├── juce_AnimatedPosition.h │ │ ├── juce_AnimatedPositionBehaviours.h │ │ ├── juce_BorderedComponentBoundsConstrainer.cpp │ │ ├── juce_BorderedComponentBoundsConstrainer.h │ │ ├── juce_ComponentAnimator.cpp │ │ ├── juce_ComponentAnimator.h │ │ ├── juce_ComponentBoundsConstrainer.cpp │ │ ├── juce_ComponentBoundsConstrainer.h │ │ ├── juce_ComponentBuilder.cpp │ │ ├── juce_ComponentBuilder.h │ │ ├── juce_ComponentMovementWatcher.cpp │ │ ├── juce_ComponentMovementWatcher.h │ │ ├── juce_ConcertinaPanel.cpp │ │ ├── juce_ConcertinaPanel.h │ │ ├── juce_FlexBox.cpp │ │ ├── juce_FlexBox.h │ │ ├── juce_FlexItem.h │ │ ├── juce_Grid.cpp │ │ ├── juce_Grid.h │ │ ├── juce_GridItem.cpp │ │ ├── juce_GridItem.h │ │ ├── juce_GroupComponent.cpp │ │ ├── juce_GroupComponent.h │ │ ├── juce_MultiDocumentPanel.cpp │ │ ├── juce_MultiDocumentPanel.h │ │ ├── juce_ResizableBorderComponent.cpp │ │ ├── juce_ResizableBorderComponent.h │ │ ├── juce_ResizableCornerComponent.cpp │ │ ├── juce_ResizableCornerComponent.h │ │ ├── juce_ResizableEdgeComponent.cpp │ │ ├── juce_ResizableEdgeComponent.h │ │ ├── juce_ScrollBar.cpp │ │ ├── juce_ScrollBar.h │ │ ├── juce_SidePanel.cpp │ │ ├── juce_SidePanel.h │ │ ├── juce_StretchableLayoutManager.cpp │ │ ├── juce_StretchableLayoutManager.h │ │ ├── juce_StretchableLayoutResizerBar.cpp │ │ ├── juce_StretchableLayoutResizerBar.h │ │ ├── juce_StretchableObjectResizer.cpp │ │ ├── juce_StretchableObjectResizer.h │ │ ├── juce_TabbedButtonBar.cpp │ │ ├── juce_TabbedButtonBar.h │ │ ├── juce_TabbedComponent.cpp │ │ ├── juce_TabbedComponent.h │ │ ├── juce_Viewport.cpp │ │ └── juce_Viewport.h │ ├── lookandfeel │ │ ├── juce_LookAndFeel.cpp │ │ ├── juce_LookAndFeel.h │ │ ├── juce_LookAndFeel_V1.cpp │ │ ├── juce_LookAndFeel_V1.h │ │ ├── juce_LookAndFeel_V2.cpp │ │ ├── juce_LookAndFeel_V2.h │ │ ├── juce_LookAndFeel_V3.cpp │ │ ├── juce_LookAndFeel_V3.h │ │ ├── juce_LookAndFeel_V4.cpp │ │ └── juce_LookAndFeel_V4.h │ ├── menus │ │ ├── juce_BurgerMenuComponent.cpp │ │ ├── juce_BurgerMenuComponent.h │ │ ├── juce_MenuBarComponent.cpp │ │ ├── juce_MenuBarComponent.h │ │ ├── juce_MenuBarModel.cpp │ │ ├── juce_MenuBarModel.h │ │ ├── juce_PopupMenu.cpp │ │ └── juce_PopupMenu.h │ ├── misc │ │ ├── juce_BubbleComponent.cpp │ │ ├── juce_BubbleComponent.h │ │ ├── juce_DropShadower.cpp │ │ ├── juce_DropShadower.h │ │ ├── juce_FocusOutline.cpp │ │ └── juce_FocusOutline.h │ ├── mouse │ │ ├── juce_ComponentDragger.cpp │ │ ├── juce_ComponentDragger.h │ │ ├── juce_DragAndDropContainer.cpp │ │ ├── juce_DragAndDropContainer.h │ │ ├── juce_DragAndDropTarget.h │ │ ├── juce_FileDragAndDropTarget.h │ │ ├── juce_LassoComponent.h │ │ ├── juce_MouseCursor.cpp │ │ ├── juce_MouseCursor.h │ │ ├── juce_MouseEvent.cpp │ │ ├── juce_MouseEvent.h │ │ ├── juce_MouseInactivityDetector.cpp │ │ ├── juce_MouseInactivityDetector.h │ │ ├── juce_MouseInputSource.cpp │ │ ├── juce_MouseInputSource.h │ │ ├── juce_MouseListener.cpp │ │ ├── juce_MouseListener.h │ │ ├── juce_SelectedItemSet.h │ │ ├── juce_TextDragAndDropTarget.h │ │ └── juce_TooltipClient.h │ ├── native │ │ ├── accessibility │ │ │ ├── juce_Accessibility.cpp │ │ │ ├── juce_AccessibilityElement_windows.cpp │ │ │ ├── juce_AccessibilityElement_windows.h │ │ │ ├── juce_AccessibilitySharedCode_mac.mm │ │ │ ├── juce_AccessibilityTextHelpers.h │ │ │ ├── juce_AccessibilityTextHelpers_test.cpp │ │ │ ├── juce_Accessibility_android.cpp │ │ │ ├── juce_Accessibility_ios.mm │ │ │ ├── juce_Accessibility_mac.mm │ │ │ ├── juce_Accessibility_windows.cpp │ │ │ ├── juce_UIAExpandCollapseProvider_windows.h │ │ │ ├── juce_UIAGridItemProvider_windows.h │ │ │ ├── juce_UIAGridProvider_windows.h │ │ │ ├── juce_UIAHelpers_windows.h │ │ │ ├── juce_UIAInvokeProvider_windows.h │ │ │ ├── juce_UIAProviderBase_windows.h │ │ │ ├── juce_UIAProviders_windows.h │ │ │ ├── juce_UIARangeValueProvider_windows.h │ │ │ ├── juce_UIASelectionProvider_windows.h │ │ │ ├── juce_UIATextProvider_windows.h │ │ │ ├── juce_UIAToggleProvider_windows.h │ │ │ ├── juce_UIATransformProvider_windows.h │ │ │ ├── juce_UIAValueProvider_windows.h │ │ │ ├── juce_UIAWindowProvider_windows.h │ │ │ └── juce_WindowsUIAWrapper_windows.h │ │ ├── java │ │ │ └── app │ │ │ │ └── com │ │ │ │ └── rmsl │ │ │ │ └── juce │ │ │ │ ├── ComponentPeerView.java │ │ │ │ ├── JuceContentProviderCursor.java │ │ │ │ └── JuceContentProviderFileObserver.java │ │ ├── javaopt │ │ │ └── app │ │ │ │ └── com │ │ │ │ └── rmsl │ │ │ │ └── juce │ │ │ │ ├── JuceActivity.java │ │ │ │ ├── JuceSharingContentProvider.java │ │ │ │ └── Receiver.java │ │ ├── juce_CGMetalLayerRenderer_mac.h │ │ ├── juce_ContentSharer_android.cpp │ │ ├── juce_ContentSharer_ios.cpp │ │ ├── juce_DragAndDrop_linux.cpp │ │ ├── juce_DragAndDrop_windows.cpp │ │ ├── juce_FileChooser_android.cpp │ │ ├── juce_FileChooser_ios.mm │ │ ├── juce_FileChooser_linux.cpp │ │ ├── juce_FileChooser_mac.mm │ │ ├── juce_FileChooser_windows.cpp │ │ ├── juce_MainMenu_mac.mm │ │ ├── juce_MouseCursor_mac.mm │ │ ├── juce_MultiTouchMapper.h │ │ ├── juce_NSViewComponentPeer_mac.mm │ │ ├── juce_NativeMessageBox_android.cpp │ │ ├── juce_NativeMessageBox_ios.mm │ │ ├── juce_NativeMessageBox_linux.cpp │ │ ├── juce_NativeMessageBox_mac.mm │ │ ├── juce_NativeMessageBox_windows.cpp │ │ ├── juce_NativeModalWrapperComponent_ios.h │ │ ├── juce_PerScreenDisplayLinks_mac.h │ │ ├── juce_ScopedDPIAwarenessDisabler.cpp │ │ ├── juce_ScopedDPIAwarenessDisabler.h │ │ ├── juce_ScopedThreadDPIAwarenessSetter_windows.h │ │ ├── juce_ScopedWindowAssociation_linux.h │ │ ├── juce_UIViewComponentPeer_ios.mm │ │ ├── juce_VBlank_windows.cpp │ │ ├── juce_WindowUtils_android.cpp │ │ ├── juce_WindowUtils_ios.mm │ │ ├── juce_WindowUtils_linux.cpp │ │ ├── juce_WindowUtils_mac.mm │ │ ├── juce_WindowUtils_windows.cpp │ │ ├── juce_Windowing_android.cpp │ │ ├── juce_Windowing_ios.mm │ │ ├── juce_Windowing_linux.cpp │ │ ├── juce_Windowing_mac.mm │ │ ├── juce_Windowing_windows.cpp │ │ ├── juce_WindowsHooks_windows.cpp │ │ ├── juce_WindowsHooks_windows.h │ │ ├── juce_XSymbols_linux.cpp │ │ ├── juce_XSymbols_linux.h │ │ ├── juce_XWindowSystem_linux.cpp │ │ └── juce_XWindowSystem_linux.h │ ├── positioning │ │ ├── juce_MarkerList.cpp │ │ ├── juce_MarkerList.h │ │ ├── juce_RelativeCoordinate.cpp │ │ ├── juce_RelativeCoordinate.h │ │ ├── juce_RelativeCoordinatePositioner.cpp │ │ ├── juce_RelativeCoordinatePositioner.h │ │ ├── juce_RelativeParallelogram.cpp │ │ ├── juce_RelativeParallelogram.h │ │ ├── juce_RelativePoint.cpp │ │ ├── juce_RelativePoint.h │ │ ├── juce_RelativePointPath.cpp │ │ ├── juce_RelativePointPath.h │ │ ├── juce_RelativeRectangle.cpp │ │ └── juce_RelativeRectangle.h │ ├── properties │ │ ├── juce_BooleanPropertyComponent.cpp │ │ ├── juce_BooleanPropertyComponent.h │ │ ├── juce_ButtonPropertyComponent.cpp │ │ ├── juce_ButtonPropertyComponent.h │ │ ├── juce_ChoicePropertyComponent.cpp │ │ ├── juce_ChoicePropertyComponent.h │ │ ├── juce_MultiChoicePropertyComponent.cpp │ │ ├── juce_MultiChoicePropertyComponent.h │ │ ├── juce_PropertyComponent.cpp │ │ ├── juce_PropertyComponent.h │ │ ├── juce_PropertyPanel.cpp │ │ ├── juce_PropertyPanel.h │ │ ├── juce_SliderPropertyComponent.cpp │ │ ├── juce_SliderPropertyComponent.h │ │ ├── juce_TextPropertyComponent.cpp │ │ └── juce_TextPropertyComponent.h │ ├── widgets │ │ ├── juce_ComboBox.cpp │ │ ├── juce_ComboBox.h │ │ ├── juce_ImageComponent.cpp │ │ ├── juce_ImageComponent.h │ │ ├── juce_Label.cpp │ │ ├── juce_Label.h │ │ ├── juce_ListBox.cpp │ │ ├── juce_ListBox.h │ │ ├── juce_ProgressBar.cpp │ │ ├── juce_ProgressBar.h │ │ ├── juce_Slider.cpp │ │ ├── juce_Slider.h │ │ ├── juce_TableHeaderComponent.cpp │ │ ├── juce_TableHeaderComponent.h │ │ ├── juce_TableListBox.cpp │ │ ├── juce_TableListBox.h │ │ ├── juce_TextEditor.cpp │ │ ├── juce_TextEditor.h │ │ ├── juce_TextEditorModel.cpp │ │ ├── juce_Toolbar.cpp │ │ ├── juce_Toolbar.h │ │ ├── juce_ToolbarItemComponent.cpp │ │ ├── juce_ToolbarItemComponent.h │ │ ├── juce_ToolbarItemFactory.h │ │ ├── juce_ToolbarItemPalette.cpp │ │ ├── juce_ToolbarItemPalette.h │ │ ├── juce_TreeView.cpp │ │ └── juce_TreeView.h │ └── windows │ │ ├── juce_AlertWindow.cpp │ │ ├── juce_AlertWindow.h │ │ ├── juce_CallOutBox.cpp │ │ ├── juce_CallOutBox.h │ │ ├── juce_ComponentPeer.cpp │ │ ├── juce_ComponentPeer.h │ │ ├── juce_DialogWindow.cpp │ │ ├── juce_DialogWindow.h │ │ ├── juce_DocumentWindow.cpp │ │ ├── juce_DocumentWindow.h │ │ ├── juce_MessageBoxOptions.cpp │ │ ├── juce_MessageBoxOptions.h │ │ ├── juce_NativeMessageBox.cpp │ │ ├── juce_NativeMessageBox.h │ │ ├── juce_NativeScaleFactorNotifier.cpp │ │ ├── juce_NativeScaleFactorNotifier.h │ │ ├── juce_ResizableWindow.cpp │ │ ├── juce_ResizableWindow.h │ │ ├── juce_ScopedMessageBox.cpp │ │ ├── juce_ScopedMessageBox.h │ │ ├── juce_ThreadWithProgressWindow.cpp │ │ ├── juce_ThreadWithProgressWindow.h │ │ ├── juce_TooltipWindow.cpp │ │ ├── juce_TooltipWindow.h │ │ ├── juce_TopLevelWindow.cpp │ │ ├── juce_TopLevelWindow.h │ │ ├── juce_VBlankAttachment.cpp │ │ ├── juce_VBlankAttachment.h │ │ └── juce_WindowUtils.h │ └── juce_gui_extra │ ├── code_editor │ ├── juce_CPlusPlusCodeTokeniser.cpp │ ├── juce_CPlusPlusCodeTokeniser.h │ ├── juce_CPlusPlusCodeTokeniserFunctions.h │ ├── juce_CodeDocument.cpp │ ├── juce_CodeDocument.h │ ├── juce_CodeEditorComponent.cpp │ ├── juce_CodeEditorComponent.h │ ├── juce_CodeTokeniser.h │ ├── juce_LuaCodeTokeniser.cpp │ ├── juce_LuaCodeTokeniser.h │ ├── juce_XMLCodeTokeniser.cpp │ └── juce_XMLCodeTokeniser.h │ ├── detail │ └── juce_WebControlRelayEvents.h │ ├── documents │ ├── juce_FileBasedDocument.cpp │ └── juce_FileBasedDocument.h │ ├── embedding │ ├── juce_ActiveXControlComponent.h │ ├── juce_AndroidViewComponent.h │ ├── juce_HWNDComponent.h │ ├── juce_NSViewComponent.h │ ├── juce_UIViewComponent.h │ └── juce_XEmbedComponent.h │ ├── juce_gui_extra.cpp │ ├── juce_gui_extra.h │ ├── juce_gui_extra.mm │ ├── misc │ ├── juce_AnimatedAppComponent.cpp │ ├── juce_AnimatedAppComponent.h │ ├── juce_AppleRemote.h │ ├── juce_BubbleMessageComponent.cpp │ ├── juce_BubbleMessageComponent.h │ ├── juce_ColourSelector.cpp │ ├── juce_ColourSelector.h │ ├── juce_KeyMappingEditorComponent.cpp │ ├── juce_KeyMappingEditorComponent.h │ ├── juce_LiveConstantEditor.cpp │ ├── juce_LiveConstantEditor.h │ ├── juce_PreferencesPanel.cpp │ ├── juce_PreferencesPanel.h │ ├── juce_PushNotifications.cpp │ ├── juce_PushNotifications.h │ ├── juce_RecentlyOpenedFilesList.cpp │ ├── juce_RecentlyOpenedFilesList.h │ ├── juce_SplashScreen.cpp │ ├── juce_SplashScreen.h │ ├── juce_SystemTrayIconComponent.cpp │ ├── juce_SystemTrayIconComponent.h │ ├── juce_WebBrowserComponent.cpp │ ├── juce_WebBrowserComponent.h │ ├── juce_WebControlParameterIndexReceiver.h │ ├── juce_WebControlRelays.cpp │ └── juce_WebControlRelays.h │ └── native │ ├── java │ └── app │ │ └── com │ │ └── rmsl │ │ └── juce │ │ └── JuceWebViewClasses.java │ ├── javaopt │ └── app │ │ └── com │ │ └── rmsl │ │ └── juce │ │ ├── JuceFirebaseInstanceIdService.java │ │ └── JuceFirebaseMessagingService.java │ ├── javascript │ ├── check_native_interop.js │ ├── index.js │ └── package.json │ ├── juce_ActiveXComponent_windows.cpp │ ├── juce_AndroidViewComponent.cpp │ ├── juce_AppleRemote_mac.mm │ ├── juce_HWNDComponent_windows.cpp │ ├── juce_NSViewComponent_mac.mm │ ├── juce_NSViewFrameWatcher_mac.h │ ├── juce_PushNotifications_android.cpp │ ├── juce_PushNotifications_ios.cpp │ ├── juce_PushNotifications_mac.cpp │ ├── juce_SystemTrayIcon_linux.cpp │ ├── juce_SystemTrayIcon_mac.cpp │ ├── juce_SystemTrayIcon_windows.cpp │ ├── juce_UIViewComponent_ios.mm │ ├── juce_WebBrowserComponent_android.cpp │ ├── juce_WebBrowserComponent_linux.cpp │ ├── juce_WebBrowserComponent_mac.mm │ ├── juce_WebBrowserComponent_windows.cpp │ └── juce_XEmbedComponent_linux.cpp ├── LICENSE ├── README.md ├── Source ├── Colours.hpp ├── Constraints.hpp ├── Display.cpp ├── Display.h ├── EnvelopeDisplay.cpp ├── EnvelopeDisplay.h ├── Fader.cpp ├── Fader.h ├── PluginEditor.cpp ├── PluginEditor.h ├── PluginProcessor.cpp ├── PluginProcessor.h ├── Socket.cpp ├── Socket.h ├── SpriteSlider.cpp ├── SpriteSlider.h ├── assets │ ├── B16f.png │ ├── B16n.png │ ├── BGd.png │ ├── BGd125.png │ ├── E32d.png │ ├── P32d.png │ ├── P48d.png │ ├── R12f.png │ ├── R12n.png │ ├── bg.svg │ ├── bg_dark.svg │ ├── bg_light.png │ ├── bg_light.svg │ ├── bubinga.jpg │ ├── bump.png │ ├── corpus.blend │ ├── corpus_dark.blend │ ├── corpus_light.blend │ ├── encoder32dark.blend │ ├── panel_dark.png │ ├── pot.blend │ ├── pot48dark.blend │ ├── screen_a.jpg │ ├── screen_a.jpg~ │ └── screen_a.png └── core │ ├── CMakeLists.txt │ ├── bin │ ├── core-test │ └── core_test.cpp │ ├── envelope.hpp │ ├── graphics │ ├── blur.cpp │ ├── blur.hpp │ ├── curves.hpp │ ├── fonts.c │ ├── fonts.h │ └── shapes.hpp │ ├── grid.cpp │ ├── grid.hpp │ ├── interface_headers.hpp │ ├── module_headers.hpp │ ├── modules │ ├── add_headers.lua │ ├── com.cpp │ ├── com.hpp │ ├── cro.cpp │ ├── cro.hpp │ ├── cso.cpp │ ├── cso.hpp │ ├── env.cpp │ ├── env.hpp │ ├── interface │ │ ├── com_interface.hpp │ │ ├── cro_interface.hpp │ │ ├── cso_interface.hpp │ │ ├── descriptor.hxx │ │ ├── env_interface.hpp │ │ ├── fus_interface.hpp │ │ ├── lfo_interface.hpp │ │ ├── mix_interface.hpp │ │ ├── pdt_interface.hpp │ │ ├── rtr_interface.hpp │ │ ├── snh_interface.hpp │ │ ├── sum_interface.hpp │ │ ├── vca_interface.hpp │ │ ├── vcd_interface.hpp │ │ ├── vcf_interface.hpp │ │ └── vco_interface.hpp │ ├── lfo.cpp │ ├── lfo.hpp │ ├── mix.cpp │ ├── mix.hpp │ ├── node.cpp │ ├── node.hpp │ ├── pdt.cpp │ ├── pdt.hpp │ ├── rtr.cpp │ ├── rtr.hpp │ ├── snh.cpp │ ├── snh.hpp │ ├── sum.cpp │ ├── sum.hpp │ ├── vca.cpp │ ├── vca.hpp │ ├── vcd.cpp │ ├── vcd.hpp │ ├── vcf.cpp │ ├── vcf.hpp │ ├── vco.cpp │ └── vco.hpp │ ├── rack.cpp │ ├── rack.hpp │ ├── setup │ ├── constants.cpp │ ├── constants.hpp │ ├── iospecs.cpp │ ├── iospecs.hpp │ ├── midi.h │ └── scales.h │ ├── spiro.cpp │ ├── spiro.hpp │ ├── ui-test │ ├── resource_dir.h │ └── ui_test.cpp │ ├── uid.cpp │ ├── uid.hpp │ └── utility │ ├── canvas.hpp │ ├── modmatrix.cpp │ ├── modmatrix.hpp │ ├── primitives.hpp │ ├── quaternion.hpp │ ├── utility.cpp │ ├── utility.hpp │ └── wavering.hpp └── spiro.jucer /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/.gitignore -------------------------------------------------------------------------------- /Builds/LinuxMakefile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Builds/LinuxMakefile/Makefile -------------------------------------------------------------------------------- /Builds/LinuxMakefile/make_helpers/arch_detection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Builds/LinuxMakefile/make_helpers/arch_detection.cpp -------------------------------------------------------------------------------- /Builds/LinuxMakefile/valgrind.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Builds/LinuxMakefile/valgrind.log -------------------------------------------------------------------------------- /JuceLibraryCode/AppConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/AppConfig.h -------------------------------------------------------------------------------- /JuceLibraryCode/BinaryData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/BinaryData.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/BinaryData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/BinaryData.h -------------------------------------------------------------------------------- /JuceLibraryCode/JuceHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/JuceHeader.h -------------------------------------------------------------------------------- /JuceLibraryCode/JucePluginDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/JucePluginDefines.h -------------------------------------------------------------------------------- /JuceLibraryCode/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/ReadMe.txt -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_audio_basics.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_basics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_audio_basics.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_devices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_audio_devices.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_devices.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_audio_devices.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_formats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_audio_formats.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_formats.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_audio_formats.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_AAX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_AAX.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_AAX.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_AAX.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_AAX_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_AAX_utils.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_ARA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_ARA.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_AU_1.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_AU_1.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_AU_2.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_AU_2.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_AUv3.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_AUv3.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_LV2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_LV2.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_LV2.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_LV2.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_Standalone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_Standalone.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_Unity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_Unity.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_VST2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_VST2.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_VST2.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_VST2.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_VST3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_VST3.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_VST3.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_VST3.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_processors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_audio_processors.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_processors.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_audio_processors.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_processors_ara.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_audio_processors_ara.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_processors_lv2_libs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_audio_processors_lv2_libs.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_audio_utils.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_utils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_audio_utils.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_core.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_core.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_core.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_core_CompilationTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_core_CompilationTime.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_data_structures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_data_structures.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_data_structures.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_data_structures.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_events.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_events.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_events.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_graphics.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_graphics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_graphics.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_graphics_Harfbuzz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_graphics_Harfbuzz.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_graphics_Sheenbidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_graphics_Sheenbidi.c -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_gui_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_gui_basics.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_gui_basics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_gui_basics.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_gui_extra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_gui_extra.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_gui_extra.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/include_juce_gui_extra.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_basics/juce_audio_basics.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiBuffer.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiBuffer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiFile.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiFile.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiMessage.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiMessage.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiRPN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiRPN.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiRPN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/juce_MidiRPN.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMP.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPSysEx7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPSysEx7.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPUtils.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPView.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPView.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPacket.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPackets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_basics/midi/ump/juce_UMPackets.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEInstrument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEInstrument.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEMessages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEMessages.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEMessages.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPENote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPENote.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPENote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPENote.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPESynthesiser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPESynthesiser.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEUtils.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEUtils.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEValue.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEValue.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEZoneLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_basics/mpe/juce_MPEZoneLayout.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/utilities/juce_ADSR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_basics/utilities/juce_ADSR.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/utilities/juce_Decibels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_basics/utilities/juce_Decibels.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_basics/utilities/juce_Reverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_basics/utilities/juce_Reverb.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_devices/juce_audio_devices.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/juce_Audio_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/juce_Audio_ios.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/oboe/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/oboe/.clang-tidy -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/oboe/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/oboe/LICENSE -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_devices/native/oboe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_devices/native/oboe/README.md -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/all.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/alloc.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/assert.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/callback.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/compat.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/endswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/endswap.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/export.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/format.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/metadata.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/ordinals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/ordinals.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/flac/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/flac/private.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/codec.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_formats/codecs/oggvorbis/ogg.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_formats/juce_audio_formats.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/sampler/juce_Sampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_formats/sampler/juce_Sampler.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_formats/sampler/juce_Sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_formats/sampler/juce_Sampler.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_utils/gui/juce_AudioThumbnail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_utils/gui/juce_AudioThumbnail.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_utils/juce_audio_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_utils/juce_audio_utils.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_utils/juce_audio_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_utils/juce_audio_utils.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_utils/juce_audio_utils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_utils/juce_audio_utils.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_audio_utils/players/juce_SoundPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_audio_utils/players/juce_SoundPlayer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_AbstractFifo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_AbstractFifo.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_AbstractFifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_AbstractFifo.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_Array.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_ArrayBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_ArrayBase.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_ArrayBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_ArrayBase.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_DynamicObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_DynamicObject.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_DynamicObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_DynamicObject.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_Enumerate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_Enumerate.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_HashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_HashMap.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_HashMap_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_HashMap_test.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_ListenerList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_ListenerList.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_NamedValueSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_NamedValueSet.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_NamedValueSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_NamedValueSet.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_Optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_Optional.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_Optional_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_Optional_test.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_OwnedArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_OwnedArray.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_OwnedArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_OwnedArray.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_PropertySet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_PropertySet.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_PropertySet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_PropertySet.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_SortedSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_SortedSet.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_Span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_Span.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_SparseSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_SparseSet.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_SparseSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_SparseSet.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_Variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_Variant.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/containers/juce_Variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/containers/juce_Variant.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/detail/juce_NativeFileHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/detail/juce_NativeFileHandle.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_AndroidDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/files/juce_AndroidDocument.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_DirectoryIterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/files/juce_DirectoryIterator.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_DirectoryIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/files/juce_DirectoryIterator.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/files/juce_File.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/files/juce_File.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_FileFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/files/juce_FileFilter.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_FileFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/files/juce_FileFilter.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_FileInputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/files/juce_FileInputStream.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_FileInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/files/juce_FileInputStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_FileOutputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/files/juce_FileOutputStream.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_FileOutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/files/juce_FileOutputStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_FileSearchPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/files/juce_FileSearchPath.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_FileSearchPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/files/juce_FileSearchPath.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_MemoryMappedFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/files/juce_MemoryMappedFile.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_TemporaryFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/files/juce_TemporaryFile.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_TemporaryFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/files/juce_TemporaryFile.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_WildcardFileFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/files/juce_WildcardFileFilter.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_WildcardFileFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/files/juce_WildcardFileFilter.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_common_MimeTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/files/juce_common_MimeTypes.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/files/juce_common_MimeTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/files/juce_common_MimeTypes.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/json/juce_JSON.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/json/juce_JSON.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/json/juce_JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/json/juce_JSON.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/json/juce_JSONSerialisation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/json/juce_JSONSerialisation.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/json/juce_JSONUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/json/juce_JSONUtils.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/json/juce_JSONUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/json/juce_JSONUtils.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/juce_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/juce_core.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/juce_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/juce_core.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/juce_core.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/juce_core.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/juce_core_CompilationTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/juce_core_CompilationTime.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/logging/juce_FileLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/logging/juce_FileLogger.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/logging/juce_FileLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/logging/juce_FileLogger.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/logging/juce_Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/logging/juce_Logger.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/logging/juce_Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/logging/juce_Logger.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_BigInteger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_BigInteger.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_BigInteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_BigInteger.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_Expression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_Expression.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_Expression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_Expression.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_MathsFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_MathsFunctions.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_NormalisableRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_NormalisableRange.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_Random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_Random.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_Random.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/maths/juce_Range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/maths/juce_Range.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_AllocationHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_AllocationHooks.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_AllocationHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_AllocationHooks.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_Atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_Atomic.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_ByteOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_ByteOrder.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_CopyableHeapBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_CopyableHeapBlock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_HeapBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_HeapBlock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_Memory.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_MemoryBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_MemoryBlock.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_MemoryBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_MemoryBlock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_Reservoir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_Reservoir.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_ScopedPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_ScopedPointer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_Singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_Singleton.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/memory/juce_WeakReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/memory/juce_WeakReference.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_ConsoleApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_ConsoleApplication.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_ConsoleApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_ConsoleApplication.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_EnumHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_EnumHelpers.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_EnumHelpers_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_EnumHelpers_test.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_Functional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_Functional.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_OptionsHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_OptionsHelpers.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_Result.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_Result.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_Result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_Result.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_RuntimePermissions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_RuntimePermissions.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_RuntimePermissions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_RuntimePermissions.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_ScopeGuard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_ScopeGuard.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_ScopeGuard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_ScopeGuard.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_Uuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_Uuid.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_Uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_Uuid.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/misc/juce_WindowsRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/misc/juce_WindowsRegistry.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/java/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/native/java/README.txt -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_BasicNativeHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/native/juce_BasicNativeHeaders.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_CFHelpers_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/native/juce_CFHelpers_mac.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_ComSmartPtr_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/native/juce_ComSmartPtr_windows.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_CommonFile_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/native/juce_CommonFile_linux.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_Files_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/native/juce_Files_android.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_Files_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/native/juce_Files_linux.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_Files_mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/native/juce_Files_mac.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_Files_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/native/juce_Files_windows.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_IPAddress_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/native/juce_IPAddress_posix.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_JNIHelpers_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/native/juce_JNIHelpers_android.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_Misc_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/native/juce_Misc_android.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_NamedPipe_posix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/native/juce_NamedPipe_posix.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_Network_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/native/juce_Network_android.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_Network_curl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/native/juce_Network_curl.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_Network_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/native/juce_Network_linux.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_Network_mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/native/juce_Network_mac.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_Network_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/native/juce_Network_windows.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_ObjCHelpers_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/native/juce_ObjCHelpers_mac.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_Process_mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/native/juce_Process_mac.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_Registry_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/native/juce_Registry_windows.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_SharedCode_intel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/native/juce_SharedCode_intel.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_SharedCode_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/native/juce_SharedCode_posix.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_Strings_mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/native/juce_Strings_mac.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_SystemStats_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/native/juce_SystemStats_linux.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_SystemStats_mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/native/juce_SystemStats_mac.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_SystemStats_wasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/native/juce_SystemStats_wasm.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_Threads_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/native/juce_Threads_android.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_Threads_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/native/juce_Threads_linux.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_Threads_mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/native/juce_Threads_mac.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/native/juce_Threads_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/native/juce_Threads_windows.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_IPAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/network/juce_IPAddress.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/network/juce_IPAddress.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_MACAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/network/juce_MACAddress.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_MACAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/network/juce_MACAddress.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_NamedPipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/network/juce_NamedPipe.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_NamedPipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/network/juce_NamedPipe.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_Socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/network/juce_Socket.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/network/juce_Socket.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_URL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/network/juce_URL.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_URL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/network/juce_URL.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_WebInputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/network/juce_WebInputStream.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/network/juce_WebInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/network/juce_WebInputStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_FileInputSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_FileInputSource.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_FileInputSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_FileInputSource.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_InputSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_InputSource.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_InputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_InputStream.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_InputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_InputStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_MemoryInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_MemoryInputStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_MemoryOutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_MemoryOutputStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_OutputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_OutputStream.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_OutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_OutputStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_SubregionStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_SubregionStream.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_SubregionStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_SubregionStream.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_URLInputSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_URLInputSource.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/streams/juce_URLInputSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/streams/juce_URLInputSource.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/system/juce_CompilerSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/system/juce_CompilerSupport.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/system/juce_CompilerWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/system/juce_CompilerWarnings.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/system/juce_PlatformDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/system/juce_PlatformDefs.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/system/juce_StandardHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/system/juce_StandardHeader.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/system/juce_SystemStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/system/juce_SystemStats.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/system/juce_SystemStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/system/juce_SystemStats.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/system/juce_TargetPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/system/juce_TargetPlatform.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_Base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/text/juce_Base64.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_Base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/text/juce_Base64.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_CharPointer_ASCII.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/text/juce_CharPointer_ASCII.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_CharPointer_UTF16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/text/juce_CharPointer_UTF16.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_CharPointer_UTF32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/text/juce_CharPointer_UTF32.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_CharPointer_UTF8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/text/juce_CharPointer_UTF8.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_CharacterFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/text/juce_CharacterFunctions.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_CharacterFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/text/juce_CharacterFunctions.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_Identifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/text/juce_Identifier.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_Identifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/text/juce_Identifier.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_LocalisedStrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/text/juce_LocalisedStrings.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_LocalisedStrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/text/juce_LocalisedStrings.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_NewLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/text/juce_NewLine.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/text/juce_String.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/text/juce_String.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_StringArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/text/juce_StringArray.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_StringArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/text/juce_StringArray.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_StringPairArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/text/juce_StringPairArray.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_StringPairArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/text/juce_StringPairArray.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_StringPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/text/juce_StringPool.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_StringPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/text/juce_StringPool.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_StringRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/text/juce_StringRef.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_TextDiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/text/juce_TextDiff.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/text/juce_TextDiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/text/juce_TextDiff.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ChildProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ChildProcess.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ChildProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ChildProcess.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_CriticalSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_CriticalSection.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_DynamicLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_DynamicLibrary.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_InterProcessLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_InterProcessLock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_Process.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ReadWriteLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ReadWriteLock.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ReadWriteLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ReadWriteLock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ScopedLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ScopedLock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ScopedReadLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ScopedReadLock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ScopedWriteLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ScopedWriteLock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_SpinLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_SpinLock.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_Thread.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_Thread.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ThreadLocalValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ThreadLocalValue.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ThreadPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ThreadPool.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_ThreadPool.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_TimeSliceThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_TimeSliceThread.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_TimeSliceThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_TimeSliceThread.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_WaitableEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_WaitableEvent.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/threads/juce_WaitableEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/threads/juce_WaitableEvent.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/time/juce_PerformanceCounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/time/juce_PerformanceCounter.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/time/juce_PerformanceCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/time/juce_PerformanceCounter.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/time/juce_RelativeTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/time/juce_RelativeTime.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/time/juce_RelativeTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/time/juce_RelativeTime.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/time/juce_Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/time/juce_Time.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/time/juce_Time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/time/juce_Time.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/unit_tests/juce_UnitTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/unit_tests/juce_UnitTest.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/unit_tests/juce_UnitTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/unit_tests/juce_UnitTest.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/xml/juce_XmlDocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/xml/juce_XmlDocument.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/xml/juce_XmlDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/xml/juce_XmlDocument.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/xml/juce_XmlElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/xml/juce_XmlElement.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/xml/juce_XmlElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/xml/juce_XmlElement.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/juce_ZipFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/zip/juce_ZipFile.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/juce_ZipFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/zip/juce_ZipFile.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/juce_zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/zip/juce_zlib.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/JUCE_CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/JUCE_CHANGES.txt -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/LICENSE -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/README -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/adler32.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/compress.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/crc32.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/crc32.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/deflate.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/deflate.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/gzguts.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/infback.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/inffast.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/inffast.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/inffixed.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/inflate.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/inflate.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/inftrees.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/inftrees.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/trees.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/trees.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/uncompr.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/zconf.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/zlib.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/zutil.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_core/zip/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_core/zip/zlib/zutil.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_data_structures/juce_data_structures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_data_structures/juce_data_structures.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_data_structures/values/juce_Value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_data_structures/values/juce_Value.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_data_structures/values/juce_Value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_data_structures/values/juce_Value.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/juce_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_events/juce_events.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/juce_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_events/juce_events.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/juce_events.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_events/juce_events.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_ApplicationBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_ApplicationBase.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_CallbackMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_CallbackMessage.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_Initialisation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_Initialisation.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_Message.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_MessageListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_MessageListener.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/messages/juce_MessageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_events/messages/juce_MessageManager.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/native/juce_EventLoop_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_events/native/juce_EventLoop_linux.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/native/juce_MessageQueue_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_events/native/juce_MessageQueue_mac.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/native/juce_Messaging_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_events/native/juce_Messaging_linux.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/native/juce_RunningInUnity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_events/native/juce_RunningInUnity.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/timers/juce_MultiTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_events/timers/juce_MultiTimer.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/timers/juce_MultiTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_events/timers/juce_MultiTimer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/timers/juce_TimedCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_events/timers/juce_TimedCallback.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/timers/juce_Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_events/timers/juce_Timer.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_events/timers/juce_Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_events/timers/juce_Timer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/colour/juce_Colour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/colour/juce_Colour.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/colour/juce_Colour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/colour/juce_Colour.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/colour/juce_ColourGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/colour/juce_ColourGradient.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/colour/juce_Colours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/colour/juce_Colours.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/colour/juce_Colours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/colour/juce_Colours.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/colour/juce_FillType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/colour/juce_FillType.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/colour/juce_FillType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/colour/juce_FillType.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/colour/juce_PixelFormats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/colour/juce_PixelFormats.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/detail/juce_JustifiedText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/detail/juce_JustifiedText.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/detail/juce_JustifiedText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/detail/juce_JustifiedText.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/detail/juce_Ranges.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/detail/juce_Ranges.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/detail/juce_Ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/detail/juce_Ranges.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/detail/juce_ShapedText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/detail/juce_ShapedText.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/detail/juce_ShapedText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/detail/juce_ShapedText.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/detail/juce_Unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/detail/juce_Unicode.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/effects/juce_GlowEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/effects/juce_GlowEffect.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/effects/juce_GlowEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/effects/juce_GlowEffect.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/COPYING -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/harfbuzz.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/harfbuzz.cc -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-aat-map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-aat-map.cc -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-aat-map.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-aat-map.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-aat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-aat.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-algs.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-algs.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-array.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-array.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-atomic.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-atomic.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-bimap.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-bimap.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-bit-page.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-bit-page.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-bit-set.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-bit-set.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-blob.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-blob.cc -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-blob.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-blob.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-blob.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-buffer.cc -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-buffer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-buffer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-buffer.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-cache.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-cache.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-common.cc -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-common.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-config.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-config.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-coretext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-coretext.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-debug.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-debug.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-dispatch.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-dispatch.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-draw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-draw.cc -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-draw.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-draw.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-draw.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-face.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-face.cc -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-face.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-face.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-face.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-face.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-font.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-font.cc -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-font.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-font.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-font.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ft-colr.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ft-colr.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ft.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ft.cc -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ft.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-gdi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-gdi.cc -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-gdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-gdi.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-geometry.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-geometry.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-glib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-glib.cc -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-glib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-glib.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-gobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-gobject.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-graphite2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-graphite2.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-icu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-icu.cc -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-icu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-icu.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-iter.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-iter.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-kern.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-kern.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-limits.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-limits.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-map.cc -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-map.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-map.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-map.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-meta.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-meta.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-multimap.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-multimap.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-mutex.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-mutex.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-null.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-null.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-number.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-number.cc -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-number.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-number.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-object.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-object.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-color.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-color.cc -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-color.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-face.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-face.cc -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-face.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-face.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-font.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-font.cc -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-font.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-layout.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-map.cc -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-map.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-map.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-math.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-math.cc -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-math.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-meta.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-meta.cc -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-meta.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-name.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-name.cc -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-name.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-shape.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-shape.cc -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-shape.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-shape.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-shape.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-tag.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-tag.cc -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-var.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-var.cc -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot-var.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ot.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-outline.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-outline.cc -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-outline.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-outline.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-paint.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-paint.cc -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-paint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-paint.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-paint.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-paint.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-pool.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-pool.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-repacker.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-repacker.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-sanitize.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-sanitize.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-set.cc -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-set.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-set.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-set.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-shape.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-shape.cc -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-shape.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-shaper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-shaper.cc -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-shaper.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-shaper.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-static.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-static.cc -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-style.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-style.cc -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-style.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-subset.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-subset.cc -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-subset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-subset.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-subset.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-subset.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ucd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-ucd.cc -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-unicode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-unicode.cc -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-unicode.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-unicode.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-unicode.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-uniscribe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-uniscribe.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-utf.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-utf.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-vector.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-vector.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-version.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-wasm-api.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-wasm-api.cc -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-wasm-api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-wasm-api.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-wasm-api.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb-wasm-api.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/harfbuzz/hb.hh -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_AttributedString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_AttributedString.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_Font.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_Font.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_FontOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_FontOptions.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_FontOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_FontOptions.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_GlyphArrangement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_GlyphArrangement.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_LruCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_LruCache.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_TextLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_TextLayout.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_TextLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_TextLayout.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_Typeface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_Typeface.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/fonts/juce_Typeface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/fonts/juce_Typeface.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_BorderSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_BorderSize.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_EdgeTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_EdgeTable.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_EdgeTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_EdgeTable.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_Line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_Line.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_Parallelogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_Parallelogram.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_Path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_Path.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_Path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_Path.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_PathIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_PathIterator.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_Point.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_Rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_Rectangle.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/geometry/juce_RectangleList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/geometry/juce_RectangleList.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/README -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jchuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jchuff.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jchuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jchuff.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jcinit.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdct.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdhuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdhuff.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdhuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jdhuff.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jerror.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jerror.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/jpglib/jutils.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/LICENSE -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/png.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/png.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngget.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngmem.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngrio.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngset.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/image_formats/pnglib/pngwio.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/images/juce_Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/images/juce_Image.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/images/juce_Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/images/juce_Image.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/images/juce_ImageCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/images/juce_ImageCache.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/images/juce_ImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/images/juce_ImageCache.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/images/juce_ImageFileFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/images/juce_ImageFileFormat.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/images/juce_ScaledImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/images/juce_ScaledImage.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/juce_graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/juce_graphics.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/juce_graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/juce_graphics.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/juce_graphics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/juce_graphics.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/juce_graphics_Harfbuzz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/juce_graphics_Harfbuzz.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/juce_graphics_Sheenbidi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/juce_graphics_Sheenbidi.c -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/native/juce_DirectX_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/native/juce_DirectX_windows.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/native/juce_EventTracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/native/juce_EventTracing.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/native/juce_Fonts_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/native/juce_Fonts_android.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/native/juce_Fonts_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/native/juce_Fonts_linux.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/native/juce_Fonts_mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/native/juce_Fonts_mac.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/unicode/juce_Unicode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/unicode/juce_Unicode.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/unicode/juce_UnicodeBidi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/unicode/juce_UnicodeBidi.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/unicode/juce_UnicodeLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/unicode/juce_UnicodeLine.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/unicode/juce_UnicodeUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/unicode/juce_UnicodeUtils.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_graphics/unicode/sheenbidi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_graphics/unicode/sheenbidi/LICENSE -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ArrowButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ArrowButton.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/buttons/juce_Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_Button.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/buttons/juce_Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_Button.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ImageButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ImageButton.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ShapeButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ShapeButton.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/buttons/juce_TextButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_TextButton.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/buttons/juce_TextButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_TextButton.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ToggleButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/buttons/juce_ToggleButton.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/components/juce_Component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/components/juce_Component.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/desktop/juce_Desktop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/desktop/juce_Desktop.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/desktop/juce_Desktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/desktop/juce_Desktop.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/desktop/juce_Displays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/desktop/juce_Displays.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/desktop/juce_Displays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/desktop/juce_Displays.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/detail/juce_FocusHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/detail/juce_FocusHelpers.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/detail/juce_FocusRestorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/detail/juce_FocusRestorer.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/detail/juce_PointerState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/detail/juce_PointerState.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/drawables/juce_Drawable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/drawables/juce_Drawable.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/juce_gui_basics.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_KeyPress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/keyboard/juce_KeyPress.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_FlexBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_FlexBox.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_FlexBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_FlexBox.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_FlexItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_FlexItem.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_Grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_Grid.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_Grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_Grid.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_GridItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_GridItem.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_GridItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_GridItem.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_ScrollBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_ScrollBar.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_SidePanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_SidePanel.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_Viewport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_Viewport.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/layout/juce_Viewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/layout/juce_Viewport.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/menus/juce_PopupMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/menus/juce_PopupMenu.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/menus/juce_PopupMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/menus/juce_PopupMenu.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/misc/juce_DropShadower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/misc/juce_DropShadower.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/misc/juce_FocusOutline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/misc/juce_FocusOutline.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseCursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseCursor.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/mouse/juce_MouseEvent.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ComboBox.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Label.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Label.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ListBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ListBox.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ListBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_ListBox.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Slider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Slider.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Slider.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Toolbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Toolbar.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Toolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_Toolbar.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TreeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_basics/widgets/juce_TreeView.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_extra/juce_gui_extra.mm -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_extra/misc/juce_AppleRemote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_extra/misc/juce_AppleRemote.h -------------------------------------------------------------------------------- /JuceLibraryCode/modules/juce_gui_extra/misc/juce_SplashScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/JuceLibraryCode/modules/juce_gui_extra/misc/juce_SplashScreen.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/README.md -------------------------------------------------------------------------------- /Source/Colours.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/Colours.hpp -------------------------------------------------------------------------------- /Source/Constraints.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/Constraints.hpp -------------------------------------------------------------------------------- /Source/Display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/Display.cpp -------------------------------------------------------------------------------- /Source/Display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/Display.h -------------------------------------------------------------------------------- /Source/EnvelopeDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/EnvelopeDisplay.cpp -------------------------------------------------------------------------------- /Source/EnvelopeDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/EnvelopeDisplay.h -------------------------------------------------------------------------------- /Source/Fader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/Fader.cpp -------------------------------------------------------------------------------- /Source/Fader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/Fader.h -------------------------------------------------------------------------------- /Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/PluginEditor.h -------------------------------------------------------------------------------- /Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/PluginProcessor.h -------------------------------------------------------------------------------- /Source/Socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/Socket.cpp -------------------------------------------------------------------------------- /Source/Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/Socket.h -------------------------------------------------------------------------------- /Source/SpriteSlider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/SpriteSlider.cpp -------------------------------------------------------------------------------- /Source/SpriteSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/SpriteSlider.h -------------------------------------------------------------------------------- /Source/assets/B16f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/assets/B16f.png -------------------------------------------------------------------------------- /Source/assets/B16n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/assets/B16n.png -------------------------------------------------------------------------------- /Source/assets/BGd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/assets/BGd.png -------------------------------------------------------------------------------- /Source/assets/BGd125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/assets/BGd125.png -------------------------------------------------------------------------------- /Source/assets/E32d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/assets/E32d.png -------------------------------------------------------------------------------- /Source/assets/P32d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/assets/P32d.png -------------------------------------------------------------------------------- /Source/assets/P48d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/assets/P48d.png -------------------------------------------------------------------------------- /Source/assets/R12f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/assets/R12f.png -------------------------------------------------------------------------------- /Source/assets/R12n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/assets/R12n.png -------------------------------------------------------------------------------- /Source/assets/bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/assets/bg.svg -------------------------------------------------------------------------------- /Source/assets/bg_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/assets/bg_dark.svg -------------------------------------------------------------------------------- /Source/assets/bg_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/assets/bg_light.png -------------------------------------------------------------------------------- /Source/assets/bg_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/assets/bg_light.svg -------------------------------------------------------------------------------- /Source/assets/bubinga.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/assets/bubinga.jpg -------------------------------------------------------------------------------- /Source/assets/bump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/assets/bump.png -------------------------------------------------------------------------------- /Source/assets/corpus.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/assets/corpus.blend -------------------------------------------------------------------------------- /Source/assets/corpus_dark.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/assets/corpus_dark.blend -------------------------------------------------------------------------------- /Source/assets/corpus_light.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/assets/corpus_light.blend -------------------------------------------------------------------------------- /Source/assets/encoder32dark.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/assets/encoder32dark.blend -------------------------------------------------------------------------------- /Source/assets/panel_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/assets/panel_dark.png -------------------------------------------------------------------------------- /Source/assets/pot.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/assets/pot.blend -------------------------------------------------------------------------------- /Source/assets/pot48dark.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/assets/pot48dark.blend -------------------------------------------------------------------------------- /Source/assets/screen_a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/assets/screen_a.jpg -------------------------------------------------------------------------------- /Source/assets/screen_a.jpg~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/assets/screen_a.jpg~ -------------------------------------------------------------------------------- /Source/assets/screen_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/assets/screen_a.png -------------------------------------------------------------------------------- /Source/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/CMakeLists.txt -------------------------------------------------------------------------------- /Source/core/bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/bin -------------------------------------------------------------------------------- /Source/core/core-test/core_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/core-test/core_test.cpp -------------------------------------------------------------------------------- /Source/core/envelope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/envelope.hpp -------------------------------------------------------------------------------- /Source/core/graphics/blur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/graphics/blur.cpp -------------------------------------------------------------------------------- /Source/core/graphics/blur.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/graphics/blur.hpp -------------------------------------------------------------------------------- /Source/core/graphics/curves.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/graphics/curves.hpp -------------------------------------------------------------------------------- /Source/core/graphics/fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/graphics/fonts.c -------------------------------------------------------------------------------- /Source/core/graphics/fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/graphics/fonts.h -------------------------------------------------------------------------------- /Source/core/graphics/shapes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/graphics/shapes.hpp -------------------------------------------------------------------------------- /Source/core/grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/grid.cpp -------------------------------------------------------------------------------- /Source/core/grid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/grid.hpp -------------------------------------------------------------------------------- /Source/core/interface_headers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/interface_headers.hpp -------------------------------------------------------------------------------- /Source/core/module_headers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/module_headers.hpp -------------------------------------------------------------------------------- /Source/core/modules/add_headers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/add_headers.lua -------------------------------------------------------------------------------- /Source/core/modules/com.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/com.cpp -------------------------------------------------------------------------------- /Source/core/modules/com.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/com.hpp -------------------------------------------------------------------------------- /Source/core/modules/cro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/cro.cpp -------------------------------------------------------------------------------- /Source/core/modules/cro.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/cro.hpp -------------------------------------------------------------------------------- /Source/core/modules/cso.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/cso.cpp -------------------------------------------------------------------------------- /Source/core/modules/cso.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/cso.hpp -------------------------------------------------------------------------------- /Source/core/modules/env.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/env.cpp -------------------------------------------------------------------------------- /Source/core/modules/env.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/env.hpp -------------------------------------------------------------------------------- /Source/core/modules/interface/com_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/interface/com_interface.hpp -------------------------------------------------------------------------------- /Source/core/modules/interface/cro_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/interface/cro_interface.hpp -------------------------------------------------------------------------------- /Source/core/modules/interface/cso_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/interface/cso_interface.hpp -------------------------------------------------------------------------------- /Source/core/modules/interface/descriptor.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/interface/descriptor.hxx -------------------------------------------------------------------------------- /Source/core/modules/interface/env_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/interface/env_interface.hpp -------------------------------------------------------------------------------- /Source/core/modules/interface/fus_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/interface/fus_interface.hpp -------------------------------------------------------------------------------- /Source/core/modules/interface/lfo_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/interface/lfo_interface.hpp -------------------------------------------------------------------------------- /Source/core/modules/interface/mix_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/interface/mix_interface.hpp -------------------------------------------------------------------------------- /Source/core/modules/interface/pdt_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/interface/pdt_interface.hpp -------------------------------------------------------------------------------- /Source/core/modules/interface/rtr_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/interface/rtr_interface.hpp -------------------------------------------------------------------------------- /Source/core/modules/interface/snh_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/interface/snh_interface.hpp -------------------------------------------------------------------------------- /Source/core/modules/interface/sum_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/interface/sum_interface.hpp -------------------------------------------------------------------------------- /Source/core/modules/interface/vca_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/interface/vca_interface.hpp -------------------------------------------------------------------------------- /Source/core/modules/interface/vcd_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/interface/vcd_interface.hpp -------------------------------------------------------------------------------- /Source/core/modules/interface/vcf_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/interface/vcf_interface.hpp -------------------------------------------------------------------------------- /Source/core/modules/interface/vco_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/interface/vco_interface.hpp -------------------------------------------------------------------------------- /Source/core/modules/lfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/lfo.cpp -------------------------------------------------------------------------------- /Source/core/modules/lfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/lfo.hpp -------------------------------------------------------------------------------- /Source/core/modules/mix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/mix.cpp -------------------------------------------------------------------------------- /Source/core/modules/mix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/mix.hpp -------------------------------------------------------------------------------- /Source/core/modules/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/node.cpp -------------------------------------------------------------------------------- /Source/core/modules/node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/node.hpp -------------------------------------------------------------------------------- /Source/core/modules/pdt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/pdt.cpp -------------------------------------------------------------------------------- /Source/core/modules/pdt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/pdt.hpp -------------------------------------------------------------------------------- /Source/core/modules/rtr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/rtr.cpp -------------------------------------------------------------------------------- /Source/core/modules/rtr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/rtr.hpp -------------------------------------------------------------------------------- /Source/core/modules/snh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/snh.cpp -------------------------------------------------------------------------------- /Source/core/modules/snh.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/snh.hpp -------------------------------------------------------------------------------- /Source/core/modules/sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/sum.cpp -------------------------------------------------------------------------------- /Source/core/modules/sum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/sum.hpp -------------------------------------------------------------------------------- /Source/core/modules/vca.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/vca.cpp -------------------------------------------------------------------------------- /Source/core/modules/vca.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/vca.hpp -------------------------------------------------------------------------------- /Source/core/modules/vcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/vcd.cpp -------------------------------------------------------------------------------- /Source/core/modules/vcd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/vcd.hpp -------------------------------------------------------------------------------- /Source/core/modules/vcf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/vcf.cpp -------------------------------------------------------------------------------- /Source/core/modules/vcf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/vcf.hpp -------------------------------------------------------------------------------- /Source/core/modules/vco.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/vco.cpp -------------------------------------------------------------------------------- /Source/core/modules/vco.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/modules/vco.hpp -------------------------------------------------------------------------------- /Source/core/rack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/rack.cpp -------------------------------------------------------------------------------- /Source/core/rack.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/rack.hpp -------------------------------------------------------------------------------- /Source/core/setup/constants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/setup/constants.cpp -------------------------------------------------------------------------------- /Source/core/setup/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/setup/constants.hpp -------------------------------------------------------------------------------- /Source/core/setup/iospecs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/setup/iospecs.cpp -------------------------------------------------------------------------------- /Source/core/setup/iospecs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/setup/iospecs.hpp -------------------------------------------------------------------------------- /Source/core/setup/midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/setup/midi.h -------------------------------------------------------------------------------- /Source/core/setup/scales.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/setup/scales.h -------------------------------------------------------------------------------- /Source/core/spiro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/spiro.cpp -------------------------------------------------------------------------------- /Source/core/spiro.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/spiro.hpp -------------------------------------------------------------------------------- /Source/core/ui-test/resource_dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/ui-test/resource_dir.h -------------------------------------------------------------------------------- /Source/core/ui-test/ui_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/ui-test/ui_test.cpp -------------------------------------------------------------------------------- /Source/core/uid.cpp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Source/core/uid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/uid.hpp -------------------------------------------------------------------------------- /Source/core/utility/canvas.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/utility/canvas.hpp -------------------------------------------------------------------------------- /Source/core/utility/modmatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/utility/modmatrix.cpp -------------------------------------------------------------------------------- /Source/core/utility/modmatrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/utility/modmatrix.hpp -------------------------------------------------------------------------------- /Source/core/utility/primitives.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/utility/primitives.hpp -------------------------------------------------------------------------------- /Source/core/utility/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/utility/quaternion.hpp -------------------------------------------------------------------------------- /Source/core/utility/utility.cpp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Source/core/utility/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/utility/utility.hpp -------------------------------------------------------------------------------- /Source/core/utility/wavering.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/Source/core/utility/wavering.hpp -------------------------------------------------------------------------------- /spiro.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/p-o-l-e/spiro/HEAD/spiro.jucer --------------------------------------------------------------------------------