├── .github └── workflows │ └── cmake.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── Libraries ├── JUCE │ ├── .github │ │ ├── ISSUE_TEMPLATE │ │ │ ├── bug_report.yml │ │ │ └── config.yml │ │ ├── contributing.md │ │ ├── pull_request_template.md │ │ └── workflows │ │ │ └── check-cla.yml │ ├── .gitignore │ ├── .gitlab-ci.yml │ ├── BREAKING-CHANGES.txt │ ├── CMakeLists.txt │ ├── ChangeList.txt │ ├── LICENSE.md │ ├── README.md │ ├── docs │ │ ├── Accessibility.md │ │ ├── CMake API.md │ │ ├── JUCE Module Format.md │ │ ├── Linux Dependencies.md │ │ ├── README.md │ │ └── doxygen │ │ │ ├── Doxyfile │ │ │ ├── Makefile │ │ │ ├── make.bat │ │ │ └── process_source_files.py │ ├── examples │ │ ├── Assets │ │ │ ├── AudioLiveScrollingDisplay.h │ │ │ ├── Box2DTests │ │ │ │ ├── AddPair.h │ │ │ │ ├── ApplyForce.h │ │ │ │ ├── BodyTypes.h │ │ │ │ ├── Breakable.h │ │ │ │ ├── Bridge.h │ │ │ │ ├── BulletTest.h │ │ │ │ ├── Cantilever.h │ │ │ │ ├── Car.h │ │ │ │ ├── Chain.h │ │ │ │ ├── CharacterCollision.h │ │ │ │ ├── CollisionFiltering.h │ │ │ │ ├── CollisionProcessing.h │ │ │ │ ├── CompoundShapes.h │ │ │ │ ├── Confined.h │ │ │ │ ├── ContinuousTest.h │ │ │ │ ├── DistanceTest.h │ │ │ │ ├── Dominos.h │ │ │ │ ├── DumpShell.h │ │ │ │ ├── DynamicTreeTest.h │ │ │ │ ├── EdgeShapes.h │ │ │ │ ├── EdgeTest.h │ │ │ │ ├── Gears.h │ │ │ │ ├── OneSidedPlatform.h │ │ │ │ ├── Pinball.h │ │ │ │ ├── PolyCollision.h │ │ │ │ ├── PolyShapes.h │ │ │ │ ├── Prismatic.h │ │ │ │ ├── Pulleys.h │ │ │ │ ├── Pyramid.h │ │ │ │ ├── RayCast.h │ │ │ │ ├── Revolute.h │ │ │ │ ├── Rope.h │ │ │ │ ├── RopeJoint.h │ │ │ │ ├── SensorTest.h │ │ │ │ ├── ShapeEditing.h │ │ │ │ ├── SliderCrank.h │ │ │ │ ├── SphereStack.h │ │ │ │ ├── TestEntries.cpp │ │ │ │ ├── TheoJansen.h │ │ │ │ ├── Tiles.h │ │ │ │ ├── TimeOfImpact.h │ │ │ │ ├── Tumbler.h │ │ │ │ ├── VaryingFriction.h │ │ │ │ ├── VaryingRestitution.h │ │ │ │ ├── VerticalStack.h │ │ │ │ └── Web.h │ │ │ ├── DSPDemos_Common.h │ │ │ ├── DemoUtilities.h │ │ │ ├── Notifications │ │ │ │ ├── images │ │ │ │ │ ├── ic_stat_name.png │ │ │ │ │ ├── ic_stat_name10.png │ │ │ │ │ ├── ic_stat_name2.png │ │ │ │ │ ├── ic_stat_name3.png │ │ │ │ │ ├── ic_stat_name4.png │ │ │ │ │ ├── ic_stat_name5.png │ │ │ │ │ ├── ic_stat_name6.png │ │ │ │ │ ├── ic_stat_name7.png │ │ │ │ │ ├── ic_stat_name8.png │ │ │ │ │ └── ic_stat_name9.png │ │ │ │ └── sounds │ │ │ │ │ ├── demonstrative.caf │ │ │ │ │ ├── demonstrative.mp3 │ │ │ │ │ ├── isntit.caf │ │ │ │ │ ├── isntit.mp3 │ │ │ │ │ ├── jinglebellssms.caf │ │ │ │ │ ├── jinglebellssms.mp3 │ │ │ │ │ ├── served.caf │ │ │ │ │ ├── served.mp3 │ │ │ │ │ ├── solemn.caf │ │ │ │ │ └── solemn.mp3 │ │ │ ├── Purchases │ │ │ │ ├── Ed.png │ │ │ │ ├── Ed0.ogg │ │ │ │ ├── Ed1.ogg │ │ │ │ ├── Ed2.ogg │ │ │ │ ├── Fabian.png │ │ │ │ ├── Fabian0.ogg │ │ │ │ ├── Fabian1.ogg │ │ │ │ ├── Fabian2.ogg │ │ │ │ ├── JB.png │ │ │ │ ├── JB0.ogg │ │ │ │ ├── JB1.ogg │ │ │ │ ├── JB2.ogg │ │ │ │ ├── Jules.png │ │ │ │ ├── Jules0.ogg │ │ │ │ ├── Jules1.ogg │ │ │ │ ├── Jules2.ogg │ │ │ │ ├── Lukasz.png │ │ │ │ ├── Lukasz0.ogg │ │ │ │ ├── Lukasz1.ogg │ │ │ │ ├── Lukasz2.ogg │ │ │ │ ├── Robot.png │ │ │ │ ├── Robot0.ogg │ │ │ │ ├── Robot1.ogg │ │ │ │ ├── Robot2.ogg │ │ │ │ └── icon.png │ │ │ ├── Signing │ │ │ │ ├── InAppPurchase.keystore │ │ │ │ └── README.txt │ │ │ ├── WavefrontObjParser.h │ │ │ ├── cassette_recorder.wav │ │ │ ├── cello.wav │ │ │ ├── demo table data.xml │ │ │ ├── google-services.json │ │ │ ├── guitar_amp.wav │ │ │ ├── icons.zip │ │ │ ├── juce_icon.png │ │ │ ├── juce_icon_template.png │ │ │ ├── juce_module_info │ │ │ ├── portmeirion.jpg │ │ │ ├── power.png │ │ │ ├── proaudio.path │ │ │ ├── reverb_ir.wav │ │ │ ├── singing.ogg │ │ │ ├── teapot.obj │ │ │ ├── tile_background.png │ │ │ └── treedemo.xml │ │ ├── Audio │ │ │ ├── AudioAppDemo.h │ │ │ ├── AudioLatencyDemo.h │ │ │ ├── AudioPlaybackDemo.h │ │ │ ├── AudioRecordingDemo.h │ │ │ ├── AudioSettingsDemo.h │ │ │ ├── AudioSynthesiserDemo.h │ │ │ ├── CMakeLists.txt │ │ │ ├── MPEDemo.h │ │ │ ├── MidiDemo.h │ │ │ ├── PluckedStringsDemo.h │ │ │ └── SimpleFFTDemo.h │ │ ├── CMake │ │ │ ├── AudioPlugin │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── PluginEditor.cpp │ │ │ │ ├── PluginEditor.h │ │ │ │ ├── PluginProcessor.cpp │ │ │ │ └── PluginProcessor.h │ │ │ ├── CMakeLists.txt │ │ │ ├── ConsoleApp │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── Main.cpp │ │ │ └── GuiApp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Main.cpp │ │ │ │ ├── MainComponent.cpp │ │ │ │ └── MainComponent.h │ │ ├── CMakeLists.txt │ │ ├── DSP │ │ │ ├── CMakeLists.txt │ │ │ ├── ConvolutionDemo.h │ │ │ ├── FIRFilterDemo.h │ │ │ ├── GainDemo.h │ │ │ ├── IIRFilterDemo.h │ │ │ ├── OscillatorDemo.h │ │ │ ├── OverdriveDemo.h │ │ │ ├── SIMDRegisterDemo.h │ │ │ ├── StateVariableFilterDemo.h │ │ │ └── WaveShaperTanhDemo.h │ │ ├── DemoRunner │ │ │ ├── Builds │ │ │ │ ├── Android │ │ │ │ │ ├── app │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── build.gradle │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── debug │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ │ └── string.xml │ │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ │ ├── AudioLiveScrollingDisplay.h │ │ │ │ │ │ │ │ ├── Box2DTests │ │ │ │ │ │ │ │ │ ├── AddPair.h │ │ │ │ │ │ │ │ │ ├── ApplyForce.h │ │ │ │ │ │ │ │ │ ├── BodyTypes.h │ │ │ │ │ │ │ │ │ ├── Breakable.h │ │ │ │ │ │ │ │ │ ├── Bridge.h │ │ │ │ │ │ │ │ │ ├── BulletTest.h │ │ │ │ │ │ │ │ │ ├── Cantilever.h │ │ │ │ │ │ │ │ │ ├── Car.h │ │ │ │ │ │ │ │ │ ├── Chain.h │ │ │ │ │ │ │ │ │ ├── CharacterCollision.h │ │ │ │ │ │ │ │ │ ├── CollisionFiltering.h │ │ │ │ │ │ │ │ │ ├── CollisionProcessing.h │ │ │ │ │ │ │ │ │ ├── CompoundShapes.h │ │ │ │ │ │ │ │ │ ├── Confined.h │ │ │ │ │ │ │ │ │ ├── ContinuousTest.h │ │ │ │ │ │ │ │ │ ├── DistanceTest.h │ │ │ │ │ │ │ │ │ ├── Dominos.h │ │ │ │ │ │ │ │ │ ├── DumpShell.h │ │ │ │ │ │ │ │ │ ├── DynamicTreeTest.h │ │ │ │ │ │ │ │ │ ├── EdgeShapes.h │ │ │ │ │ │ │ │ │ ├── EdgeTest.h │ │ │ │ │ │ │ │ │ ├── Gears.h │ │ │ │ │ │ │ │ │ ├── OneSidedPlatform.h │ │ │ │ │ │ │ │ │ ├── Pinball.h │ │ │ │ │ │ │ │ │ ├── PolyCollision.h │ │ │ │ │ │ │ │ │ ├── PolyShapes.h │ │ │ │ │ │ │ │ │ ├── Prismatic.h │ │ │ │ │ │ │ │ │ ├── Pulleys.h │ │ │ │ │ │ │ │ │ ├── Pyramid.h │ │ │ │ │ │ │ │ │ ├── RayCast.h │ │ │ │ │ │ │ │ │ ├── Revolute.h │ │ │ │ │ │ │ │ │ ├── Rope.h │ │ │ │ │ │ │ │ │ ├── RopeJoint.h │ │ │ │ │ │ │ │ │ ├── SensorTest.h │ │ │ │ │ │ │ │ │ ├── ShapeEditing.h │ │ │ │ │ │ │ │ │ ├── SliderCrank.h │ │ │ │ │ │ │ │ │ ├── SphereStack.h │ │ │ │ │ │ │ │ │ ├── TestEntries.cpp │ │ │ │ │ │ │ │ │ ├── TheoJansen.h │ │ │ │ │ │ │ │ │ ├── Tiles.h │ │ │ │ │ │ │ │ │ ├── TimeOfImpact.h │ │ │ │ │ │ │ │ │ ├── Tumbler.h │ │ │ │ │ │ │ │ │ ├── VaryingFriction.h │ │ │ │ │ │ │ │ │ ├── VaryingRestitution.h │ │ │ │ │ │ │ │ │ ├── VerticalStack.h │ │ │ │ │ │ │ │ │ └── Web.h │ │ │ │ │ │ │ │ ├── DSPDemos_Common.h │ │ │ │ │ │ │ │ ├── DemoUtilities.h │ │ │ │ │ │ │ │ ├── Notifications │ │ │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ │ │ ├── ic_stat_name.png │ │ │ │ │ │ │ │ │ │ ├── ic_stat_name10.png │ │ │ │ │ │ │ │ │ │ ├── ic_stat_name2.png │ │ │ │ │ │ │ │ │ │ ├── ic_stat_name3.png │ │ │ │ │ │ │ │ │ │ ├── ic_stat_name4.png │ │ │ │ │ │ │ │ │ │ ├── ic_stat_name5.png │ │ │ │ │ │ │ │ │ │ ├── ic_stat_name6.png │ │ │ │ │ │ │ │ │ │ ├── ic_stat_name7.png │ │ │ │ │ │ │ │ │ │ ├── ic_stat_name8.png │ │ │ │ │ │ │ │ │ │ └── ic_stat_name9.png │ │ │ │ │ │ │ │ │ └── sounds │ │ │ │ │ │ │ │ │ │ ├── demonstrative.caf │ │ │ │ │ │ │ │ │ │ ├── demonstrative.mp3 │ │ │ │ │ │ │ │ │ │ ├── isntit.caf │ │ │ │ │ │ │ │ │ │ ├── isntit.mp3 │ │ │ │ │ │ │ │ │ │ ├── jinglebellssms.caf │ │ │ │ │ │ │ │ │ │ ├── jinglebellssms.mp3 │ │ │ │ │ │ │ │ │ │ ├── served.caf │ │ │ │ │ │ │ │ │ │ ├── served.mp3 │ │ │ │ │ │ │ │ │ │ ├── solemn.caf │ │ │ │ │ │ │ │ │ │ └── solemn.mp3 │ │ │ │ │ │ │ │ ├── Purchases │ │ │ │ │ │ │ │ │ ├── Ed.png │ │ │ │ │ │ │ │ │ ├── Ed0.ogg │ │ │ │ │ │ │ │ │ ├── Ed1.ogg │ │ │ │ │ │ │ │ │ ├── Ed2.ogg │ │ │ │ │ │ │ │ │ ├── Fabian.png │ │ │ │ │ │ │ │ │ ├── Fabian0.ogg │ │ │ │ │ │ │ │ │ ├── Fabian1.ogg │ │ │ │ │ │ │ │ │ ├── Fabian2.ogg │ │ │ │ │ │ │ │ │ ├── JB.png │ │ │ │ │ │ │ │ │ ├── JB0.ogg │ │ │ │ │ │ │ │ │ ├── JB1.ogg │ │ │ │ │ │ │ │ │ ├── JB2.ogg │ │ │ │ │ │ │ │ │ ├── Jules.png │ │ │ │ │ │ │ │ │ ├── Jules0.ogg │ │ │ │ │ │ │ │ │ ├── Jules1.ogg │ │ │ │ │ │ │ │ │ ├── Jules2.ogg │ │ │ │ │ │ │ │ │ ├── Lukasz.png │ │ │ │ │ │ │ │ │ ├── Lukasz0.ogg │ │ │ │ │ │ │ │ │ ├── Lukasz1.ogg │ │ │ │ │ │ │ │ │ ├── Lukasz2.ogg │ │ │ │ │ │ │ │ │ ├── Robot.png │ │ │ │ │ │ │ │ │ ├── Robot0.ogg │ │ │ │ │ │ │ │ │ ├── Robot1.ogg │ │ │ │ │ │ │ │ │ ├── Robot2.ogg │ │ │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ │ │ ├── Signing │ │ │ │ │ │ │ │ │ ├── InAppPurchase.keystore │ │ │ │ │ │ │ │ │ └── README.txt │ │ │ │ │ │ │ │ ├── WavefrontObjParser.h │ │ │ │ │ │ │ │ ├── cassette_recorder.wav │ │ │ │ │ │ │ │ ├── cello.wav │ │ │ │ │ │ │ │ ├── demo table data.xml │ │ │ │ │ │ │ │ ├── google-services.json │ │ │ │ │ │ │ │ ├── guitar_amp.wav │ │ │ │ │ │ │ │ ├── icons.zip │ │ │ │ │ │ │ │ ├── juce_icon.png │ │ │ │ │ │ │ │ ├── juce_icon_template.png │ │ │ │ │ │ │ │ ├── juce_module_info │ │ │ │ │ │ │ │ ├── portmeirion.jpg │ │ │ │ │ │ │ │ ├── power.png │ │ │ │ │ │ │ │ ├── proaudio.path │ │ │ │ │ │ │ │ ├── reverb_ir.wav │ │ │ │ │ │ │ │ ├── singing.ogg │ │ │ │ │ │ │ │ ├── teapot.obj │ │ │ │ │ │ │ │ ├── tile_background.png │ │ │ │ │ │ │ │ └── treedemo.xml │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ │ │ ├── drawable-ldpi │ │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ │ │ └── drawable-xhdpi │ │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ │ └── release │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ └── string.xml │ │ │ │ │ ├── build.gradle │ │ │ │ │ ├── gradle │ │ │ │ │ │ └── wrapper │ │ │ │ │ │ │ ├── LICENSE-for-gradlewrapper.txt │ │ │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ │ ├── gradlew │ │ │ │ │ ├── gradlew.bat │ │ │ │ │ └── settings.gradle │ │ │ │ ├── LinuxMakefile │ │ │ │ │ └── Makefile │ │ │ │ ├── MacOSX │ │ │ │ │ ├── DemoRunner.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── Icon.icns │ │ │ │ │ ├── Info-App.plist │ │ │ │ │ └── RecentFilesMenuTemplate.nib │ │ │ │ ├── VisualStudio2015 │ │ │ │ │ ├── DemoRunner.sln │ │ │ │ │ ├── DemoRunner_App.vcxproj │ │ │ │ │ ├── DemoRunner_App.vcxproj.filters │ │ │ │ │ ├── icon.ico │ │ │ │ │ └── resources.rc │ │ │ │ ├── VisualStudio2017 │ │ │ │ │ ├── DemoRunner.sln │ │ │ │ │ ├── DemoRunner_App.vcxproj │ │ │ │ │ ├── DemoRunner_App.vcxproj.filters │ │ │ │ │ ├── icon.ico │ │ │ │ │ └── resources.rc │ │ │ │ ├── VisualStudio2019 │ │ │ │ │ ├── DemoRunner.sln │ │ │ │ │ ├── DemoRunner_App.vcxproj │ │ │ │ │ ├── DemoRunner_App.vcxproj.filters │ │ │ │ │ ├── icon.ico │ │ │ │ │ └── resources.rc │ │ │ │ ├── VisualStudio2022 │ │ │ │ │ ├── DemoRunner.sln │ │ │ │ │ ├── DemoRunner_App.vcxproj │ │ │ │ │ ├── DemoRunner_App.vcxproj.filters │ │ │ │ │ ├── icon.ico │ │ │ │ │ └── resources.rc │ │ │ │ └── iOS │ │ │ │ │ ├── App.entitlements │ │ │ │ │ ├── DemoRunner.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── DemoRunner │ │ │ │ │ └── Images.xcassets │ │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Icon-29.png │ │ │ │ │ │ ├── Icon-29@2x.png │ │ │ │ │ │ ├── Icon-29@3x.png │ │ │ │ │ │ ├── Icon-60@2x.png │ │ │ │ │ │ ├── Icon-72.png │ │ │ │ │ │ ├── Icon-72@2x.png │ │ │ │ │ │ ├── Icon-76.png │ │ │ │ │ │ ├── Icon-76@2x.png │ │ │ │ │ │ ├── Icon-83.5@2x.png │ │ │ │ │ │ ├── Icon-@3x.png │ │ │ │ │ │ ├── Icon-AppStore-1024.png │ │ │ │ │ │ ├── Icon-Notification-20@2x.png │ │ │ │ │ │ ├── Icon-Notification-20@3x.png │ │ │ │ │ │ ├── Icon-Notifications-20.png │ │ │ │ │ │ ├── Icon-Notifications-20@2x.png │ │ │ │ │ │ ├── Icon-Small-1.png │ │ │ │ │ │ ├── Icon-Small-50.png │ │ │ │ │ │ ├── Icon-Small-50@2x.png │ │ │ │ │ │ ├── Icon-Small@2x-1.png │ │ │ │ │ │ ├── Icon-Spotlight-40.png │ │ │ │ │ │ ├── Icon-Spotlight-40@2x-1.png │ │ │ │ │ │ ├── Icon-Spotlight-40@2x.png │ │ │ │ │ │ ├── Icon-Spotlight-40@3x.png │ │ │ │ │ │ ├── Icon.png │ │ │ │ │ │ └── Icon@2x.png │ │ │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── LaunchImage-ipad-landscape-1x.png │ │ │ │ │ │ ├── LaunchImage-ipad-landscape-2x.png │ │ │ │ │ │ ├── LaunchImage-ipad-portrait-1x.png │ │ │ │ │ │ ├── LaunchImage-ipad-portrait-2x.png │ │ │ │ │ │ ├── LaunchImage-iphone-2x.png │ │ │ │ │ │ └── LaunchImage-iphone-retina4.png │ │ │ │ │ ├── Icon.icns │ │ │ │ │ ├── Info-App.plist │ │ │ │ │ └── LaunchScreen.storyboard │ │ │ ├── CMakeLists.txt │ │ │ ├── DemoRunner.jucer │ │ │ ├── JuceLibraryCode │ │ │ │ ├── JuceHeader.h │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── include_juce_analytics.cpp │ │ │ │ ├── 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_processors.cpp │ │ │ │ ├── include_juce_audio_processors.mm │ │ │ │ ├── include_juce_audio_utils.cpp │ │ │ │ ├── include_juce_audio_utils.mm │ │ │ │ ├── include_juce_box2d.cpp │ │ │ │ ├── include_juce_core.cpp │ │ │ │ ├── include_juce_core.mm │ │ │ │ ├── include_juce_cryptography.cpp │ │ │ │ ├── include_juce_cryptography.mm │ │ │ │ ├── include_juce_data_structures.cpp │ │ │ │ ├── include_juce_data_structures.mm │ │ │ │ ├── include_juce_dsp.cpp │ │ │ │ ├── include_juce_dsp.mm │ │ │ │ ├── include_juce_events.cpp │ │ │ │ ├── include_juce_events.mm │ │ │ │ ├── include_juce_graphics.cpp │ │ │ │ ├── include_juce_graphics.mm │ │ │ │ ├── include_juce_gui_basics.cpp │ │ │ │ ├── include_juce_gui_basics.mm │ │ │ │ ├── include_juce_gui_extra.cpp │ │ │ │ ├── include_juce_gui_extra.mm │ │ │ │ ├── include_juce_opengl.cpp │ │ │ │ ├── include_juce_opengl.mm │ │ │ │ ├── include_juce_osc.cpp │ │ │ │ ├── include_juce_product_unlocking.cpp │ │ │ │ ├── include_juce_product_unlocking.mm │ │ │ │ ├── include_juce_video.cpp │ │ │ │ └── include_juce_video.mm │ │ │ └── Source │ │ │ │ ├── Demos │ │ │ │ ├── DemoPIPs1.cpp │ │ │ │ ├── DemoPIPs2.cpp │ │ │ │ ├── IntroScreen.h │ │ │ │ ├── JUCEDemos.cpp │ │ │ │ └── JUCEDemos.h │ │ │ │ ├── JUCEAppIcon.png │ │ │ │ ├── Main.cpp │ │ │ │ └── UI │ │ │ │ ├── DemoContentComponent.cpp │ │ │ │ ├── DemoContentComponent.h │ │ │ │ ├── MainComponent.cpp │ │ │ │ ├── MainComponent.h │ │ │ │ └── SettingsContent.h │ │ ├── GUI │ │ │ ├── AccessibilityDemo.h │ │ │ ├── AnimationAppDemo.h │ │ │ ├── AnimationDemo.h │ │ │ ├── BouncingBallWavetableDemo.h │ │ │ ├── CMakeLists.txt │ │ │ ├── CameraDemo.h │ │ │ ├── CodeEditorDemo.h │ │ │ ├── ComponentDemo.h │ │ │ ├── ComponentTransformsDemo.h │ │ │ ├── DialogsDemo.h │ │ │ ├── FlexBoxDemo.h │ │ │ ├── FontsDemo.h │ │ │ ├── GraphicsDemo.h │ │ │ ├── GridDemo.h │ │ │ ├── HelloWorldDemo.h │ │ │ ├── ImagesDemo.h │ │ │ ├── KeyMappingsDemo.h │ │ │ ├── LookAndFeelDemo.h │ │ │ ├── MDIDemo.h │ │ │ ├── MenusDemo.h │ │ │ ├── MultiTouchDemo.h │ │ │ ├── OpenGLAppDemo.h │ │ │ ├── OpenGLDemo.h │ │ │ ├── OpenGLDemo2D.h │ │ │ ├── PropertiesDemo.h │ │ │ ├── VideoDemo.h │ │ │ ├── WebBrowserDemo.h │ │ │ ├── WidgetsDemo.h │ │ │ └── WindowsDemo.h │ │ ├── Plugins │ │ │ ├── AUv3SynthPluginDemo.h │ │ │ ├── ArpeggiatorPluginDemo.h │ │ │ ├── AudioPluginDemo.h │ │ │ ├── CMakeLists.txt │ │ │ ├── DSPModulePluginDemo.h │ │ │ ├── GainPluginDemo.h │ │ │ ├── InterAppAudioEffectPluginDemo.h │ │ │ ├── MidiLoggerPluginDemo.h │ │ │ ├── MultiOutSynthPluginDemo.h │ │ │ ├── NoiseGatePluginDemo.h │ │ │ ├── ReaperEmbeddedViewPluginDemo.h │ │ │ ├── SamplerPluginDemo.h │ │ │ ├── SurroundPluginDemo.h │ │ │ └── extern │ │ │ │ ├── LICENSE.md │ │ │ │ ├── reaper_plugin_fx_embed.h │ │ │ │ └── reaper_vst3_interfaces.h │ │ └── Utilities │ │ │ ├── AnalyticsCollectionDemo.h │ │ │ ├── Box2DDemo.h │ │ │ ├── CMakeLists.txt │ │ │ ├── ChildProcessDemo.h │ │ │ ├── CryptographyDemo.h │ │ │ ├── InAppPurchasesDemo.h │ │ │ ├── JavaScriptDemo.h │ │ │ ├── LiveConstantDemo.h │ │ │ ├── MultithreadingDemo.h │ │ │ ├── NetworkingDemo.h │ │ │ ├── OSCDemo.h │ │ │ ├── PushNotificationsDemo.h │ │ │ ├── SystemInfoDemo.h │ │ │ ├── TimersAndEventsDemo.h │ │ │ ├── UnitTestsDemo.h │ │ │ ├── ValueTreesDemo.h │ │ │ └── XMLandJSONDemo.h │ ├── extras │ │ ├── AudioPerformanceTest │ │ │ ├── AudioPerformanceTest.jucer │ │ │ ├── Builds │ │ │ │ ├── Android │ │ │ │ │ ├── app │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── build.gradle │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── debug │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ │ └── string.xml │ │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ │ │ └── release │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ └── string.xml │ │ │ │ │ ├── build.gradle │ │ │ │ │ ├── gradle │ │ │ │ │ │ └── wrapper │ │ │ │ │ │ │ ├── LICENSE-for-gradlewrapper.txt │ │ │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ │ ├── gradlew │ │ │ │ │ ├── gradlew.bat │ │ │ │ │ └── settings.gradle │ │ │ │ ├── LinuxMakefile │ │ │ │ │ └── Makefile │ │ │ │ ├── MacOSX │ │ │ │ │ ├── AudioPerformanceTest.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── Info-App.plist │ │ │ │ │ └── RecentFilesMenuTemplate.nib │ │ │ │ ├── VisualStudio2022 │ │ │ │ │ ├── AudioPerformanceTest.sln │ │ │ │ │ ├── AudioPerformanceTest_App.vcxproj │ │ │ │ │ ├── AudioPerformanceTest_App.vcxproj.filters │ │ │ │ │ └── resources.rc │ │ │ │ └── iOS │ │ │ │ │ ├── AudioPerformanceTest.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── AudioPerformanceTest │ │ │ │ │ └── Images.xcassets │ │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── LaunchImage-ipad-landscape-1x.png │ │ │ │ │ │ ├── LaunchImage-ipad-landscape-2x.png │ │ │ │ │ │ ├── LaunchImage-ipad-portrait-1x.png │ │ │ │ │ │ ├── LaunchImage-ipad-portrait-2x.png │ │ │ │ │ │ ├── LaunchImage-iphone-2x.png │ │ │ │ │ │ └── LaunchImage-iphone-retina4.png │ │ │ │ │ ├── Info-App.plist │ │ │ │ │ └── LaunchScreen.storyboard │ │ │ ├── CMakeLists.txt │ │ │ ├── JuceLibraryCode │ │ │ │ ├── JuceHeader.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_processors.cpp │ │ │ │ ├── include_juce_audio_processors.mm │ │ │ │ ├── include_juce_audio_utils.cpp │ │ │ │ ├── include_juce_audio_utils.mm │ │ │ │ ├── include_juce_core.cpp │ │ │ │ ├── include_juce_core.mm │ │ │ │ ├── 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_gui_basics.cpp │ │ │ │ ├── include_juce_gui_basics.mm │ │ │ │ ├── include_juce_gui_extra.cpp │ │ │ │ └── include_juce_gui_extra.mm │ │ │ └── Source │ │ │ │ ├── Main.cpp │ │ │ │ └── MainComponent.h │ │ ├── AudioPluginHost │ │ │ ├── AudioPluginHost.jucer │ │ │ ├── Builds │ │ │ │ ├── Android │ │ │ │ │ ├── app │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── build.gradle │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── debug │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ │ └── string.xml │ │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ │ ├── AudioLiveScrollingDisplay.h │ │ │ │ │ │ │ │ ├── Box2DTests │ │ │ │ │ │ │ │ │ ├── AddPair.h │ │ │ │ │ │ │ │ │ ├── ApplyForce.h │ │ │ │ │ │ │ │ │ ├── BodyTypes.h │ │ │ │ │ │ │ │ │ ├── Breakable.h │ │ │ │ │ │ │ │ │ ├── Bridge.h │ │ │ │ │ │ │ │ │ ├── BulletTest.h │ │ │ │ │ │ │ │ │ ├── Cantilever.h │ │ │ │ │ │ │ │ │ ├── Car.h │ │ │ │ │ │ │ │ │ ├── Chain.h │ │ │ │ │ │ │ │ │ ├── CharacterCollision.h │ │ │ │ │ │ │ │ │ ├── CollisionFiltering.h │ │ │ │ │ │ │ │ │ ├── CollisionProcessing.h │ │ │ │ │ │ │ │ │ ├── CompoundShapes.h │ │ │ │ │ │ │ │ │ ├── Confined.h │ │ │ │ │ │ │ │ │ ├── ContinuousTest.h │ │ │ │ │ │ │ │ │ ├── DistanceTest.h │ │ │ │ │ │ │ │ │ ├── Dominos.h │ │ │ │ │ │ │ │ │ ├── DumpShell.h │ │ │ │ │ │ │ │ │ ├── DynamicTreeTest.h │ │ │ │ │ │ │ │ │ ├── EdgeShapes.h │ │ │ │ │ │ │ │ │ ├── EdgeTest.h │ │ │ │ │ │ │ │ │ ├── Gears.h │ │ │ │ │ │ │ │ │ ├── OneSidedPlatform.h │ │ │ │ │ │ │ │ │ ├── Pinball.h │ │ │ │ │ │ │ │ │ ├── PolyCollision.h │ │ │ │ │ │ │ │ │ ├── PolyShapes.h │ │ │ │ │ │ │ │ │ ├── Prismatic.h │ │ │ │ │ │ │ │ │ ├── Pulleys.h │ │ │ │ │ │ │ │ │ ├── Pyramid.h │ │ │ │ │ │ │ │ │ ├── RayCast.h │ │ │ │ │ │ │ │ │ ├── Revolute.h │ │ │ │ │ │ │ │ │ ├── Rope.h │ │ │ │ │ │ │ │ │ ├── RopeJoint.h │ │ │ │ │ │ │ │ │ ├── SensorTest.h │ │ │ │ │ │ │ │ │ ├── ShapeEditing.h │ │ │ │ │ │ │ │ │ ├── SliderCrank.h │ │ │ │ │ │ │ │ │ ├── SphereStack.h │ │ │ │ │ │ │ │ │ ├── TestEntries.cpp │ │ │ │ │ │ │ │ │ ├── TheoJansen.h │ │ │ │ │ │ │ │ │ ├── Tiles.h │ │ │ │ │ │ │ │ │ ├── TimeOfImpact.h │ │ │ │ │ │ │ │ │ ├── Tumbler.h │ │ │ │ │ │ │ │ │ ├── VaryingFriction.h │ │ │ │ │ │ │ │ │ ├── VaryingRestitution.h │ │ │ │ │ │ │ │ │ ├── VerticalStack.h │ │ │ │ │ │ │ │ │ └── Web.h │ │ │ │ │ │ │ │ ├── DSPDemos_Common.h │ │ │ │ │ │ │ │ ├── DemoUtilities.h │ │ │ │ │ │ │ │ ├── Notifications │ │ │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ │ │ ├── ic_stat_name.png │ │ │ │ │ │ │ │ │ │ ├── ic_stat_name10.png │ │ │ │ │ │ │ │ │ │ ├── ic_stat_name2.png │ │ │ │ │ │ │ │ │ │ ├── ic_stat_name3.png │ │ │ │ │ │ │ │ │ │ ├── ic_stat_name4.png │ │ │ │ │ │ │ │ │ │ ├── ic_stat_name5.png │ │ │ │ │ │ │ │ │ │ ├── ic_stat_name6.png │ │ │ │ │ │ │ │ │ │ ├── ic_stat_name7.png │ │ │ │ │ │ │ │ │ │ ├── ic_stat_name8.png │ │ │ │ │ │ │ │ │ │ └── ic_stat_name9.png │ │ │ │ │ │ │ │ │ └── sounds │ │ │ │ │ │ │ │ │ │ ├── demonstrative.caf │ │ │ │ │ │ │ │ │ │ ├── demonstrative.mp3 │ │ │ │ │ │ │ │ │ │ ├── isntit.caf │ │ │ │ │ │ │ │ │ │ ├── isntit.mp3 │ │ │ │ │ │ │ │ │ │ ├── jinglebellssms.caf │ │ │ │ │ │ │ │ │ │ ├── jinglebellssms.mp3 │ │ │ │ │ │ │ │ │ │ ├── served.caf │ │ │ │ │ │ │ │ │ │ ├── served.mp3 │ │ │ │ │ │ │ │ │ │ ├── solemn.caf │ │ │ │ │ │ │ │ │ │ └── solemn.mp3 │ │ │ │ │ │ │ │ ├── Purchases │ │ │ │ │ │ │ │ │ ├── Ed.png │ │ │ │ │ │ │ │ │ ├── Ed0.ogg │ │ │ │ │ │ │ │ │ ├── Ed1.ogg │ │ │ │ │ │ │ │ │ ├── Ed2.ogg │ │ │ │ │ │ │ │ │ ├── Fabian.png │ │ │ │ │ │ │ │ │ ├── Fabian0.ogg │ │ │ │ │ │ │ │ │ ├── Fabian1.ogg │ │ │ │ │ │ │ │ │ ├── Fabian2.ogg │ │ │ │ │ │ │ │ │ ├── JB.png │ │ │ │ │ │ │ │ │ ├── JB0.ogg │ │ │ │ │ │ │ │ │ ├── JB1.ogg │ │ │ │ │ │ │ │ │ ├── JB2.ogg │ │ │ │ │ │ │ │ │ ├── Jules.png │ │ │ │ │ │ │ │ │ ├── Jules0.ogg │ │ │ │ │ │ │ │ │ ├── Jules1.ogg │ │ │ │ │ │ │ │ │ ├── Jules2.ogg │ │ │ │ │ │ │ │ │ ├── Lukasz.png │ │ │ │ │ │ │ │ │ ├── Lukasz0.ogg │ │ │ │ │ │ │ │ │ ├── Lukasz1.ogg │ │ │ │ │ │ │ │ │ ├── Lukasz2.ogg │ │ │ │ │ │ │ │ │ ├── Robot.png │ │ │ │ │ │ │ │ │ ├── Robot0.ogg │ │ │ │ │ │ │ │ │ ├── Robot1.ogg │ │ │ │ │ │ │ │ │ ├── Robot2.ogg │ │ │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ │ │ ├── Signing │ │ │ │ │ │ │ │ │ ├── InAppPurchase.keystore │ │ │ │ │ │ │ │ │ └── README.txt │ │ │ │ │ │ │ │ ├── WavefrontObjParser.h │ │ │ │ │ │ │ │ ├── cassette_recorder.wav │ │ │ │ │ │ │ │ ├── cello.wav │ │ │ │ │ │ │ │ ├── demo table data.xml │ │ │ │ │ │ │ │ ├── google-services.json │ │ │ │ │ │ │ │ ├── guitar_amp.wav │ │ │ │ │ │ │ │ ├── icons.zip │ │ │ │ │ │ │ │ ├── juce_icon.png │ │ │ │ │ │ │ │ ├── juce_icon_template.png │ │ │ │ │ │ │ │ ├── juce_module_info │ │ │ │ │ │ │ │ ├── portmeirion.jpg │ │ │ │ │ │ │ │ ├── power.png │ │ │ │ │ │ │ │ ├── proaudio.path │ │ │ │ │ │ │ │ ├── reverb_ir.wav │ │ │ │ │ │ │ │ ├── singing.ogg │ │ │ │ │ │ │ │ ├── teapot.obj │ │ │ │ │ │ │ │ ├── tile_background.png │ │ │ │ │ │ │ │ └── treedemo.xml │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ │ │ ├── drawable-ldpi │ │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ │ │ └── drawable-xhdpi │ │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ │ └── release │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ └── string.xml │ │ │ │ │ ├── build.gradle │ │ │ │ │ ├── gradle │ │ │ │ │ │ └── wrapper │ │ │ │ │ │ │ ├── LICENSE-for-gradlewrapper.txt │ │ │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ │ ├── gradlew │ │ │ │ │ ├── gradlew.bat │ │ │ │ │ └── settings.gradle │ │ │ │ ├── LinuxMakefile │ │ │ │ │ └── Makefile │ │ │ │ ├── MacOSX │ │ │ │ │ ├── AudioPluginHost.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── Icon.icns │ │ │ │ │ ├── Info-App.plist │ │ │ │ │ └── RecentFilesMenuTemplate.nib │ │ │ │ ├── VisualStudio2015 │ │ │ │ │ ├── AudioPluginHost.sln │ │ │ │ │ ├── AudioPluginHost_App.vcxproj │ │ │ │ │ ├── AudioPluginHost_App.vcxproj.filters │ │ │ │ │ ├── icon.ico │ │ │ │ │ └── resources.rc │ │ │ │ ├── VisualStudio2017 │ │ │ │ │ ├── AudioPluginHost.sln │ │ │ │ │ ├── AudioPluginHost_App.vcxproj │ │ │ │ │ ├── AudioPluginHost_App.vcxproj.filters │ │ │ │ │ ├── icon.ico │ │ │ │ │ └── resources.rc │ │ │ │ ├── VisualStudio2019 │ │ │ │ │ ├── AudioPluginHost.sln │ │ │ │ │ ├── AudioPluginHost_App.vcxproj │ │ │ │ │ ├── AudioPluginHost_App.vcxproj.filters │ │ │ │ │ ├── icon.ico │ │ │ │ │ └── resources.rc │ │ │ │ ├── VisualStudio2022 │ │ │ │ │ ├── AudioPluginHost.sln │ │ │ │ │ ├── AudioPluginHost_App.vcxproj │ │ │ │ │ ├── AudioPluginHost_App.vcxproj.filters │ │ │ │ │ ├── icon.ico │ │ │ │ │ └── resources.rc │ │ │ │ └── iOS │ │ │ │ │ ├── AudioPluginHost.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── AudioPluginHost │ │ │ │ │ └── Images.xcassets │ │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Icon-29.png │ │ │ │ │ │ ├── Icon-29@2x.png │ │ │ │ │ │ ├── Icon-29@3x.png │ │ │ │ │ │ ├── Icon-60@2x.png │ │ │ │ │ │ ├── Icon-72.png │ │ │ │ │ │ ├── Icon-72@2x.png │ │ │ │ │ │ ├── Icon-76.png │ │ │ │ │ │ ├── Icon-76@2x.png │ │ │ │ │ │ ├── Icon-83.5@2x.png │ │ │ │ │ │ ├── Icon-@3x.png │ │ │ │ │ │ ├── Icon-AppStore-1024.png │ │ │ │ │ │ ├── Icon-Notification-20@2x.png │ │ │ │ │ │ ├── Icon-Notification-20@3x.png │ │ │ │ │ │ ├── Icon-Notifications-20.png │ │ │ │ │ │ ├── Icon-Notifications-20@2x.png │ │ │ │ │ │ ├── Icon-Small-1.png │ │ │ │ │ │ ├── Icon-Small-50.png │ │ │ │ │ │ ├── Icon-Small-50@2x.png │ │ │ │ │ │ ├── Icon-Small@2x-1.png │ │ │ │ │ │ ├── Icon-Spotlight-40.png │ │ │ │ │ │ ├── Icon-Spotlight-40@2x-1.png │ │ │ │ │ │ ├── Icon-Spotlight-40@2x.png │ │ │ │ │ │ ├── Icon-Spotlight-40@3x.png │ │ │ │ │ │ ├── Icon.png │ │ │ │ │ │ └── Icon@2x.png │ │ │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── LaunchImage-ipad-landscape-1x.png │ │ │ │ │ │ ├── LaunchImage-ipad-landscape-2x.png │ │ │ │ │ │ ├── LaunchImage-ipad-portrait-1x.png │ │ │ │ │ │ ├── LaunchImage-ipad-portrait-2x.png │ │ │ │ │ │ ├── LaunchImage-iphone-2x.png │ │ │ │ │ │ └── LaunchImage-iphone-retina4.png │ │ │ │ │ ├── Icon.icns │ │ │ │ │ ├── Info-App.plist │ │ │ │ │ └── LaunchScreen.storyboard │ │ │ ├── CMakeLists.txt │ │ │ ├── JuceLibraryCode │ │ │ │ ├── BinaryData.cpp │ │ │ │ ├── BinaryData.h │ │ │ │ ├── JuceHeader.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_processors.cpp │ │ │ │ ├── include_juce_audio_processors.mm │ │ │ │ ├── include_juce_audio_utils.cpp │ │ │ │ ├── include_juce_audio_utils.mm │ │ │ │ ├── include_juce_core.cpp │ │ │ │ ├── include_juce_core.mm │ │ │ │ ├── include_juce_cryptography.cpp │ │ │ │ ├── include_juce_cryptography.mm │ │ │ │ ├── include_juce_data_structures.cpp │ │ │ │ ├── include_juce_data_structures.mm │ │ │ │ ├── include_juce_dsp.cpp │ │ │ │ ├── include_juce_dsp.mm │ │ │ │ ├── include_juce_events.cpp │ │ │ │ ├── include_juce_events.mm │ │ │ │ ├── include_juce_graphics.cpp │ │ │ │ ├── include_juce_graphics.mm │ │ │ │ ├── include_juce_gui_basics.cpp │ │ │ │ ├── include_juce_gui_basics.mm │ │ │ │ ├── include_juce_gui_extra.cpp │ │ │ │ ├── include_juce_gui_extra.mm │ │ │ │ ├── include_juce_opengl.cpp │ │ │ │ └── include_juce_opengl.mm │ │ │ └── Source │ │ │ │ ├── HostStartup.cpp │ │ │ │ ├── JUCEAppIcon.png │ │ │ │ ├── Plugins │ │ │ │ ├── IOConfigurationWindow.cpp │ │ │ │ ├── IOConfigurationWindow.h │ │ │ │ ├── InternalPlugins.cpp │ │ │ │ ├── InternalPlugins.h │ │ │ │ ├── PluginGraph.cpp │ │ │ │ └── PluginGraph.h │ │ │ │ └── UI │ │ │ │ ├── GraphEditorPanel.cpp │ │ │ │ ├── GraphEditorPanel.h │ │ │ │ ├── MainHostWindow.cpp │ │ │ │ ├── MainHostWindow.h │ │ │ │ └── PluginWindow.h │ │ ├── BinaryBuilder │ │ │ ├── BinaryBuilder.jucer │ │ │ ├── Builds │ │ │ │ ├── LinuxMakefile │ │ │ │ │ └── Makefile │ │ │ │ ├── MacOSX │ │ │ │ │ ├── BinaryBuilder.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ └── RecentFilesMenuTemplate.nib │ │ │ │ └── VisualStudio2022 │ │ │ │ │ ├── BinaryBuilder.sln │ │ │ │ │ ├── BinaryBuilder_ConsoleApp.vcxproj │ │ │ │ │ ├── BinaryBuilder_ConsoleApp.vcxproj.filters │ │ │ │ │ └── resources.rc │ │ │ ├── CMakeLists.txt │ │ │ ├── JuceLibraryCode │ │ │ │ ├── JuceHeader.h │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── include_juce_core.cpp │ │ │ │ └── include_juce_core.mm │ │ │ └── Source │ │ │ │ └── Main.cpp │ │ ├── Build │ │ │ ├── .DS_Store │ │ │ ├── CMake │ │ │ │ ├── JUCECheckAtomic.cmake │ │ │ │ ├── JUCEConfig.cmake.in │ │ │ │ ├── JUCEHelperTargets.cmake │ │ │ │ ├── JUCEModuleSupport.cmake │ │ │ │ ├── JUCEUtils.cmake │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ ├── PIPAudioProcessor.cpp.in │ │ │ │ ├── PIPComponent.cpp.in │ │ │ │ ├── PIPConsole.cpp.in │ │ │ │ ├── RecentFilesMenuTemplate.nib │ │ │ │ ├── UnityPluginGUIScript.cs.in │ │ │ │ ├── checkBundleSigning.cmake │ │ │ │ ├── copyDir.cmake │ │ │ │ └── juce_runtime_arch_detection.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── juce_build_tools │ │ │ │ ├── juce_build_tools.cpp │ │ │ │ ├── juce_build_tools.h │ │ │ │ └── utils │ │ │ │ │ ├── juce_BinaryResourceFile.cpp │ │ │ │ │ ├── juce_BinaryResourceFile.h │ │ │ │ │ ├── juce_BuildHelperFunctions.cpp │ │ │ │ │ ├── juce_BuildHelperFunctions.h │ │ │ │ │ ├── juce_CppTokeniserFunctions.cpp │ │ │ │ │ ├── juce_Entitlements.cpp │ │ │ │ │ ├── juce_Entitlements.h │ │ │ │ │ ├── juce_Icons.cpp │ │ │ │ │ ├── juce_Icons.h │ │ │ │ │ ├── juce_PlistOptions.cpp │ │ │ │ │ ├── juce_PlistOptions.h │ │ │ │ │ ├── juce_ProjectType.h │ │ │ │ │ ├── juce_RelativePath.h │ │ │ │ │ ├── juce_ResourceFileHelpers.cpp │ │ │ │ │ ├── juce_ResourceFileHelpers.h │ │ │ │ │ ├── juce_ResourceRc.cpp │ │ │ │ │ ├── juce_ResourceRc.h │ │ │ │ │ ├── juce_VersionNumbers.cpp │ │ │ │ │ └── juce_VersionNumbers.h │ │ │ └── juceaide │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── Main.cpp │ │ ├── CMakeLists.txt │ │ ├── NetworkGraphicsDemo │ │ │ ├── Builds │ │ │ │ ├── Android │ │ │ │ │ ├── app │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── build.gradle │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── debug │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ │ └── string.xml │ │ │ │ │ │ │ ├── main │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ │ └── drawable-mdpi │ │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ │ └── release │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ └── string.xml │ │ │ │ │ ├── build.gradle │ │ │ │ │ ├── gradle │ │ │ │ │ │ └── wrapper │ │ │ │ │ │ │ ├── LICENSE-for-gradlewrapper.txt │ │ │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ │ ├── gradlew │ │ │ │ │ ├── gradlew.bat │ │ │ │ │ └── settings.gradle │ │ │ │ ├── LinuxMakefile │ │ │ │ │ └── Makefile │ │ │ │ ├── MacOSX │ │ │ │ │ ├── Icon.icns │ │ │ │ │ ├── Info-App.plist │ │ │ │ │ ├── NetworkGraphicsDemo.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ └── RecentFilesMenuTemplate.nib │ │ │ │ ├── VisualStudio2022 │ │ │ │ │ ├── NetworkGraphicsDemo.sln │ │ │ │ │ ├── NetworkGraphicsDemo_App.vcxproj │ │ │ │ │ ├── NetworkGraphicsDemo_App.vcxproj.filters │ │ │ │ │ └── resources.rc │ │ │ │ └── iOS │ │ │ │ │ ├── Icon.icns │ │ │ │ │ ├── Info-App.plist │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ ├── NetworkGraphicsDemo.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ │ └── NetworkGraphicsDemo │ │ │ │ │ └── Images.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon-29.png │ │ │ │ │ ├── Icon-29@2x.png │ │ │ │ │ ├── Icon-29@3x.png │ │ │ │ │ ├── Icon-60@2x.png │ │ │ │ │ ├── Icon-72.png │ │ │ │ │ ├── Icon-72@2x.png │ │ │ │ │ ├── Icon-76.png │ │ │ │ │ ├── Icon-76@2x.png │ │ │ │ │ ├── Icon-83.5@2x.png │ │ │ │ │ ├── Icon-@3x.png │ │ │ │ │ ├── Icon-AppStore-1024.png │ │ │ │ │ ├── Icon-Notification-20@2x.png │ │ │ │ │ ├── Icon-Notification-20@3x.png │ │ │ │ │ ├── Icon-Notifications-20.png │ │ │ │ │ ├── Icon-Notifications-20@2x.png │ │ │ │ │ ├── Icon-Small-1.png │ │ │ │ │ ├── Icon-Small-50.png │ │ │ │ │ ├── Icon-Small-50@2x.png │ │ │ │ │ ├── Icon-Small@2x-1.png │ │ │ │ │ ├── Icon-Spotlight-40.png │ │ │ │ │ ├── Icon-Spotlight-40@2x-1.png │ │ │ │ │ ├── Icon-Spotlight-40@2x.png │ │ │ │ │ ├── Icon-Spotlight-40@3x.png │ │ │ │ │ ├── Icon.png │ │ │ │ │ └── Icon@2x.png │ │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── LaunchImage-ipad-landscape-1x.png │ │ │ │ │ ├── LaunchImage-ipad-landscape-2x.png │ │ │ │ │ ├── LaunchImage-ipad-portrait-1x.png │ │ │ │ │ ├── LaunchImage-ipad-portrait-2x.png │ │ │ │ │ ├── LaunchImage-iphone-2x.png │ │ │ │ │ └── LaunchImage-iphone-retina4.png │ │ │ ├── CMakeLists.txt │ │ │ ├── JuceLibraryCode │ │ │ │ ├── BinaryData.cpp │ │ │ │ ├── BinaryData.h │ │ │ │ ├── JuceHeader.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_processors.cpp │ │ │ │ ├── include_juce_audio_processors.mm │ │ │ │ ├── include_juce_audio_utils.cpp │ │ │ │ ├── include_juce_audio_utils.mm │ │ │ │ ├── include_juce_core.cpp │ │ │ │ ├── include_juce_core.mm │ │ │ │ ├── include_juce_cryptography.cpp │ │ │ │ ├── include_juce_cryptography.mm │ │ │ │ ├── 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_gui_basics.cpp │ │ │ │ ├── include_juce_gui_basics.mm │ │ │ │ ├── include_juce_gui_extra.cpp │ │ │ │ ├── include_juce_gui_extra.mm │ │ │ │ ├── include_juce_opengl.cpp │ │ │ │ ├── include_juce_opengl.mm │ │ │ │ └── include_juce_osc.cpp │ │ │ ├── NetworkGraphicsDemo.jucer │ │ │ ├── README.txt │ │ │ └── Source │ │ │ │ ├── ClientComponent.h │ │ │ │ ├── Demos.h │ │ │ │ ├── Main.cpp │ │ │ │ ├── MasterComponent.h │ │ │ │ ├── SharedCanvas.h │ │ │ │ └── juce_icon.png │ │ ├── Projucer │ │ │ ├── Builds │ │ │ │ ├── LinuxMakefile │ │ │ │ │ └── Makefile │ │ │ │ ├── MacOSX │ │ │ │ │ ├── Icon.icns │ │ │ │ │ ├── Info-App.plist │ │ │ │ │ ├── Projucer.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ │ └── RecentFilesMenuTemplate.nib │ │ │ │ ├── VisualStudio2015 │ │ │ │ │ ├── Projucer.sln │ │ │ │ │ ├── Projucer_App.vcxproj │ │ │ │ │ ├── Projucer_App.vcxproj.filters │ │ │ │ │ ├── icon.ico │ │ │ │ │ └── resources.rc │ │ │ │ ├── VisualStudio2017 │ │ │ │ │ ├── Projucer.sln │ │ │ │ │ ├── Projucer_App.vcxproj │ │ │ │ │ ├── Projucer_App.vcxproj.filters │ │ │ │ │ ├── icon.ico │ │ │ │ │ └── resources.rc │ │ │ │ ├── VisualStudio2019 │ │ │ │ │ ├── Projucer.sln │ │ │ │ │ ├── Projucer_App.vcxproj │ │ │ │ │ ├── Projucer_App.vcxproj.filters │ │ │ │ │ ├── icon.ico │ │ │ │ │ └── resources.rc │ │ │ │ └── VisualStudio2022 │ │ │ │ │ ├── Projucer.sln │ │ │ │ │ ├── Projucer_App.vcxproj │ │ │ │ │ ├── Projucer_App.vcxproj.filters │ │ │ │ │ ├── icon.ico │ │ │ │ │ └── resources.rc │ │ │ ├── CMakeLists.txt │ │ │ ├── JuceLibraryCode │ │ │ │ ├── BinaryData.cpp │ │ │ │ ├── BinaryData.h │ │ │ │ ├── JuceHeader.h │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── include_juce_build_tools.cpp │ │ │ │ ├── include_juce_core.cpp │ │ │ │ ├── include_juce_core.mm │ │ │ │ ├── include_juce_cryptography.cpp │ │ │ │ ├── include_juce_cryptography.mm │ │ │ │ ├── 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_gui_basics.cpp │ │ │ │ ├── include_juce_gui_basics.mm │ │ │ │ ├── include_juce_gui_extra.cpp │ │ │ │ └── include_juce_gui_extra.mm │ │ │ ├── Projucer.jucer │ │ │ └── Source │ │ │ │ ├── Application │ │ │ │ ├── StartPage │ │ │ │ │ ├── jucer_ContentComponents.h │ │ │ │ │ ├── jucer_NewProjectTemplates.h │ │ │ │ │ ├── jucer_NewProjectWizard.cpp │ │ │ │ │ ├── jucer_NewProjectWizard.h │ │ │ │ │ ├── jucer_StartPageComponent.cpp │ │ │ │ │ ├── jucer_StartPageComponent.h │ │ │ │ │ └── jucer_StartPageTreeHolder.h │ │ │ │ ├── UserAccount │ │ │ │ │ ├── jucer_LicenseController.h │ │ │ │ │ ├── jucer_LicenseQueryThread.h │ │ │ │ │ ├── jucer_LicenseState.h │ │ │ │ │ └── jucer_LoginFormComponent.h │ │ │ │ ├── Windows │ │ │ │ │ ├── jucer_AboutWindowComponent.h │ │ │ │ │ ├── jucer_EditorColourSchemeWindowComponent.h │ │ │ │ │ ├── jucer_FloatingToolWindow.h │ │ │ │ │ ├── jucer_GlobalPathsWindowComponent.h │ │ │ │ │ ├── jucer_PIPCreatorWindowComponent.h │ │ │ │ │ ├── jucer_SVGPathDataWindowComponent.h │ │ │ │ │ ├── jucer_TranslationToolWindowComponent.h │ │ │ │ │ └── jucer_UTF8WindowComponent.h │ │ │ │ ├── jucer_Application.cpp │ │ │ │ ├── jucer_Application.h │ │ │ │ ├── jucer_AutoUpdater.cpp │ │ │ │ ├── jucer_AutoUpdater.h │ │ │ │ ├── jucer_CommandIDs.h │ │ │ │ ├── jucer_CommandLine.cpp │ │ │ │ ├── jucer_CommandLine.h │ │ │ │ ├── jucer_CommonHeaders.h │ │ │ │ ├── jucer_Headers.h │ │ │ │ ├── jucer_Main.cpp │ │ │ │ ├── jucer_MainWindow.cpp │ │ │ │ └── jucer_MainWindow.h │ │ │ │ ├── BinaryData │ │ │ │ ├── Icons │ │ │ │ │ ├── background_logo.svg │ │ │ │ │ ├── export_android.svg │ │ │ │ │ ├── export_clion.svg │ │ │ │ │ ├── export_codeBlocks.svg │ │ │ │ │ ├── export_linux.svg │ │ │ │ │ ├── export_visualStudio.svg │ │ │ │ │ ├── export_xcode.svg │ │ │ │ │ ├── gpl_logo.svg │ │ │ │ │ ├── juce_icon.png │ │ │ │ │ ├── wizard_AnimatedApp.svg │ │ │ │ │ ├── wizard_AudioApp.svg │ │ │ │ │ ├── wizard_AudioPlugin.svg │ │ │ │ │ ├── wizard_ConsoleApp.svg │ │ │ │ │ ├── wizard_DLL.svg │ │ │ │ │ ├── wizard_GUI.svg │ │ │ │ │ ├── wizard_Highlight.svg │ │ │ │ │ ├── wizard_OpenGL.svg │ │ │ │ │ ├── wizard_Openfile.svg │ │ │ │ │ └── wizard_StaticLibrary.svg │ │ │ │ ├── Templates │ │ │ │ │ ├── jucer_AnimatedComponentSimpleTemplate.h │ │ │ │ │ ├── jucer_AnimatedComponentTemplate.cpp │ │ │ │ │ ├── jucer_AnimatedComponentTemplate.h │ │ │ │ │ ├── jucer_AudioComponentSimpleTemplate.h │ │ │ │ │ ├── jucer_AudioComponentTemplate.cpp │ │ │ │ │ ├── jucer_AudioComponentTemplate.h │ │ │ │ │ ├── jucer_AudioPluginEditorTemplate.cpp │ │ │ │ │ ├── jucer_AudioPluginEditorTemplate.h │ │ │ │ │ ├── jucer_AudioPluginFilterTemplate.cpp │ │ │ │ │ ├── jucer_AudioPluginFilterTemplate.h │ │ │ │ │ ├── jucer_ComponentTemplate.cpp │ │ │ │ │ ├── jucer_ComponentTemplate.h │ │ │ │ │ ├── jucer_ContentCompSimpleTemplate.h │ │ │ │ │ ├── jucer_ContentCompTemplate.cpp │ │ │ │ │ ├── jucer_ContentCompTemplate.h │ │ │ │ │ ├── jucer_InlineComponentTemplate.h │ │ │ │ │ ├── jucer_MainConsoleAppTemplate.cpp │ │ │ │ │ ├── jucer_MainTemplate_NoWindow.cpp │ │ │ │ │ ├── jucer_MainTemplate_Window.cpp │ │ │ │ │ ├── jucer_NewComponentTemplate.cpp │ │ │ │ │ ├── jucer_NewComponentTemplate.h │ │ │ │ │ ├── jucer_NewCppFileTemplate.cpp │ │ │ │ │ ├── jucer_NewCppFileTemplate.h │ │ │ │ │ ├── jucer_NewInlineComponentTemplate.h │ │ │ │ │ ├── jucer_OpenGLComponentSimpleTemplate.h │ │ │ │ │ ├── jucer_OpenGLComponentTemplate.cpp │ │ │ │ │ ├── jucer_OpenGLComponentTemplate.h │ │ │ │ │ ├── jucer_PIPAudioProcessorTemplate.h │ │ │ │ │ └── jucer_PIPTemplate.h │ │ │ │ ├── colourscheme_dark.xml │ │ │ │ ├── colourscheme_light.xml │ │ │ │ └── gradle │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ ├── gradlew │ │ │ │ │ └── gradlew.bat │ │ │ │ ├── CodeEditor │ │ │ │ ├── jucer_DocumentEditorComponent.cpp │ │ │ │ ├── jucer_DocumentEditorComponent.h │ │ │ │ ├── jucer_ItemPreviewComponent.h │ │ │ │ ├── jucer_OpenDocumentManager.cpp │ │ │ │ ├── jucer_OpenDocumentManager.h │ │ │ │ ├── jucer_SourceCodeEditor.cpp │ │ │ │ └── jucer_SourceCodeEditor.h │ │ │ │ ├── ComponentEditor │ │ │ │ ├── Components │ │ │ │ │ ├── jucer_ButtonHandler.h │ │ │ │ │ ├── jucer_ComboBoxHandler.h │ │ │ │ │ ├── jucer_ComponentNameProperty.h │ │ │ │ │ ├── jucer_ComponentTypeHandler.cpp │ │ │ │ │ ├── jucer_ComponentTypeHandler.h │ │ │ │ │ ├── jucer_ComponentUndoableAction.h │ │ │ │ │ ├── jucer_GenericComponentHandler.h │ │ │ │ │ ├── jucer_GroupComponentHandler.h │ │ │ │ │ ├── jucer_HyperlinkButtonHandler.h │ │ │ │ │ ├── jucer_ImageButtonHandler.h │ │ │ │ │ ├── jucer_JucerComponentHandler.h │ │ │ │ │ ├── jucer_LabelHandler.h │ │ │ │ │ ├── jucer_SliderHandler.h │ │ │ │ │ ├── jucer_TabbedComponentHandler.h │ │ │ │ │ ├── jucer_TextButtonHandler.h │ │ │ │ │ ├── jucer_TextEditorHandler.h │ │ │ │ │ ├── jucer_ToggleButtonHandler.h │ │ │ │ │ ├── jucer_TreeViewHandler.h │ │ │ │ │ └── jucer_ViewportHandler.h │ │ │ │ ├── Documents │ │ │ │ │ ├── jucer_ButtonDocument.cpp │ │ │ │ │ ├── jucer_ButtonDocument.h │ │ │ │ │ ├── jucer_ComponentDocument.cpp │ │ │ │ │ └── jucer_ComponentDocument.h │ │ │ │ ├── PaintElements │ │ │ │ │ ├── jucer_ColouredElement.cpp │ │ │ │ │ ├── jucer_ColouredElement.h │ │ │ │ │ ├── jucer_ElementSiblingComponent.h │ │ │ │ │ ├── jucer_FillType.h │ │ │ │ │ ├── jucer_GradientPointComponent.h │ │ │ │ │ ├── jucer_ImageResourceProperty.h │ │ │ │ │ ├── jucer_PaintElement.cpp │ │ │ │ │ ├── jucer_PaintElement.h │ │ │ │ │ ├── jucer_PaintElementEllipse.h │ │ │ │ │ ├── jucer_PaintElementGroup.cpp │ │ │ │ │ ├── jucer_PaintElementGroup.h │ │ │ │ │ ├── jucer_PaintElementImage.cpp │ │ │ │ │ ├── jucer_PaintElementImage.h │ │ │ │ │ ├── jucer_PaintElementPath.cpp │ │ │ │ │ ├── jucer_PaintElementPath.h │ │ │ │ │ ├── jucer_PaintElementRectangle.h │ │ │ │ │ ├── jucer_PaintElementRoundedRectangle.h │ │ │ │ │ ├── jucer_PaintElementText.h │ │ │ │ │ ├── jucer_PaintElementUndoableAction.h │ │ │ │ │ ├── jucer_PointComponent.h │ │ │ │ │ └── jucer_StrokeType.h │ │ │ │ ├── Properties │ │ │ │ │ ├── jucer_ColourPropertyComponent.h │ │ │ │ │ ├── jucer_ComponentBooleanProperty.h │ │ │ │ │ ├── jucer_ComponentChoiceProperty.h │ │ │ │ │ ├── jucer_ComponentColourProperty.h │ │ │ │ │ ├── jucer_ComponentTextProperty.h │ │ │ │ │ ├── jucer_FilePropertyComponent.h │ │ │ │ │ ├── jucer_FontPropertyComponent.h │ │ │ │ │ ├── jucer_JustificationProperty.h │ │ │ │ │ └── jucer_PositionPropertyBase.h │ │ │ │ ├── UI │ │ │ │ │ ├── jucer_ComponentLayoutEditor.cpp │ │ │ │ │ ├── jucer_ComponentLayoutEditor.h │ │ │ │ │ ├── jucer_ComponentLayoutPanel.h │ │ │ │ │ ├── jucer_ComponentOverlayComponent.cpp │ │ │ │ │ ├── jucer_ComponentOverlayComponent.h │ │ │ │ │ ├── jucer_EditingPanelBase.cpp │ │ │ │ │ ├── jucer_EditingPanelBase.h │ │ │ │ │ ├── jucer_JucerCommandIDs.h │ │ │ │ │ ├── jucer_JucerDocumentEditor.cpp │ │ │ │ │ ├── jucer_JucerDocumentEditor.h │ │ │ │ │ ├── jucer_PaintRoutineEditor.cpp │ │ │ │ │ ├── jucer_PaintRoutineEditor.h │ │ │ │ │ ├── jucer_PaintRoutinePanel.cpp │ │ │ │ │ ├── jucer_PaintRoutinePanel.h │ │ │ │ │ ├── jucer_RelativePositionedRectangle.h │ │ │ │ │ ├── jucer_ResourceEditorPanel.cpp │ │ │ │ │ ├── jucer_ResourceEditorPanel.h │ │ │ │ │ ├── jucer_SnapGridPainter.h │ │ │ │ │ ├── jucer_TestComponent.cpp │ │ │ │ │ └── jucer_TestComponent.h │ │ │ │ ├── jucer_BinaryResources.cpp │ │ │ │ ├── jucer_BinaryResources.h │ │ │ │ ├── jucer_ComponentLayout.cpp │ │ │ │ ├── jucer_ComponentLayout.h │ │ │ │ ├── jucer_GeneratedCode.cpp │ │ │ │ ├── jucer_GeneratedCode.h │ │ │ │ ├── jucer_JucerDocument.cpp │ │ │ │ ├── jucer_JucerDocument.h │ │ │ │ ├── jucer_ObjectTypes.cpp │ │ │ │ ├── jucer_ObjectTypes.h │ │ │ │ ├── jucer_PaintRoutine.cpp │ │ │ │ ├── jucer_PaintRoutine.h │ │ │ │ └── jucer_UtilityFunctions.h │ │ │ │ ├── Licenses │ │ │ │ └── jucer_LicenseController.cpp │ │ │ │ ├── LiveBuildEngine │ │ │ │ └── UI │ │ │ │ │ ├── jucer_ActivityListComponent.h │ │ │ │ │ ├── jucer_BuildTabStatusComponent.h │ │ │ │ │ └── jucer_ComponentListComponent.h │ │ │ │ ├── Project │ │ │ │ ├── Modules │ │ │ │ │ ├── jucer_AvailableModulesList.h │ │ │ │ │ ├── jucer_ModuleDescription.h │ │ │ │ │ ├── jucer_Modules.cpp │ │ │ │ │ └── jucer_Modules.h │ │ │ │ ├── UI │ │ │ │ │ ├── Sidebar │ │ │ │ │ │ ├── jucer_ExporterTreeItems.h │ │ │ │ │ │ ├── jucer_FileTreeItems.h │ │ │ │ │ │ ├── jucer_ModuleTreeItems.h │ │ │ │ │ │ ├── jucer_ProjectTreeItemBase.h │ │ │ │ │ │ ├── jucer_Sidebar.h │ │ │ │ │ │ └── jucer_TreeItemTypes.h │ │ │ │ │ ├── jucer_ContentViewComponent.h │ │ │ │ │ ├── jucer_ContentViewComponents.h │ │ │ │ │ ├── jucer_FileGroupInformationComponent.h │ │ │ │ │ ├── jucer_HeaderComponent.cpp │ │ │ │ │ ├── jucer_HeaderComponent.h │ │ │ │ │ ├── jucer_ModulesInformationComponent.h │ │ │ │ │ ├── jucer_ProjectContentComponent.cpp │ │ │ │ │ ├── jucer_ProjectContentComponent.h │ │ │ │ │ ├── jucer_ProjectMessagesComponent.h │ │ │ │ │ └── jucer_UserAvatarComponent.h │ │ │ │ ├── jucer_Project.cpp │ │ │ │ └── jucer_Project.h │ │ │ │ ├── ProjectSaving │ │ │ │ ├── jucer_ProjectExport_Android.h │ │ │ │ ├── jucer_ProjectExport_CLion.h │ │ │ │ ├── jucer_ProjectExport_CodeBlocks.h │ │ │ │ ├── jucer_ProjectExport_MSVC.h │ │ │ │ ├── jucer_ProjectExport_Make.h │ │ │ │ ├── jucer_ProjectExport_Xcode.h │ │ │ │ ├── jucer_ProjectExporter.cpp │ │ │ │ ├── jucer_ProjectExporter.h │ │ │ │ ├── jucer_ProjectSaver.cpp │ │ │ │ ├── jucer_ProjectSaver.h │ │ │ │ ├── jucer_ResourceFile.cpp │ │ │ │ ├── jucer_ResourceFile.h │ │ │ │ └── jucer_XcodeProjectParser.h │ │ │ │ ├── Settings │ │ │ │ ├── jucer_AppearanceSettings.cpp │ │ │ │ ├── jucer_AppearanceSettings.h │ │ │ │ ├── jucer_StoredSettings.cpp │ │ │ │ └── jucer_StoredSettings.h │ │ │ │ └── Utility │ │ │ │ ├── Helpers │ │ │ │ ├── jucer_CodeHelpers.cpp │ │ │ │ ├── jucer_CodeHelpers.h │ │ │ │ ├── jucer_Colours.h │ │ │ │ ├── jucer_FileHelpers.cpp │ │ │ │ ├── jucer_FileHelpers.h │ │ │ │ ├── jucer_MiscUtilities.cpp │ │ │ │ ├── jucer_MiscUtilities.h │ │ │ │ ├── jucer_NewFileWizard.cpp │ │ │ │ ├── jucer_NewFileWizard.h │ │ │ │ ├── jucer_PresetIDs.h │ │ │ │ ├── jucer_TranslationHelpers.h │ │ │ │ ├── jucer_ValueSourceHelpers.h │ │ │ │ ├── jucer_ValueTreePropertyWithDefaultWrapper.h │ │ │ │ ├── jucer_VersionInfo.cpp │ │ │ │ └── jucer_VersionInfo.h │ │ │ │ ├── PIPs │ │ │ │ ├── jucer_PIPGenerator.cpp │ │ │ │ └── jucer_PIPGenerator.h │ │ │ │ └── UI │ │ │ │ ├── PropertyComponents │ │ │ │ ├── jucer_ColourPropertyComponent.h │ │ │ │ ├── jucer_FilePathPropertyComponent.h │ │ │ │ ├── jucer_LabelPropertyComponent.h │ │ │ │ └── jucer_PropertyComponentsWithEnablement.h │ │ │ │ ├── jucer_IconButton.h │ │ │ │ ├── jucer_Icons.cpp │ │ │ │ ├── jucer_Icons.h │ │ │ │ ├── jucer_JucerTreeViewBase.cpp │ │ │ │ ├── jucer_JucerTreeViewBase.h │ │ │ │ ├── jucer_ProjucerLookAndFeel.cpp │ │ │ │ ├── jucer_ProjucerLookAndFeel.h │ │ │ │ ├── jucer_SlidingPanelComponent.cpp │ │ │ │ └── jucer_SlidingPanelComponent.h │ │ ├── UnitTestRunner │ │ │ ├── Builds │ │ │ │ ├── LinuxMakefile │ │ │ │ │ └── Makefile │ │ │ │ ├── MacOSX │ │ │ │ │ ├── RecentFilesMenuTemplate.nib │ │ │ │ │ └── UnitTestRunner.xcodeproj │ │ │ │ │ │ └── project.pbxproj │ │ │ │ ├── VisualStudio2017 │ │ │ │ │ ├── UnitTestRunner.sln │ │ │ │ │ ├── UnitTestRunner_ConsoleApp.vcxproj │ │ │ │ │ ├── UnitTestRunner_ConsoleApp.vcxproj.filters │ │ │ │ │ └── resources.rc │ │ │ │ ├── VisualStudio2019 │ │ │ │ │ ├── UnitTestRunner.sln │ │ │ │ │ ├── UnitTestRunner_ConsoleApp.vcxproj │ │ │ │ │ ├── UnitTestRunner_ConsoleApp.vcxproj.filters │ │ │ │ │ └── resources.rc │ │ │ │ └── VisualStudio2022 │ │ │ │ │ ├── UnitTestRunner.sln │ │ │ │ │ ├── UnitTestRunner_ConsoleApp.vcxproj │ │ │ │ │ ├── UnitTestRunner_ConsoleApp.vcxproj.filters │ │ │ │ │ └── resources.rc │ │ │ ├── CMakeLists.txt │ │ │ ├── JuceLibraryCode │ │ │ │ ├── JuceHeader.h │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── include_juce_analytics.cpp │ │ │ │ ├── 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_processors.cpp │ │ │ │ ├── include_juce_audio_processors.mm │ │ │ │ ├── include_juce_audio_utils.cpp │ │ │ │ ├── include_juce_audio_utils.mm │ │ │ │ ├── include_juce_core.cpp │ │ │ │ ├── include_juce_core.mm │ │ │ │ ├── include_juce_cryptography.cpp │ │ │ │ ├── include_juce_cryptography.mm │ │ │ │ ├── include_juce_data_structures.cpp │ │ │ │ ├── include_juce_data_structures.mm │ │ │ │ ├── include_juce_dsp.cpp │ │ │ │ ├── include_juce_dsp.mm │ │ │ │ ├── include_juce_events.cpp │ │ │ │ ├── include_juce_events.mm │ │ │ │ ├── include_juce_graphics.cpp │ │ │ │ ├── include_juce_graphics.mm │ │ │ │ ├── include_juce_gui_basics.cpp │ │ │ │ ├── include_juce_gui_basics.mm │ │ │ │ ├── include_juce_gui_extra.cpp │ │ │ │ ├── include_juce_gui_extra.mm │ │ │ │ ├── include_juce_opengl.cpp │ │ │ │ ├── include_juce_opengl.mm │ │ │ │ ├── include_juce_osc.cpp │ │ │ │ ├── include_juce_product_unlocking.cpp │ │ │ │ ├── include_juce_product_unlocking.mm │ │ │ │ ├── include_juce_video.cpp │ │ │ │ └── include_juce_video.mm │ │ │ ├── Source │ │ │ │ └── Main.cpp │ │ │ └── UnitTestRunner.jucer │ │ └── WindowsDLL │ │ │ ├── Builds │ │ │ └── VisualStudio2022 │ │ │ │ ├── WindowsDLL.sln │ │ │ │ ├── WindowsDLL_StaticLibrary.vcxproj │ │ │ │ └── WindowsDLL_StaticLibrary.vcxproj.filters │ │ │ ├── JuceLibraryCode │ │ │ ├── JuceHeader.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_processors.cpp │ │ │ ├── include_juce_audio_processors.mm │ │ │ ├── include_juce_audio_utils.cpp │ │ │ ├── include_juce_audio_utils.mm │ │ │ ├── include_juce_core.cpp │ │ │ ├── include_juce_core.mm │ │ │ ├── include_juce_cryptography.cpp │ │ │ ├── include_juce_cryptography.mm │ │ │ ├── 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_gui_basics.cpp │ │ │ ├── include_juce_gui_basics.mm │ │ │ ├── include_juce_gui_extra.cpp │ │ │ ├── include_juce_gui_extra.mm │ │ │ ├── include_juce_opengl.cpp │ │ │ ├── include_juce_opengl.mm │ │ │ ├── include_juce_video.cpp │ │ │ └── include_juce_video.mm │ │ │ └── WindowsDLL.jucer │ └── modules │ │ ├── CMakeLists.txt │ │ ├── juce_analytics │ │ ├── analytics │ │ │ ├── juce_Analytics.cpp │ │ │ ├── juce_Analytics.h │ │ │ ├── juce_ButtonTracker.cpp │ │ │ └── juce_ButtonTracker.h │ │ ├── destinations │ │ │ ├── juce_AnalyticsDestination.h │ │ │ ├── juce_ThreadedAnalyticsDestination.cpp │ │ │ └── juce_ThreadedAnalyticsDestination.h │ │ ├── juce_analytics.cpp │ │ └── juce_analytics.h │ │ ├── juce_audio_basics │ │ ├── audio_play_head │ │ │ └── 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_UMPConversion.h │ │ │ │ ├── juce_UMPConverters.h │ │ │ │ ├── juce_UMPDispatcher.h │ │ │ │ ├── juce_UMPFactory.h │ │ │ │ ├── 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_UMPTests.cpp │ │ │ │ ├── juce_UMPUtils.cpp │ │ │ │ ├── juce_UMPUtils.h │ │ │ │ ├── juce_UMPView.cpp │ │ │ │ ├── juce_UMPView.h │ │ │ │ ├── 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_mac_CoreAudioLayouts.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.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_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_SystemAudioVolume.h │ │ ├── juce_audio_devices.cpp │ │ ├── juce_audio_devices.h │ │ ├── juce_audio_devices.mm │ │ ├── midi_io │ │ │ ├── juce_MidiDevices.cpp │ │ │ ├── juce_MidiDevices.h │ │ │ ├── juce_MidiMessageCollector.cpp │ │ │ ├── juce_MidiMessageCollector.h │ │ │ └── ump │ │ │ │ ├── juce_UMPBytestreamInputHandler.h │ │ │ │ ├── juce_UMPTests.cpp │ │ │ │ └── juce_UMPU32InputHandler.h │ │ ├── native │ │ │ ├── java │ │ │ │ └── app │ │ │ │ │ └── com │ │ │ │ │ └── rmsl │ │ │ │ │ └── juce │ │ │ │ │ └── JuceMidiSupport.java │ │ │ ├── juce_android_Audio.cpp │ │ │ ├── juce_android_HighPerformanceAudioHelpers.h │ │ │ ├── juce_android_Midi.cpp │ │ │ ├── juce_android_Oboe.cpp │ │ │ ├── juce_android_OpenSL.cpp │ │ │ ├── juce_ios_Audio.cpp │ │ │ ├── juce_ios_Audio.h │ │ │ ├── juce_linux_ALSA.cpp │ │ │ ├── juce_linux_Bela.cpp │ │ │ ├── juce_linux_JackAudio.cpp │ │ │ ├── juce_linux_Midi.cpp │ │ │ ├── juce_mac_CoreAudio.cpp │ │ │ ├── juce_mac_CoreMidi.mm │ │ │ ├── juce_win32_ASIO.cpp │ │ │ ├── juce_win32_DirectSound.cpp │ │ │ ├── juce_win32_Midi.cpp │ │ │ ├── juce_win32_WASAPI.cpp │ │ │ └── oboe │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── include │ │ │ │ └── oboe │ │ │ │ │ ├── AudioStream.h │ │ │ │ │ ├── AudioStreamBase.h │ │ │ │ │ ├── AudioStreamBuilder.h │ │ │ │ │ ├── AudioStreamCallback.h │ │ │ │ │ ├── Definitions.h │ │ │ │ │ ├── LatencyTuner.h │ │ │ │ │ ├── Oboe.h │ │ │ │ │ ├── ResultWithValue.h │ │ │ │ │ ├── StabilizedCallback.h │ │ │ │ │ ├── Utilities.h │ │ │ │ │ └── Version.h │ │ │ │ └── src │ │ │ │ ├── aaudio │ │ │ │ ├── AAudioExtensions.h │ │ │ │ ├── AAudioLoader.cpp │ │ │ │ ├── AAudioLoader.h │ │ │ │ ├── AudioStreamAAudio.cpp │ │ │ │ └── AudioStreamAAudio.h │ │ │ │ ├── common │ │ │ │ ├── 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 │ │ │ │ ├── QuirksManager.cpp │ │ │ │ ├── QuirksManager.h │ │ │ │ ├── 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 │ │ │ │ ├── FifoBuffer.h │ │ │ │ ├── FifoController.cpp │ │ │ │ ├── FifoController.h │ │ │ │ ├── FifoControllerBase.cpp │ │ │ │ ├── FifoControllerBase.h │ │ │ │ ├── FifoControllerIndirect.cpp │ │ │ │ └── FifoControllerIndirect.h │ │ │ │ ├── flowgraph │ │ │ │ ├── ChannelCountConverter.cpp │ │ │ │ ├── ChannelCountConverter.h │ │ │ │ ├── ClipToRange.cpp │ │ │ │ ├── ClipToRange.h │ │ │ │ ├── FlowGraphNode.cpp │ │ │ │ ├── FlowGraphNode.h │ │ │ │ ├── FlowgraphUtilities.h │ │ │ │ ├── ManyToMultiConverter.cpp │ │ │ │ ├── ManyToMultiConverter.h │ │ │ │ ├── MonoToMultiConverter.cpp │ │ │ │ ├── MonoToMultiConverter.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 │ │ │ │ ├── SourceFloat.cpp │ │ │ │ ├── SourceFloat.h │ │ │ │ ├── SourceI16.cpp │ │ │ │ ├── SourceI16.h │ │ │ │ ├── SourceI24.cpp │ │ │ │ ├── SourceI24.h │ │ │ │ ├── SourceI32.cpp │ │ │ │ ├── SourceI32.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 │ │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ │ ├── fixed.c │ │ │ │ │ ├── float.c │ │ │ │ │ ├── format.c │ │ │ │ │ ├── include │ │ │ │ │ │ ├── private │ │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ │ ├── bitmath.h │ │ │ │ │ │ │ ├── bitreader.h │ │ │ │ │ │ │ ├── bitwriter.h │ │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ │ ├── crc.h │ │ │ │ │ │ │ ├── fixed.h │ │ │ │ │ │ │ ├── float.h │ │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ │ ├── lpc.h │ │ │ │ │ │ │ ├── md5.h │ │ │ │ │ │ │ ├── memory.h │ │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ │ ├── stream_encoder.h │ │ │ │ │ │ │ ├── stream_encoder_framing.h │ │ │ │ │ │ │ └── window.h │ │ │ │ │ │ └── protected │ │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ │ └── stream_encoder.h │ │ │ │ │ ├── lpc_flac.c │ │ │ │ │ ├── md5.c │ │ │ │ │ ├── memory.c │ │ │ │ │ ├── stream_decoder.c │ │ │ │ │ ├── stream_encoder.c │ │ │ │ │ ├── stream_encoder_framing.c │ │ │ │ │ └── window_flac.c │ │ │ │ ├── metadata.h │ │ │ │ ├── ordinals.h │ │ │ │ ├── stream_decoder.h │ │ │ │ ├── stream_encoder.h │ │ │ │ └── win_utf8_io.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_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 │ │ │ ├── juce_AAX_Modifier_Injector.h │ │ │ └── juce_AAX_Wrapper.cpp │ │ ├── AU │ │ │ ├── CoreAudioUtilityClasses │ │ │ │ ├── AUBase.cpp │ │ │ │ ├── AUBase.h │ │ │ │ ├── AUBaseHelper.h │ │ │ │ ├── AUBuffer.cpp │ │ │ │ ├── AUBuffer.h │ │ │ │ ├── AUCarbonViewBase.cpp │ │ │ │ ├── AUCarbonViewBase.h │ │ │ │ ├── AUCarbonViewControl.cpp │ │ │ │ ├── AUCarbonViewControl.h │ │ │ │ ├── AUCarbonViewDispatch.cpp │ │ │ │ ├── AUDispatch.cpp │ │ │ │ ├── AUDispatch.h │ │ │ │ ├── AUInputElement.cpp │ │ │ │ ├── AUInputElement.h │ │ │ │ ├── AUInputFormatConverter.h │ │ │ │ ├── AUMIDIBase.cpp │ │ │ │ ├── AUMIDIBase.h │ │ │ │ ├── AUOutputBase.cpp │ │ │ │ ├── AUOutputBase.h │ │ │ │ ├── AUOutputElement.cpp │ │ │ │ ├── AUOutputElement.h │ │ │ │ ├── AUPlugInDispatch.cpp │ │ │ │ ├── AUPlugInDispatch.h │ │ │ │ ├── AUScopeElement.cpp │ │ │ │ ├── AUScopeElement.h │ │ │ │ ├── AUSilentTimeout.h │ │ │ │ ├── AUTimestampGenerator.h │ │ │ │ ├── AUViewLocalizedStringKeys.h │ │ │ │ ├── CAAUParameter.cpp │ │ │ │ ├── CAAUParameter.h │ │ │ │ ├── CAAtomic.h │ │ │ │ ├── CAAtomicStack.h │ │ │ │ ├── CAAudioChannelLayout.cpp │ │ │ │ ├── CAAudioChannelLayout.h │ │ │ │ ├── CAAutoDisposer.h │ │ │ │ ├── CADebugMacros.h │ │ │ │ ├── CADebugPrintf.h │ │ │ │ ├── CAException.h │ │ │ │ ├── CAHostTimeBase.h │ │ │ │ ├── CAMath.h │ │ │ │ ├── CAMutex.cpp │ │ │ │ ├── CAMutex.h │ │ │ │ ├── CAReferenceCounted.h │ │ │ │ ├── CAStreamBasicDescription.cpp │ │ │ │ ├── CAStreamBasicDescription.h │ │ │ │ ├── CAThreadSafeList.h │ │ │ │ ├── CAVectorUnit.cpp │ │ │ │ ├── CAVectorUnit.h │ │ │ │ ├── CAVectorUnitTypes.h │ │ │ │ ├── CAXException.h │ │ │ │ ├── CarbonEventHandler.cpp │ │ │ │ ├── CarbonEventHandler.h │ │ │ │ ├── ComponentBase.cpp │ │ │ │ ├── ComponentBase.h │ │ │ │ ├── MusicDeviceBase.cpp │ │ │ │ └── MusicDeviceBase.h │ │ │ ├── juce_AU_Wrapper.mm │ │ │ └── juce_AUv3_Wrapper.mm │ │ ├── AUResources.r │ │ ├── RTAS │ │ │ ├── juce_RTAS_DigiCode1.cpp │ │ │ ├── juce_RTAS_DigiCode2.cpp │ │ │ ├── juce_RTAS_DigiCode3.cpp │ │ │ ├── juce_RTAS_DigiCode_Header.h │ │ │ ├── juce_RTAS_MacUtilities.mm │ │ │ ├── juce_RTAS_WinExports.def │ │ │ ├── juce_RTAS_WinResources.rsr │ │ │ ├── juce_RTAS_WinUtilities.cpp │ │ │ └── juce_RTAS_Wrapper.cpp │ │ ├── Standalone │ │ │ ├── juce_StandaloneFilterApp.cpp │ │ │ └── juce_StandaloneFilterWindow.h │ │ ├── Unity │ │ │ ├── juce_UnityPluginInterface.h │ │ │ └── juce_Unity_Wrapper.cpp │ │ ├── VST │ │ │ ├── juce_VST_Wrapper.cpp │ │ │ └── juce_VST_Wrapper.mm │ │ ├── VST3 │ │ │ └── juce_VST3_Wrapper.cpp │ │ ├── juce_audio_plugin_client.h │ │ ├── juce_audio_plugin_client_AAX.cpp │ │ ├── juce_audio_plugin_client_AAX.mm │ │ ├── juce_audio_plugin_client_AU.r │ │ ├── juce_audio_plugin_client_AU_1.mm │ │ ├── juce_audio_plugin_client_AU_2.mm │ │ ├── juce_audio_plugin_client_AUv3.mm │ │ ├── juce_audio_plugin_client_RTAS.r │ │ ├── juce_audio_plugin_client_RTAS_1.cpp │ │ ├── juce_audio_plugin_client_RTAS_2.cpp │ │ ├── juce_audio_plugin_client_RTAS_3.cpp │ │ ├── juce_audio_plugin_client_RTAS_4.cpp │ │ ├── juce_audio_plugin_client_RTAS_utils.cpp │ │ ├── juce_audio_plugin_client_RTAS_utils.mm │ │ ├── juce_audio_plugin_client_Standalone.cpp │ │ ├── juce_audio_plugin_client_Unity.cpp │ │ ├── juce_audio_plugin_client_VST2.cpp │ │ ├── juce_audio_plugin_client_VST3.cpp │ │ ├── juce_audio_plugin_client_VST_utils.mm │ │ ├── juce_audio_plugin_client_utils.cpp │ │ └── utility │ │ │ ├── juce_CarbonVisibility.h │ │ │ ├── juce_CheckSettingMacros.h │ │ │ ├── juce_CreatePluginFilter.h │ │ │ ├── juce_IncludeModuleHeaders.h │ │ │ ├── juce_IncludeSystemHeaders.h │ │ │ ├── juce_LinuxMessageThread.h │ │ │ ├── juce_PluginUtilities.cpp │ │ │ └── juce_WindowsHooks.h │ │ ├── juce_audio_processors │ │ ├── format │ │ │ ├── juce_AudioPluginFormat.cpp │ │ │ ├── juce_AudioPluginFormat.h │ │ │ ├── juce_AudioPluginFormatManager.cpp │ │ │ └── juce_AudioPluginFormatManager.h │ │ ├── format_types │ │ │ ├── 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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── futils.h │ │ │ │ │ │ ├── fvariant.h │ │ │ │ │ │ ├── ibstream.h │ │ │ │ │ │ ├── icloneable.h │ │ │ │ │ │ ├── ipersistent.h │ │ │ │ │ │ ├── ipluginbase.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 │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── ivstrepresentation.h │ │ │ │ │ │ ├── ivsttestplugprovider.h │ │ │ │ │ │ ├── ivstunits.h │ │ │ │ │ │ ├── vstpshpack4.h │ │ │ │ │ │ ├── vstspeaker.h │ │ │ │ │ │ └── vsttypes.h │ │ │ │ └── public.sdk │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── README.md │ │ │ │ │ └── source │ │ │ │ │ ├── common │ │ │ │ │ ├── memorystream.cpp │ │ │ │ │ ├── memorystream.h │ │ │ │ │ ├── pluginview.cpp │ │ │ │ │ └── pluginview.h │ │ │ │ │ └── vst │ │ │ │ │ ├── hosting │ │ │ │ │ ├── hostclasses.cpp │ │ │ │ │ ├── hostclasses.h │ │ │ │ │ ├── pluginterfacesupport.cpp │ │ │ │ │ └── pluginterfacesupport.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_AU_Shared.h │ │ │ ├── juce_AudioUnitPluginFormat.h │ │ │ ├── juce_AudioUnitPluginFormat.mm │ │ │ ├── juce_LADSPAPluginFormat.cpp │ │ │ ├── juce_LADSPAPluginFormat.h │ │ │ ├── juce_LegacyAudioParameter.cpp │ │ │ ├── juce_VST3Common.h │ │ │ ├── juce_VST3Headers.h │ │ │ ├── juce_VST3PluginFormat.cpp │ │ │ ├── juce_VST3PluginFormat.h │ │ │ ├── juce_VSTCommon.h │ │ │ ├── juce_VSTMidiEventList.h │ │ │ ├── juce_VSTPluginFormat.cpp │ │ │ └── juce_VSTPluginFormat.h │ │ ├── juce_audio_processors.cpp │ │ ├── juce_audio_processors.h │ │ ├── juce_audio_processors.mm │ │ ├── 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 │ │ │ ├── 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_ParameterAttachments.cpp │ │ │ ├── juce_ParameterAttachments.h │ │ │ ├── juce_PluginHostType.cpp │ │ │ ├── juce_PluginHostType.h │ │ │ ├── juce_RangedAudioParameter.cpp │ │ │ ├── juce_RangedAudioParameter.h │ │ │ ├── juce_VST3ClientExtensions.h │ │ │ └── juce_VSTCallbackHandler.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_android_BluetoothMidiDevicePairingDialogue.cpp │ │ │ ├── juce_ios_BluetoothMidiDevicePairingDialogue.mm │ │ │ ├── juce_linux_AudioCDReader.cpp │ │ │ ├── juce_linux_BluetoothMidiDevicePairingDialogue.cpp │ │ │ ├── juce_mac_AudioCDBurner.mm │ │ │ ├── juce_mac_AudioCDReader.mm │ │ │ ├── juce_mac_BluetoothMidiDevicePairingDialogue.mm │ │ │ ├── juce_win32_AudioCDBurner.cpp │ │ │ ├── juce_win32_AudioCDReader.cpp │ │ │ └── juce_win_BluetoothMidiDevicePairingDialogue.cpp │ │ └── players │ │ │ ├── juce_AudioProcessorPlayer.cpp │ │ │ ├── juce_AudioProcessorPlayer.h │ │ │ ├── juce_SoundPlayer.cpp │ │ │ └── juce_SoundPlayer.h │ │ ├── juce_box2d │ │ ├── box2d │ │ │ ├── Box2D.h │ │ │ ├── Collision │ │ │ │ ├── Shapes │ │ │ │ │ ├── b2ChainShape.cpp │ │ │ │ │ ├── b2ChainShape.h │ │ │ │ │ ├── b2CircleShape.cpp │ │ │ │ │ ├── b2CircleShape.h │ │ │ │ │ ├── b2EdgeShape.cpp │ │ │ │ │ ├── b2EdgeShape.h │ │ │ │ │ ├── b2PolygonShape.cpp │ │ │ │ │ ├── b2PolygonShape.h │ │ │ │ │ └── b2Shape.h │ │ │ │ ├── b2BroadPhase.cpp │ │ │ │ ├── b2BroadPhase.h │ │ │ │ ├── b2CollideCircle.cpp │ │ │ │ ├── b2CollideEdge.cpp │ │ │ │ ├── b2CollidePolygon.cpp │ │ │ │ ├── b2Collision.cpp │ │ │ │ ├── b2Collision.h │ │ │ │ ├── b2Distance.cpp │ │ │ │ ├── b2Distance.h │ │ │ │ ├── b2DynamicTree.cpp │ │ │ │ ├── b2DynamicTree.h │ │ │ │ ├── b2TimeOfImpact.cpp │ │ │ │ └── b2TimeOfImpact.h │ │ │ ├── Common │ │ │ │ ├── b2BlockAllocator.cpp │ │ │ │ ├── b2BlockAllocator.h │ │ │ │ ├── b2Draw.cpp │ │ │ │ ├── b2Draw.h │ │ │ │ ├── b2GrowableStack.h │ │ │ │ ├── b2Math.cpp │ │ │ │ ├── b2Math.h │ │ │ │ ├── b2Settings.cpp │ │ │ │ ├── b2Settings.h │ │ │ │ ├── b2StackAllocator.cpp │ │ │ │ ├── b2StackAllocator.h │ │ │ │ ├── b2Timer.cpp │ │ │ │ └── b2Timer.h │ │ │ ├── Dynamics │ │ │ │ ├── Contacts │ │ │ │ │ ├── b2ChainAndCircleContact.cpp │ │ │ │ │ ├── b2ChainAndCircleContact.h │ │ │ │ │ ├── b2ChainAndPolygonContact.cpp │ │ │ │ │ ├── b2ChainAndPolygonContact.h │ │ │ │ │ ├── b2CircleContact.cpp │ │ │ │ │ ├── b2CircleContact.h │ │ │ │ │ ├── b2Contact.cpp │ │ │ │ │ ├── b2Contact.h │ │ │ │ │ ├── b2ContactSolver.cpp │ │ │ │ │ ├── b2ContactSolver.h │ │ │ │ │ ├── b2EdgeAndCircleContact.cpp │ │ │ │ │ ├── b2EdgeAndCircleContact.h │ │ │ │ │ ├── b2EdgeAndPolygonContact.cpp │ │ │ │ │ ├── b2EdgeAndPolygonContact.h │ │ │ │ │ ├── b2PolygonAndCircleContact.cpp │ │ │ │ │ ├── b2PolygonAndCircleContact.h │ │ │ │ │ ├── b2PolygonContact.cpp │ │ │ │ │ └── b2PolygonContact.h │ │ │ │ ├── Joints │ │ │ │ │ ├── b2DistanceJoint.cpp │ │ │ │ │ ├── b2DistanceJoint.h │ │ │ │ │ ├── b2FrictionJoint.cpp │ │ │ │ │ ├── b2FrictionJoint.h │ │ │ │ │ ├── b2GearJoint.cpp │ │ │ │ │ ├── b2GearJoint.h │ │ │ │ │ ├── b2Joint.cpp │ │ │ │ │ ├── b2Joint.h │ │ │ │ │ ├── b2MouseJoint.cpp │ │ │ │ │ ├── b2MouseJoint.h │ │ │ │ │ ├── b2PrismaticJoint.cpp │ │ │ │ │ ├── b2PrismaticJoint.h │ │ │ │ │ ├── b2PulleyJoint.cpp │ │ │ │ │ ├── b2PulleyJoint.h │ │ │ │ │ ├── b2RevoluteJoint.cpp │ │ │ │ │ ├── b2RevoluteJoint.h │ │ │ │ │ ├── b2RopeJoint.cpp │ │ │ │ │ ├── b2RopeJoint.h │ │ │ │ │ ├── b2WeldJoint.cpp │ │ │ │ │ ├── b2WeldJoint.h │ │ │ │ │ ├── b2WheelJoint.cpp │ │ │ │ │ └── b2WheelJoint.h │ │ │ │ ├── b2Body.cpp │ │ │ │ ├── b2Body.h │ │ │ │ ├── b2ContactManager.cpp │ │ │ │ ├── b2ContactManager.h │ │ │ │ ├── b2Fixture.cpp │ │ │ │ ├── b2Fixture.h │ │ │ │ ├── b2Island.cpp │ │ │ │ ├── b2Island.h │ │ │ │ ├── b2TimeStep.h │ │ │ │ ├── b2World.cpp │ │ │ │ ├── b2World.h │ │ │ │ ├── b2WorldCallbacks.cpp │ │ │ │ └── b2WorldCallbacks.h │ │ │ ├── README.txt │ │ │ └── Rope │ │ │ │ ├── b2Rope.cpp │ │ │ │ └── b2Rope.h │ │ ├── juce_box2d.cpp │ │ ├── juce_box2d.h │ │ └── utils │ │ │ ├── juce_Box2DRenderer.cpp │ │ │ └── juce_Box2DRenderer.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_HashMap.h │ │ │ ├── juce_HashMap_test.cpp │ │ │ ├── juce_LinkedListPointer.h │ │ │ ├── juce_ListenerList.h │ │ │ ├── juce_NamedValueSet.cpp │ │ │ ├── juce_NamedValueSet.h │ │ │ ├── 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_SparseSet.cpp │ │ │ ├── juce_SparseSet.h │ │ │ ├── juce_Variant.cpp │ │ │ └── juce_Variant.h │ │ ├── files │ │ │ ├── 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 │ │ ├── javascript │ │ │ ├── juce_JSON.cpp │ │ │ ├── juce_JSON.h │ │ │ ├── juce_Javascript.cpp │ │ │ └── juce_Javascript.h │ │ ├── juce_core.cpp │ │ ├── juce_core.h │ │ ├── juce_core.mm │ │ ├── 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_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_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_Singleton.h │ │ │ └── juce_WeakReference.h │ │ ├── misc │ │ │ ├── juce_ConsoleApplication.cpp │ │ │ ├── juce_ConsoleApplication.h │ │ │ ├── juce_Functional.h │ │ │ ├── juce_Result.cpp │ │ │ ├── juce_Result.h │ │ │ ├── juce_RuntimePermissions.cpp │ │ │ ├── juce_RuntimePermissions.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_BasicNativeHeaders.h │ │ │ ├── juce_android_Files.cpp │ │ │ ├── juce_android_JNIHelpers.cpp │ │ │ ├── juce_android_JNIHelpers.h │ │ │ ├── juce_android_Misc.cpp │ │ │ ├── juce_android_Network.cpp │ │ │ ├── juce_android_RuntimePermissions.cpp │ │ │ ├── juce_android_SystemStats.cpp │ │ │ ├── juce_android_Threads.cpp │ │ │ ├── juce_curl_Network.cpp │ │ │ ├── juce_intel_SharedCode.h │ │ │ ├── juce_linux_CommonFile.cpp │ │ │ ├── juce_linux_Files.cpp │ │ │ ├── juce_linux_Network.cpp │ │ │ ├── juce_linux_SystemStats.cpp │ │ │ ├── juce_linux_Threads.cpp │ │ │ ├── juce_mac_CFHelpers.h │ │ │ ├── juce_mac_Files.mm │ │ │ ├── juce_mac_Network.mm │ │ │ ├── juce_mac_ObjCHelpers.h │ │ │ ├── juce_mac_Strings.mm │ │ │ ├── juce_mac_SystemStats.mm │ │ │ ├── juce_mac_Threads.mm │ │ │ ├── juce_posix_IPAddress.h │ │ │ ├── juce_posix_NamedPipe.cpp │ │ │ ├── juce_posix_SharedCode.h │ │ │ ├── juce_wasm_SystemStats.cpp │ │ │ ├── juce_win32_ComSmartPtr.h │ │ │ ├── juce_win32_Files.cpp │ │ │ ├── juce_win32_Network.cpp │ │ │ ├── juce_win32_Registry.cpp │ │ │ ├── juce_win32_SystemStats.cpp │ │ │ └── juce_win32_Threads.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 │ │ ├── streams │ │ │ ├── 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_UTF32.h │ │ │ ├── juce_CharPointer_UTF8.h │ │ │ ├── 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 │ │ │ └── zlib │ │ │ ├── README │ │ │ ├── adler32.c │ │ │ ├── compress.c │ │ │ ├── crc32.c │ │ │ ├── crc32.h │ │ │ ├── deflate.c │ │ │ ├── deflate.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 │ │ │ ├── zconf.in.h │ │ │ ├── zlib.h │ │ │ ├── zutil.c │ │ │ └── zutil.h │ │ ├── juce_cryptography │ │ ├── encryption │ │ │ ├── juce_BlowFish.cpp │ │ │ ├── juce_BlowFish.h │ │ │ ├── juce_Primes.cpp │ │ │ ├── juce_Primes.h │ │ │ ├── juce_RSAKey.cpp │ │ │ └── juce_RSAKey.h │ │ ├── hashing │ │ │ ├── juce_MD5.cpp │ │ │ ├── juce_MD5.h │ │ │ ├── juce_SHA256.cpp │ │ │ ├── juce_SHA256.h │ │ │ ├── juce_Whirlpool.cpp │ │ │ └── juce_Whirlpool.h │ │ ├── juce_cryptography.cpp │ │ ├── juce_cryptography.h │ │ └── juce_cryptography.mm │ │ ├── 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.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_dsp │ │ ├── containers │ │ │ ├── juce_AudioBlock.h │ │ │ ├── juce_AudioBlock_test.cpp │ │ │ ├── juce_FixedSizeFunction.h │ │ │ ├── juce_FixedSizeFunction_test.cpp │ │ │ ├── juce_SIMDRegister.h │ │ │ ├── juce_SIMDRegister_Impl.h │ │ │ └── juce_SIMDRegister_test.cpp │ │ ├── filter_design │ │ │ ├── juce_FilterDesign.cpp │ │ │ └── juce_FilterDesign.h │ │ ├── frequency │ │ │ ├── juce_Convolution.cpp │ │ │ ├── juce_Convolution.h │ │ │ ├── juce_Convolution_test.cpp │ │ │ ├── juce_FFT.cpp │ │ │ ├── juce_FFT.h │ │ │ ├── juce_FFT_test.cpp │ │ │ ├── juce_Windowing.cpp │ │ │ └── juce_Windowing.h │ │ ├── juce_dsp.cpp │ │ ├── juce_dsp.h │ │ ├── juce_dsp.mm │ │ ├── maths │ │ │ ├── juce_FastMathApproximations.h │ │ │ ├── juce_LogRampedValue.h │ │ │ ├── juce_LogRampedValue_test.cpp │ │ │ ├── juce_LookupTable.cpp │ │ │ ├── juce_LookupTable.h │ │ │ ├── juce_Matrix.cpp │ │ │ ├── juce_Matrix.h │ │ │ ├── juce_Matrix_test.cpp │ │ │ ├── juce_Phase.h │ │ │ ├── juce_Polynomial.h │ │ │ ├── juce_SpecialFunctions.cpp │ │ │ └── juce_SpecialFunctions.h │ │ ├── native │ │ │ ├── juce_avx_SIMDNativeOps.cpp │ │ │ ├── juce_avx_SIMDNativeOps.h │ │ │ ├── juce_fallback_SIMDNativeOps.h │ │ │ ├── juce_neon_SIMDNativeOps.cpp │ │ │ ├── juce_neon_SIMDNativeOps.h │ │ │ ├── juce_sse_SIMDNativeOps.cpp │ │ │ └── juce_sse_SIMDNativeOps.h │ │ ├── processors │ │ │ ├── juce_BallisticsFilter.cpp │ │ │ ├── juce_BallisticsFilter.h │ │ │ ├── juce_DelayLine.cpp │ │ │ ├── juce_DelayLine.h │ │ │ ├── juce_DryWetMixer.cpp │ │ │ ├── juce_DryWetMixer.h │ │ │ ├── juce_FIRFilter.cpp │ │ │ ├── juce_FIRFilter.h │ │ │ ├── juce_FIRFilter_test.cpp │ │ │ ├── juce_FirstOrderTPTFilter.cpp │ │ │ ├── juce_FirstOrderTPTFilter.h │ │ │ ├── juce_IIRFilter.cpp │ │ │ ├── juce_IIRFilter.h │ │ │ ├── juce_IIRFilter_Impl.h │ │ │ ├── juce_LinkwitzRileyFilter.cpp │ │ │ ├── juce_LinkwitzRileyFilter.h │ │ │ ├── juce_Oversampling.cpp │ │ │ ├── juce_Oversampling.h │ │ │ ├── juce_Panner.cpp │ │ │ ├── juce_Panner.h │ │ │ ├── juce_ProcessContext.h │ │ │ ├── juce_ProcessorChain.h │ │ │ ├── juce_ProcessorChain_test.cpp │ │ │ ├── juce_ProcessorDuplicator.h │ │ │ ├── juce_ProcessorWrapper.h │ │ │ ├── juce_StateVariableFilter.h │ │ │ ├── juce_StateVariableTPTFilter.cpp │ │ │ └── juce_StateVariableTPTFilter.h │ │ └── widgets │ │ │ ├── juce_Bias.h │ │ │ ├── juce_Chorus.cpp │ │ │ ├── juce_Chorus.h │ │ │ ├── juce_Compressor.cpp │ │ │ ├── juce_Compressor.h │ │ │ ├── juce_Gain.h │ │ │ ├── juce_LadderFilter.cpp │ │ │ ├── juce_LadderFilter.h │ │ │ ├── juce_Limiter.cpp │ │ │ ├── juce_Limiter.h │ │ │ ├── juce_NoiseGate.cpp │ │ │ ├── juce_NoiseGate.h │ │ │ ├── juce_Oscillator.h │ │ │ ├── juce_Phaser.cpp │ │ │ ├── juce_Phaser.h │ │ │ ├── juce_Reverb.h │ │ │ └── juce_WaveShaper.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 │ │ ├── interprocess │ │ │ ├── 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_ScopedLowPowerModeDisabler.cpp │ │ │ ├── juce_ScopedLowPowerModeDisabler.h │ │ │ ├── juce_android_Messaging.cpp │ │ │ ├── juce_ios_MessageManager.mm │ │ │ ├── juce_linux_EventLoop.h │ │ │ ├── juce_linux_Messaging.cpp │ │ │ ├── juce_mac_MessageManager.mm │ │ │ ├── juce_osx_MessageQueue.h │ │ │ ├── juce_win32_HiddenMessageWindow.h │ │ │ ├── juce_win32_Messaging.cpp │ │ │ ├── juce_win32_WinRTWrapper.cpp │ │ │ └── juce_win32_WinRTWrapper.h │ │ └── timers │ │ │ ├── juce_MultiTimer.cpp │ │ │ ├── juce_MultiTimer.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_LowLevelGraphicsPostScriptRenderer.cpp │ │ │ ├── juce_LowLevelGraphicsPostScriptRenderer.h │ │ │ ├── juce_LowLevelGraphicsSoftwareRenderer.cpp │ │ │ └── juce_LowLevelGraphicsSoftwareRenderer.h │ │ ├── effects │ │ │ ├── juce_DropShadowEffect.cpp │ │ │ ├── juce_DropShadowEffect.h │ │ │ ├── juce_GlowEffect.cpp │ │ │ ├── juce_GlowEffect.h │ │ │ └── juce_ImageEffectFilter.h │ │ ├── fonts │ │ │ ├── juce_AttributedString.cpp │ │ │ ├── juce_AttributedString.h │ │ │ ├── juce_CustomTypeface.cpp │ │ │ ├── juce_CustomTypeface.h │ │ │ ├── juce_Font.cpp │ │ │ ├── juce_Font.h │ │ │ ├── juce_GlyphArrangement.cpp │ │ │ ├── juce_GlyphArrangement.h │ │ │ ├── juce_TextLayout.cpp │ │ │ ├── juce_TextLayout.h │ │ │ ├── juce_Typeface.cpp │ │ │ └── juce_Typeface.h │ │ ├── geometry │ │ │ ├── juce_AffineTransform.cpp │ │ │ ├── juce_AffineTransform.h │ │ │ ├── juce_BorderSize.h │ │ │ ├── juce_EdgeTable.cpp │ │ │ ├── juce_EdgeTable.h │ │ │ ├── juce_Line.h │ │ │ ├── juce_Parallelogram.h │ │ │ ├── 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 │ │ ├── native │ │ │ ├── juce_RenderingHelpers.h │ │ │ ├── juce_android_Fonts.cpp │ │ │ ├── juce_android_GraphicsContext.cpp │ │ │ ├── juce_android_IconHelpers.cpp │ │ │ ├── juce_freetype_Fonts.cpp │ │ │ ├── juce_linux_Fonts.cpp │ │ │ ├── juce_linux_IconHelpers.cpp │ │ │ ├── juce_mac_CoreGraphicsContext.h │ │ │ ├── juce_mac_CoreGraphicsContext.mm │ │ │ ├── juce_mac_CoreGraphicsHelpers.h │ │ │ ├── juce_mac_Fonts.mm │ │ │ ├── juce_mac_IconHelpers.cpp │ │ │ ├── juce_win32_Direct2DGraphicsContext.cpp │ │ │ ├── juce_win32_Direct2DGraphicsContext.h │ │ │ ├── juce_win32_DirectWriteTypeLayout.cpp │ │ │ ├── juce_win32_DirectWriteTypeface.cpp │ │ │ ├── juce_win32_Fonts.cpp │ │ │ └── juce_win32_IconHelpers.cpp │ │ └── placement │ │ │ ├── juce_Justification.h │ │ │ ├── juce_RectanglePlacement.cpp │ │ │ └── juce_RectanglePlacement.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 │ │ ├── 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_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 │ │ │ ├── juce_JUCESplashScreen.cpp │ │ │ └── juce_JUCESplashScreen.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_PointerState.h │ │ │ ├── juce_SelectedItemSet.h │ │ │ ├── juce_TextDragAndDropTarget.h │ │ │ └── juce_TooltipClient.h │ │ ├── native │ │ │ ├── accessibility │ │ │ │ ├── juce_AccessibilityTextHelpers.h │ │ │ │ ├── juce_android_Accessibility.cpp │ │ │ │ ├── juce_ios_Accessibility.mm │ │ │ │ ├── juce_mac_Accessibility.mm │ │ │ │ ├── juce_mac_AccessibilitySharedCode.mm │ │ │ │ ├── juce_win32_Accessibility.cpp │ │ │ │ ├── juce_win32_AccessibilityElement.cpp │ │ │ │ ├── juce_win32_AccessibilityElement.h │ │ │ │ ├── juce_win32_ComInterfaces.h │ │ │ │ ├── juce_win32_UIAExpandCollapseProvider.h │ │ │ │ ├── juce_win32_UIAGridItemProvider.h │ │ │ │ ├── juce_win32_UIAGridProvider.h │ │ │ │ ├── juce_win32_UIAHelpers.h │ │ │ │ ├── juce_win32_UIAInvokeProvider.h │ │ │ │ ├── juce_win32_UIAProviderBase.h │ │ │ │ ├── juce_win32_UIAProviders.h │ │ │ │ ├── juce_win32_UIARangeValueProvider.h │ │ │ │ ├── juce_win32_UIASelectionProvider.h │ │ │ │ ├── juce_win32_UIATextProvider.h │ │ │ │ ├── juce_win32_UIAToggleProvider.h │ │ │ │ ├── juce_win32_UIATransformProvider.h │ │ │ │ ├── juce_win32_UIAValueProvider.h │ │ │ │ ├── juce_win32_UIAWindowProvider.h │ │ │ │ └── juce_win32_WindowsUIAWrapper.h │ │ │ ├── java │ │ │ │ └── app │ │ │ │ │ └── com │ │ │ │ │ └── rmsl │ │ │ │ │ └── juce │ │ │ │ │ ├── ComponentPeerView.java │ │ │ │ │ ├── JuceContentProviderCursor.java │ │ │ │ │ └── JuceContentProviderFileObserver.java │ │ │ ├── javaopt │ │ │ │ └── app │ │ │ │ │ └── com │ │ │ │ │ └── rmsl │ │ │ │ │ └── juce │ │ │ │ │ ├── JuceActivity.java │ │ │ │ │ └── JuceSharingContentProvider.java │ │ │ ├── juce_MultiTouchMapper.h │ │ │ ├── juce_ScopedDPIAwarenessDisabler.h │ │ │ ├── juce_android_ContentSharer.cpp │ │ │ ├── juce_android_FileChooser.cpp │ │ │ ├── juce_android_Windowing.cpp │ │ │ ├── juce_common_MimeTypes.cpp │ │ │ ├── juce_ios_ContentSharer.cpp │ │ │ ├── juce_ios_FileChooser.mm │ │ │ ├── juce_ios_UIViewComponentPeer.mm │ │ │ ├── juce_ios_Windowing.mm │ │ │ ├── juce_linux_FileChooser.cpp │ │ │ ├── juce_linux_Windowing.cpp │ │ │ ├── juce_mac_FileChooser.mm │ │ │ ├── juce_mac_MainMenu.mm │ │ │ ├── juce_mac_MouseCursor.mm │ │ │ ├── juce_mac_NSViewComponentPeer.mm │ │ │ ├── juce_mac_Windowing.mm │ │ │ ├── juce_win32_DragAndDrop.cpp │ │ │ ├── juce_win32_FileChooser.cpp │ │ │ ├── juce_win32_ScopedThreadDPIAwarenessSetter.h │ │ │ ├── juce_win32_Windowing.cpp │ │ │ └── x11 │ │ │ │ ├── juce_linux_X11_DragAndDrop.cpp │ │ │ │ ├── juce_linux_X11_Symbols.cpp │ │ │ │ ├── juce_linux_X11_Symbols.h │ │ │ │ ├── juce_linux_XWindowSystem.cpp │ │ │ │ └── juce_linux_XWindowSystem.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_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.h │ │ │ ├── juce_NativeMessageBox.h │ │ │ ├── juce_ResizableWindow.cpp │ │ │ ├── juce_ResizableWindow.h │ │ │ ├── juce_ThreadWithProgressWindow.cpp │ │ │ ├── juce_ThreadWithProgressWindow.h │ │ │ ├── juce_TooltipWindow.cpp │ │ │ ├── juce_TooltipWindow.h │ │ │ ├── juce_TopLevelWindow.cpp │ │ │ └── juce_TopLevelWindow.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 │ │ ├── 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.h │ │ └── native │ │ │ ├── java │ │ │ └── app │ │ │ │ └── com │ │ │ │ └── rmsl │ │ │ │ └── juce │ │ │ │ ├── JuceWebView.java │ │ │ │ └── JuceWebView21.java │ │ │ ├── javaopt │ │ │ └── app │ │ │ │ └── com │ │ │ │ └── rmsl │ │ │ │ └── juce │ │ │ │ ├── JuceFirebaseInstanceIdService.java │ │ │ │ └── JuceFirebaseMessagingService.java │ │ │ ├── juce_AndroidViewComponent.cpp │ │ │ ├── juce_android_PushNotifications.cpp │ │ │ ├── juce_android_WebBrowserComponent.cpp │ │ │ ├── juce_ios_PushNotifications.cpp │ │ │ ├── juce_ios_UIViewComponent.mm │ │ │ ├── juce_linux_X11_SystemTrayIcon.cpp │ │ │ ├── juce_linux_X11_WebBrowserComponent.cpp │ │ │ ├── juce_linux_XEmbedComponent.cpp │ │ │ ├── juce_mac_AppleRemote.mm │ │ │ ├── juce_mac_CarbonViewWrapperComponent.h │ │ │ ├── juce_mac_NSViewComponent.mm │ │ │ ├── juce_mac_NSViewFrameWatcher.h │ │ │ ├── juce_mac_PushNotifications.cpp │ │ │ ├── juce_mac_SystemTrayIcon.cpp │ │ │ ├── juce_mac_WebBrowserComponent.mm │ │ │ ├── juce_win32_ActiveXComponent.cpp │ │ │ ├── juce_win32_HWNDComponent.cpp │ │ │ ├── juce_win32_SystemTrayIcon.cpp │ │ │ └── juce_win32_WebBrowserComponent.cpp │ │ ├── juce_opengl │ │ ├── geometry │ │ │ ├── juce_Draggable3DOrientation.h │ │ │ ├── juce_Matrix3D.h │ │ │ ├── juce_Quaternion.h │ │ │ └── juce_Vector3D.h │ │ ├── juce_opengl.cpp │ │ ├── juce_opengl.h │ │ ├── juce_opengl.mm │ │ ├── native │ │ │ ├── java │ │ │ │ └── app │ │ │ │ │ └── com │ │ │ │ │ └── rmsl │ │ │ │ │ └── juce │ │ │ │ │ └── JuceOpenGLView.java │ │ │ ├── juce_OpenGLExtensions.h │ │ │ ├── juce_OpenGL_android.h │ │ │ ├── juce_OpenGL_ios.h │ │ │ ├── juce_OpenGL_linux_X11.h │ │ │ ├── juce_OpenGL_osx.h │ │ │ └── juce_OpenGL_win32.h │ │ ├── opengl │ │ │ ├── juce_OpenGLContext.cpp │ │ │ ├── juce_OpenGLContext.h │ │ │ ├── juce_OpenGLFrameBuffer.cpp │ │ │ ├── juce_OpenGLFrameBuffer.h │ │ │ ├── juce_OpenGLGraphicsContext.cpp │ │ │ ├── juce_OpenGLGraphicsContext.h │ │ │ ├── juce_OpenGLHelpers.cpp │ │ │ ├── juce_OpenGLHelpers.h │ │ │ ├── juce_OpenGLImage.cpp │ │ │ ├── juce_OpenGLImage.h │ │ │ ├── juce_OpenGLPixelFormat.cpp │ │ │ ├── juce_OpenGLPixelFormat.h │ │ │ ├── juce_OpenGLRenderer.h │ │ │ ├── juce_OpenGLShaderProgram.cpp │ │ │ ├── juce_OpenGLShaderProgram.h │ │ │ ├── juce_OpenGLTexture.cpp │ │ │ ├── juce_OpenGLTexture.h │ │ │ ├── juce_gl.cpp │ │ │ ├── juce_gl.h │ │ │ ├── juce_gles2.cpp │ │ │ ├── juce_gles2.h │ │ │ ├── juce_khrplatform.h │ │ │ └── juce_wgl.h │ │ └── utils │ │ │ ├── juce_OpenGLAppComponent.cpp │ │ │ └── juce_OpenGLAppComponent.h │ │ ├── juce_osc │ │ ├── juce_osc.cpp │ │ ├── juce_osc.h │ │ └── osc │ │ │ ├── juce_OSCAddress.cpp │ │ │ ├── juce_OSCAddress.h │ │ │ ├── juce_OSCArgument.cpp │ │ │ ├── juce_OSCArgument.h │ │ │ ├── juce_OSCBundle.cpp │ │ │ ├── juce_OSCBundle.h │ │ │ ├── juce_OSCMessage.cpp │ │ │ ├── juce_OSCMessage.h │ │ │ ├── juce_OSCReceiver.cpp │ │ │ ├── juce_OSCReceiver.h │ │ │ ├── juce_OSCSender.cpp │ │ │ ├── juce_OSCSender.h │ │ │ ├── juce_OSCTimeTag.cpp │ │ │ ├── juce_OSCTimeTag.h │ │ │ ├── juce_OSCTypes.cpp │ │ │ └── juce_OSCTypes.h │ │ ├── juce_product_unlocking │ │ ├── in_app_purchases │ │ │ ├── juce_InAppPurchases.cpp │ │ │ └── juce_InAppPurchases.h │ │ ├── juce_product_unlocking.cpp │ │ ├── juce_product_unlocking.h │ │ ├── juce_product_unlocking.mm │ │ ├── marketplace │ │ │ ├── juce_KeyFileGeneration.h │ │ │ ├── juce_OnlineUnlockForm.cpp │ │ │ ├── juce_OnlineUnlockForm.h │ │ │ ├── juce_OnlineUnlockStatus.cpp │ │ │ ├── juce_OnlineUnlockStatus.h │ │ │ ├── juce_TracktionMarketplaceStatus.cpp │ │ │ └── juce_TracktionMarketplaceStatus.h │ │ └── native │ │ │ ├── javaopt │ │ │ └── app │ │ │ │ └── com │ │ │ │ └── rmsl │ │ │ │ └── juce │ │ │ │ └── JuceBillingClient.java │ │ │ ├── juce_android_InAppPurchases.cpp │ │ │ └── juce_ios_InAppPurchases.cpp │ │ └── juce_video │ │ ├── capture │ │ ├── juce_CameraDevice.cpp │ │ └── juce_CameraDevice.h │ │ ├── juce_video.cpp │ │ ├── juce_video.h │ │ ├── juce_video.mm │ │ ├── native │ │ ├── java │ │ │ └── app │ │ │ │ └── com │ │ │ │ └── rmsl │ │ │ │ └── juce │ │ │ │ ├── CameraCaptureSessionCaptureCallback.java │ │ │ │ ├── CameraCaptureSessionStateCallback.java │ │ │ │ ├── CameraDeviceStateCallback.java │ │ │ │ ├── JuceOrientationEventListener.java │ │ │ │ ├── MediaControllerCallback.java │ │ │ │ ├── MediaSessionCallback.java │ │ │ │ └── SystemVolumeObserver.java │ │ ├── juce_android_CameraDevice.h │ │ ├── juce_android_Video.h │ │ ├── juce_ios_CameraDevice.h │ │ ├── juce_mac_CameraDevice.h │ │ ├── juce_mac_Video.h │ │ ├── juce_win32_CameraDevice.h │ │ ├── juce_win32_ComTypes.h │ │ └── juce_win32_Video.h │ │ └── playback │ │ ├── juce_VideoComponent.cpp │ │ └── juce_VideoComponent.h └── nanovg │ ├── fontstash.h │ ├── mnvg_bitcode │ ├── ios.h │ ├── macos.h │ ├── simulator.h │ └── tvos.h │ ├── nanovg.c │ ├── nanovg.h │ ├── nanovg_gl.h │ ├── nanovg_gl_utils.h │ ├── nanovg_mtl.h │ ├── nanovg_mtl.m │ ├── nanovg_mtl_shaders.metal │ ├── stb_image.h │ └── stb_truetype.h ├── README.md ├── Resources ├── Lucida Grande-Regular.ttf ├── Roboto-Bold.ttf ├── Roboto-Light.ttf ├── Roboto-Regular.ttf └── Verdana-Regular.ttf └── Source ├── NanoVGComponent.cpp ├── NanoVGComponent.h ├── NanoVGGraphics.cpp ├── NanoVGGraphics.h └── example ├── Main.cpp ├── MainComponent.cpp └── MainComponent.h /.github/workflows/cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/.github/workflows/cmake.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .DS_Store 3 | build/ -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Libraries/JUCE/.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /Libraries/JUCE/.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /Libraries/JUCE/.github/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/.github/contributing.md -------------------------------------------------------------------------------- /Libraries/JUCE/.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/.github/pull_request_template.md -------------------------------------------------------------------------------- /Libraries/JUCE/.github/workflows/check-cla.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/.github/workflows/check-cla.yml -------------------------------------------------------------------------------- /Libraries/JUCE/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/.gitignore -------------------------------------------------------------------------------- /Libraries/JUCE/.gitlab-ci.yml: -------------------------------------------------------------------------------- 1 | include: 2 | - project: 'juce-repos/JUCE-utils' 3 | file: '/CI/gitlab-ci.yml' 4 | 5 | -------------------------------------------------------------------------------- /Libraries/JUCE/BREAKING-CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/BREAKING-CHANGES.txt -------------------------------------------------------------------------------- /Libraries/JUCE/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/CMakeLists.txt -------------------------------------------------------------------------------- /Libraries/JUCE/ChangeList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/ChangeList.txt -------------------------------------------------------------------------------- /Libraries/JUCE/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/LICENSE.md -------------------------------------------------------------------------------- /Libraries/JUCE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/README.md -------------------------------------------------------------------------------- /Libraries/JUCE/docs/Accessibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/docs/Accessibility.md -------------------------------------------------------------------------------- /Libraries/JUCE/docs/CMake API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/docs/CMake API.md -------------------------------------------------------------------------------- /Libraries/JUCE/docs/JUCE Module Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/docs/JUCE Module Format.md -------------------------------------------------------------------------------- /Libraries/JUCE/docs/Linux Dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/docs/Linux Dependencies.md -------------------------------------------------------------------------------- /Libraries/JUCE/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/docs/README.md -------------------------------------------------------------------------------- /Libraries/JUCE/docs/doxygen/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/docs/doxygen/Doxyfile -------------------------------------------------------------------------------- /Libraries/JUCE/docs/doxygen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/docs/doxygen/Makefile -------------------------------------------------------------------------------- /Libraries/JUCE/docs/doxygen/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/docs/doxygen/make.bat -------------------------------------------------------------------------------- /Libraries/JUCE/docs/doxygen/process_source_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/docs/doxygen/process_source_files.py -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/AudioLiveScrollingDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/AudioLiveScrollingDisplay.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/AddPair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/AddPair.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/ApplyForce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/ApplyForce.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/BodyTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/BodyTypes.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/Breakable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/Breakable.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/Bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/Bridge.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/BulletTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/BulletTest.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/Cantilever.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/Cantilever.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/Car.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/Car.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/Chain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/Chain.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/CharacterCollision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/CharacterCollision.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/CollisionFiltering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/CollisionFiltering.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/CollisionProcessing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/CollisionProcessing.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/CompoundShapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/CompoundShapes.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/Confined.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/Confined.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/ContinuousTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/ContinuousTest.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/DistanceTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/DistanceTest.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/Dominos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/Dominos.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/DumpShell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/DumpShell.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/DynamicTreeTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/DynamicTreeTest.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/EdgeShapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/EdgeShapes.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/EdgeTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/EdgeTest.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/Gears.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/Gears.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/OneSidedPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/OneSidedPlatform.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/Pinball.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/Pinball.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/PolyCollision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/PolyCollision.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/PolyShapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/PolyShapes.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/Prismatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/Prismatic.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/Pulleys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/Pulleys.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/Pyramid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/Pyramid.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/RayCast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/RayCast.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/Revolute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/Revolute.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/Rope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/Rope.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/RopeJoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/RopeJoint.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/SensorTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/SensorTest.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/ShapeEditing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/ShapeEditing.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/SliderCrank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/SliderCrank.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/SphereStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/SphereStack.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/TestEntries.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/TestEntries.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/TheoJansen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/TheoJansen.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/Tiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/Tiles.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/TimeOfImpact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/TimeOfImpact.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/Tumbler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/Tumbler.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/VaryingFriction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/VaryingFriction.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/VaryingRestitution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/VaryingRestitution.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/VerticalStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/VerticalStack.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Box2DTests/Web.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Box2DTests/Web.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/DSPDemos_Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/DSPDemos_Common.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/DemoUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/DemoUtilities.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Notifications/sounds/isntit.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Notifications/sounds/isntit.caf -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Notifications/sounds/isntit.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Notifications/sounds/isntit.mp3 -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Notifications/sounds/served.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Notifications/sounds/served.caf -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Notifications/sounds/served.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Notifications/sounds/served.mp3 -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Notifications/sounds/solemn.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Notifications/sounds/solemn.caf -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Notifications/sounds/solemn.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Notifications/sounds/solemn.mp3 -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Purchases/Ed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Purchases/Ed.png -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Purchases/Ed0.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Purchases/Ed0.ogg -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Purchases/Ed1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Purchases/Ed1.ogg -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Purchases/Ed2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Purchases/Ed2.ogg -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Purchases/Fabian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Purchases/Fabian.png -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Purchases/Fabian0.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Purchases/Fabian0.ogg -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Purchases/Fabian1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Purchases/Fabian1.ogg -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Purchases/Fabian2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Purchases/Fabian2.ogg -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Purchases/JB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Purchases/JB.png -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Purchases/JB0.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Purchases/JB0.ogg -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Purchases/JB1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Purchases/JB1.ogg -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Purchases/JB2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Purchases/JB2.ogg -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Purchases/Jules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Purchases/Jules.png -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Purchases/Jules0.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Purchases/Jules0.ogg -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Purchases/Jules1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Purchases/Jules1.ogg -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Purchases/Jules2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Purchases/Jules2.ogg -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Purchases/Lukasz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Purchases/Lukasz.png -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Purchases/Lukasz0.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Purchases/Lukasz0.ogg -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Purchases/Lukasz1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Purchases/Lukasz1.ogg -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Purchases/Lukasz2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Purchases/Lukasz2.ogg -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Purchases/Robot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Purchases/Robot.png -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Purchases/Robot0.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Purchases/Robot0.ogg -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Purchases/Robot1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Purchases/Robot1.ogg -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Purchases/Robot2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Purchases/Robot2.ogg -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Purchases/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Purchases/icon.png -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Signing/InAppPurchase.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Signing/InAppPurchase.keystore -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/Signing/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/Signing/README.txt -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/WavefrontObjParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/WavefrontObjParser.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/cassette_recorder.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/cassette_recorder.wav -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/cello.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/cello.wav -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/demo table data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/demo table data.xml -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/google-services.json -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/guitar_amp.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/guitar_amp.wav -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/icons.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/icons.zip -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/juce_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/juce_icon.png -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/juce_icon_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/juce_icon_template.png -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/juce_module_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/juce_module_info -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/portmeirion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/portmeirion.jpg -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/power.png -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/proaudio.path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/proaudio.path -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/reverb_ir.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/reverb_ir.wav -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/singing.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/singing.ogg -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/teapot.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/teapot.obj -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/tile_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/tile_background.png -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Assets/treedemo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Assets/treedemo.xml -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Audio/AudioAppDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Audio/AudioAppDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Audio/AudioLatencyDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Audio/AudioLatencyDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Audio/AudioPlaybackDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Audio/AudioPlaybackDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Audio/AudioRecordingDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Audio/AudioRecordingDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Audio/AudioSettingsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Audio/AudioSettingsDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Audio/AudioSynthesiserDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Audio/AudioSynthesiserDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Audio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Audio/CMakeLists.txt -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Audio/MPEDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Audio/MPEDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Audio/MidiDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Audio/MidiDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Audio/PluckedStringsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Audio/PluckedStringsDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Audio/SimpleFFTDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Audio/SimpleFFTDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/CMake/AudioPlugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/CMake/AudioPlugin/CMakeLists.txt -------------------------------------------------------------------------------- /Libraries/JUCE/examples/CMake/AudioPlugin/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/CMake/AudioPlugin/PluginEditor.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/examples/CMake/AudioPlugin/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/CMake/AudioPlugin/PluginEditor.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/CMake/AudioPlugin/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/CMake/AudioPlugin/PluginProcessor.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/examples/CMake/AudioPlugin/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/CMake/AudioPlugin/PluginProcessor.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/CMake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/CMake/CMakeLists.txt -------------------------------------------------------------------------------- /Libraries/JUCE/examples/CMake/ConsoleApp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/CMake/ConsoleApp/CMakeLists.txt -------------------------------------------------------------------------------- /Libraries/JUCE/examples/CMake/ConsoleApp/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/CMake/ConsoleApp/Main.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/examples/CMake/GuiApp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/CMake/GuiApp/CMakeLists.txt -------------------------------------------------------------------------------- /Libraries/JUCE/examples/CMake/GuiApp/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/CMake/GuiApp/Main.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/examples/CMake/GuiApp/MainComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/CMake/GuiApp/MainComponent.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/examples/CMake/GuiApp/MainComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/CMake/GuiApp/MainComponent.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/CMakeLists.txt -------------------------------------------------------------------------------- /Libraries/JUCE/examples/DSP/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/DSP/CMakeLists.txt -------------------------------------------------------------------------------- /Libraries/JUCE/examples/DSP/ConvolutionDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/DSP/ConvolutionDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/DSP/FIRFilterDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/DSP/FIRFilterDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/DSP/GainDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/DSP/GainDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/DSP/IIRFilterDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/DSP/IIRFilterDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/DSP/OscillatorDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/DSP/OscillatorDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/DSP/OverdriveDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/DSP/OverdriveDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/DSP/SIMDRegisterDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/DSP/SIMDRegisterDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/DSP/StateVariableFilterDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/DSP/StateVariableFilterDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/DSP/WaveShaperTanhDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/DSP/WaveShaperTanhDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/DemoRunner/Builds/Android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/DemoRunner/Builds/Android/build.gradle -------------------------------------------------------------------------------- /Libraries/JUCE/examples/DemoRunner/Builds/Android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/DemoRunner/Builds/Android/gradlew -------------------------------------------------------------------------------- /Libraries/JUCE/examples/DemoRunner/Builds/Android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/DemoRunner/Builds/Android/gradlew.bat -------------------------------------------------------------------------------- /Libraries/JUCE/examples/DemoRunner/Builds/Android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'DemoRunner' 2 | include ':app' -------------------------------------------------------------------------------- /Libraries/JUCE/examples/DemoRunner/Builds/MacOSX/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/DemoRunner/Builds/MacOSX/Icon.icns -------------------------------------------------------------------------------- /Libraries/JUCE/examples/DemoRunner/Builds/MacOSX/Info-App.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/DemoRunner/Builds/MacOSX/Info-App.plist -------------------------------------------------------------------------------- /Libraries/JUCE/examples/DemoRunner/Builds/iOS/App.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/DemoRunner/Builds/iOS/App.entitlements -------------------------------------------------------------------------------- /Libraries/JUCE/examples/DemoRunner/Builds/iOS/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/DemoRunner/Builds/iOS/Icon.icns -------------------------------------------------------------------------------- /Libraries/JUCE/examples/DemoRunner/Builds/iOS/Info-App.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/DemoRunner/Builds/iOS/Info-App.plist -------------------------------------------------------------------------------- /Libraries/JUCE/examples/DemoRunner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/DemoRunner/CMakeLists.txt -------------------------------------------------------------------------------- /Libraries/JUCE/examples/DemoRunner/DemoRunner.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/DemoRunner/DemoRunner.jucer -------------------------------------------------------------------------------- /Libraries/JUCE/examples/DemoRunner/JuceLibraryCode/JuceHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/DemoRunner/JuceLibraryCode/JuceHeader.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/DemoRunner/JuceLibraryCode/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/DemoRunner/JuceLibraryCode/ReadMe.txt -------------------------------------------------------------------------------- /Libraries/JUCE/examples/DemoRunner/Source/Demos/DemoPIPs1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/DemoRunner/Source/Demos/DemoPIPs1.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/examples/DemoRunner/Source/Demos/DemoPIPs2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/DemoRunner/Source/Demos/DemoPIPs2.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/examples/DemoRunner/Source/Demos/IntroScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/DemoRunner/Source/Demos/IntroScreen.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/DemoRunner/Source/Demos/JUCEDemos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/DemoRunner/Source/Demos/JUCEDemos.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/examples/DemoRunner/Source/Demos/JUCEDemos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/DemoRunner/Source/Demos/JUCEDemos.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/DemoRunner/Source/JUCEAppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/DemoRunner/Source/JUCEAppIcon.png -------------------------------------------------------------------------------- /Libraries/JUCE/examples/DemoRunner/Source/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/DemoRunner/Source/Main.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/examples/DemoRunner/Source/UI/MainComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/DemoRunner/Source/UI/MainComponent.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/examples/DemoRunner/Source/UI/MainComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/DemoRunner/Source/UI/MainComponent.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/DemoRunner/Source/UI/SettingsContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/DemoRunner/Source/UI/SettingsContent.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/GUI/AccessibilityDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/GUI/AccessibilityDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/GUI/AnimationAppDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/GUI/AnimationAppDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/GUI/AnimationDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/GUI/AnimationDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/GUI/BouncingBallWavetableDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/GUI/BouncingBallWavetableDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/GUI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/GUI/CMakeLists.txt -------------------------------------------------------------------------------- /Libraries/JUCE/examples/GUI/CameraDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/GUI/CameraDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/GUI/CodeEditorDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/GUI/CodeEditorDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/GUI/ComponentDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/GUI/ComponentDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/GUI/ComponentTransformsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/GUI/ComponentTransformsDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/GUI/DialogsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/GUI/DialogsDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/GUI/FlexBoxDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/GUI/FlexBoxDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/GUI/FontsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/GUI/FontsDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/GUI/GraphicsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/GUI/GraphicsDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/GUI/GridDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/GUI/GridDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/GUI/HelloWorldDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/GUI/HelloWorldDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/GUI/ImagesDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/GUI/ImagesDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/GUI/KeyMappingsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/GUI/KeyMappingsDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/GUI/LookAndFeelDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/GUI/LookAndFeelDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/GUI/MDIDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/GUI/MDIDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/GUI/MenusDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/GUI/MenusDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/GUI/MultiTouchDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/GUI/MultiTouchDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/GUI/OpenGLAppDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/GUI/OpenGLAppDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/GUI/OpenGLDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/GUI/OpenGLDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/GUI/OpenGLDemo2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/GUI/OpenGLDemo2D.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/GUI/PropertiesDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/GUI/PropertiesDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/GUI/VideoDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/GUI/VideoDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/GUI/WebBrowserDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/GUI/WebBrowserDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/GUI/WidgetsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/GUI/WidgetsDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/GUI/WindowsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/GUI/WindowsDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Plugins/AUv3SynthPluginDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Plugins/AUv3SynthPluginDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Plugins/ArpeggiatorPluginDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Plugins/ArpeggiatorPluginDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Plugins/AudioPluginDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Plugins/AudioPluginDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Plugins/CMakeLists.txt -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Plugins/DSPModulePluginDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Plugins/DSPModulePluginDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Plugins/GainPluginDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Plugins/GainPluginDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Plugins/InterAppAudioEffectPluginDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Plugins/InterAppAudioEffectPluginDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Plugins/MidiLoggerPluginDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Plugins/MidiLoggerPluginDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Plugins/MultiOutSynthPluginDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Plugins/MultiOutSynthPluginDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Plugins/NoiseGatePluginDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Plugins/NoiseGatePluginDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Plugins/ReaperEmbeddedViewPluginDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Plugins/ReaperEmbeddedViewPluginDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Plugins/SamplerPluginDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Plugins/SamplerPluginDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Plugins/SurroundPluginDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Plugins/SurroundPluginDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Plugins/extern/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Plugins/extern/LICENSE.md -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Plugins/extern/reaper_plugin_fx_embed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Plugins/extern/reaper_plugin_fx_embed.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Plugins/extern/reaper_vst3_interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Plugins/extern/reaper_vst3_interfaces.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Utilities/AnalyticsCollectionDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Utilities/AnalyticsCollectionDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Utilities/Box2DDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Utilities/Box2DDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Utilities/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Utilities/CMakeLists.txt -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Utilities/ChildProcessDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Utilities/ChildProcessDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Utilities/CryptographyDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Utilities/CryptographyDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Utilities/InAppPurchasesDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Utilities/InAppPurchasesDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Utilities/JavaScriptDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Utilities/JavaScriptDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Utilities/LiveConstantDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Utilities/LiveConstantDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Utilities/MultithreadingDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Utilities/MultithreadingDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Utilities/NetworkingDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Utilities/NetworkingDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Utilities/OSCDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Utilities/OSCDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Utilities/PushNotificationsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Utilities/PushNotificationsDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Utilities/SystemInfoDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Utilities/SystemInfoDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Utilities/TimersAndEventsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Utilities/TimersAndEventsDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Utilities/UnitTestsDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Utilities/UnitTestsDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Utilities/ValueTreesDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Utilities/ValueTreesDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/examples/Utilities/XMLandJSONDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/examples/Utilities/XMLandJSONDemo.h -------------------------------------------------------------------------------- /Libraries/JUCE/extras/AudioPerformanceTest/Builds/Android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'AudioPerformanceTest' 2 | include ':app' -------------------------------------------------------------------------------- /Libraries/JUCE/extras/AudioPerformanceTest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/AudioPerformanceTest/CMakeLists.txt -------------------------------------------------------------------------------- /Libraries/JUCE/extras/AudioPerformanceTest/Source/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/AudioPerformanceTest/Source/Main.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/extras/AudioPluginHost/AudioPluginHost.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/AudioPluginHost/AudioPluginHost.jucer -------------------------------------------------------------------------------- /Libraries/JUCE/extras/AudioPluginHost/Builds/Android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/AudioPluginHost/Builds/Android/gradlew -------------------------------------------------------------------------------- /Libraries/JUCE/extras/AudioPluginHost/Builds/Android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'AudioPluginHost' 2 | include ':app' -------------------------------------------------------------------------------- /Libraries/JUCE/extras/AudioPluginHost/Builds/MacOSX/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/AudioPluginHost/Builds/MacOSX/Icon.icns -------------------------------------------------------------------------------- /Libraries/JUCE/extras/AudioPluginHost/Builds/iOS/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/AudioPluginHost/Builds/iOS/Icon.icns -------------------------------------------------------------------------------- /Libraries/JUCE/extras/AudioPluginHost/Builds/iOS/Info-App.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/AudioPluginHost/Builds/iOS/Info-App.plist -------------------------------------------------------------------------------- /Libraries/JUCE/extras/AudioPluginHost/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/AudioPluginHost/CMakeLists.txt -------------------------------------------------------------------------------- /Libraries/JUCE/extras/AudioPluginHost/Source/HostStartup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/AudioPluginHost/Source/HostStartup.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/extras/AudioPluginHost/Source/JUCEAppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/AudioPluginHost/Source/JUCEAppIcon.png -------------------------------------------------------------------------------- /Libraries/JUCE/extras/AudioPluginHost/Source/UI/PluginWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/AudioPluginHost/Source/UI/PluginWindow.h -------------------------------------------------------------------------------- /Libraries/JUCE/extras/BinaryBuilder/BinaryBuilder.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/BinaryBuilder/BinaryBuilder.jucer -------------------------------------------------------------------------------- /Libraries/JUCE/extras/BinaryBuilder/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/BinaryBuilder/CMakeLists.txt -------------------------------------------------------------------------------- /Libraries/JUCE/extras/BinaryBuilder/JuceLibraryCode/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/BinaryBuilder/JuceLibraryCode/ReadMe.txt -------------------------------------------------------------------------------- /Libraries/JUCE/extras/BinaryBuilder/Source/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/BinaryBuilder/Source/Main.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/extras/Build/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/Build/.DS_Store -------------------------------------------------------------------------------- /Libraries/JUCE/extras/Build/CMake/JUCECheckAtomic.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/Build/CMake/JUCECheckAtomic.cmake -------------------------------------------------------------------------------- /Libraries/JUCE/extras/Build/CMake/JUCEConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/Build/CMake/JUCEConfig.cmake.in -------------------------------------------------------------------------------- /Libraries/JUCE/extras/Build/CMake/JUCEHelperTargets.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/Build/CMake/JUCEHelperTargets.cmake -------------------------------------------------------------------------------- /Libraries/JUCE/extras/Build/CMake/JUCEModuleSupport.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/Build/CMake/JUCEModuleSupport.cmake -------------------------------------------------------------------------------- /Libraries/JUCE/extras/Build/CMake/JUCEUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/Build/CMake/JUCEUtils.cmake -------------------------------------------------------------------------------- /Libraries/JUCE/extras/Build/CMake/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/Build/CMake/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Libraries/JUCE/extras/Build/CMake/PIPAudioProcessor.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/Build/CMake/PIPAudioProcessor.cpp.in -------------------------------------------------------------------------------- /Libraries/JUCE/extras/Build/CMake/PIPComponent.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/Build/CMake/PIPComponent.cpp.in -------------------------------------------------------------------------------- /Libraries/JUCE/extras/Build/CMake/PIPConsole.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/Build/CMake/PIPConsole.cpp.in -------------------------------------------------------------------------------- /Libraries/JUCE/extras/Build/CMake/RecentFilesMenuTemplate.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/Build/CMake/RecentFilesMenuTemplate.nib -------------------------------------------------------------------------------- /Libraries/JUCE/extras/Build/CMake/UnityPluginGUIScript.cs.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/Build/CMake/UnityPluginGUIScript.cs.in -------------------------------------------------------------------------------- /Libraries/JUCE/extras/Build/CMake/checkBundleSigning.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/Build/CMake/checkBundleSigning.cmake -------------------------------------------------------------------------------- /Libraries/JUCE/extras/Build/CMake/copyDir.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/Build/CMake/copyDir.cmake -------------------------------------------------------------------------------- /Libraries/JUCE/extras/Build/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/Build/CMakeLists.txt -------------------------------------------------------------------------------- /Libraries/JUCE/extras/Build/juce_build_tools/juce_build_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/Build/juce_build_tools/juce_build_tools.h -------------------------------------------------------------------------------- /Libraries/JUCE/extras/Build/juce_build_tools/utils/juce_Icons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/Build/juce_build_tools/utils/juce_Icons.h -------------------------------------------------------------------------------- /Libraries/JUCE/extras/Build/juceaide/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/Build/juceaide/CMakeLists.txt -------------------------------------------------------------------------------- /Libraries/JUCE/extras/Build/juceaide/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/Build/juceaide/Main.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/extras/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/CMakeLists.txt -------------------------------------------------------------------------------- /Libraries/JUCE/extras/NetworkGraphicsDemo/Builds/Android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'NetworkGraphicsDemo' 2 | include ':app' -------------------------------------------------------------------------------- /Libraries/JUCE/extras/NetworkGraphicsDemo/Builds/iOS/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/NetworkGraphicsDemo/Builds/iOS/Icon.icns -------------------------------------------------------------------------------- /Libraries/JUCE/extras/NetworkGraphicsDemo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/NetworkGraphicsDemo/CMakeLists.txt -------------------------------------------------------------------------------- /Libraries/JUCE/extras/NetworkGraphicsDemo/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/NetworkGraphicsDemo/README.txt -------------------------------------------------------------------------------- /Libraries/JUCE/extras/NetworkGraphicsDemo/Source/Demos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/NetworkGraphicsDemo/Source/Demos.h -------------------------------------------------------------------------------- /Libraries/JUCE/extras/NetworkGraphicsDemo/Source/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/NetworkGraphicsDemo/Source/Main.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/extras/NetworkGraphicsDemo/Source/SharedCanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/NetworkGraphicsDemo/Source/SharedCanvas.h -------------------------------------------------------------------------------- /Libraries/JUCE/extras/NetworkGraphicsDemo/Source/juce_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/NetworkGraphicsDemo/Source/juce_icon.png -------------------------------------------------------------------------------- /Libraries/JUCE/extras/Projucer/Builds/LinuxMakefile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/Projucer/Builds/LinuxMakefile/Makefile -------------------------------------------------------------------------------- /Libraries/JUCE/extras/Projucer/Builds/MacOSX/Icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/Projucer/Builds/MacOSX/Icon.icns -------------------------------------------------------------------------------- /Libraries/JUCE/extras/Projucer/Builds/MacOSX/Info-App.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/Projucer/Builds/MacOSX/Info-App.plist -------------------------------------------------------------------------------- /Libraries/JUCE/extras/Projucer/Builds/VisualStudio2015/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/Projucer/Builds/VisualStudio2015/icon.ico -------------------------------------------------------------------------------- /Libraries/JUCE/extras/Projucer/Builds/VisualStudio2017/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/Projucer/Builds/VisualStudio2017/icon.ico -------------------------------------------------------------------------------- /Libraries/JUCE/extras/Projucer/Builds/VisualStudio2019/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/Projucer/Builds/VisualStudio2019/icon.ico -------------------------------------------------------------------------------- /Libraries/JUCE/extras/Projucer/Builds/VisualStudio2022/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/Projucer/Builds/VisualStudio2022/icon.ico -------------------------------------------------------------------------------- /Libraries/JUCE/extras/Projucer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/Projucer/CMakeLists.txt -------------------------------------------------------------------------------- /Libraries/JUCE/extras/Projucer/JuceLibraryCode/BinaryData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/Projucer/JuceLibraryCode/BinaryData.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/extras/Projucer/JuceLibraryCode/BinaryData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/Projucer/JuceLibraryCode/BinaryData.h -------------------------------------------------------------------------------- /Libraries/JUCE/extras/Projucer/JuceLibraryCode/JuceHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/Projucer/JuceLibraryCode/JuceHeader.h -------------------------------------------------------------------------------- /Libraries/JUCE/extras/Projucer/JuceLibraryCode/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/Projucer/JuceLibraryCode/ReadMe.txt -------------------------------------------------------------------------------- /Libraries/JUCE/extras/Projucer/Projucer.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/Projucer/Projucer.jucer -------------------------------------------------------------------------------- /Libraries/JUCE/extras/Projucer/Source/BinaryData/gradle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/Projucer/Source/BinaryData/gradle/LICENSE -------------------------------------------------------------------------------- /Libraries/JUCE/extras/Projucer/Source/BinaryData/gradle/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/Projucer/Source/BinaryData/gradle/gradlew -------------------------------------------------------------------------------- /Libraries/JUCE/extras/Projucer/Source/Project/jucer_Project.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/Projucer/Source/Project/jucer_Project.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/extras/Projucer/Source/Project/jucer_Project.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/Projucer/Source/Project/jucer_Project.h -------------------------------------------------------------------------------- /Libraries/JUCE/extras/Projucer/Source/Utility/UI/jucer_Icons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/Projucer/Source/Utility/UI/jucer_Icons.h -------------------------------------------------------------------------------- /Libraries/JUCE/extras/UnitTestRunner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/UnitTestRunner/CMakeLists.txt -------------------------------------------------------------------------------- /Libraries/JUCE/extras/UnitTestRunner/JuceLibraryCode/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/UnitTestRunner/JuceLibraryCode/ReadMe.txt -------------------------------------------------------------------------------- /Libraries/JUCE/extras/UnitTestRunner/Source/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/UnitTestRunner/Source/Main.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/extras/UnitTestRunner/UnitTestRunner.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/UnitTestRunner/UnitTestRunner.jucer -------------------------------------------------------------------------------- /Libraries/JUCE/extras/WindowsDLL/JuceLibraryCode/JuceHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/WindowsDLL/JuceLibraryCode/JuceHeader.h -------------------------------------------------------------------------------- /Libraries/JUCE/extras/WindowsDLL/JuceLibraryCode/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/WindowsDLL/JuceLibraryCode/ReadMe.txt -------------------------------------------------------------------------------- /Libraries/JUCE/extras/WindowsDLL/WindowsDLL.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/extras/WindowsDLL/WindowsDLL.jucer -------------------------------------------------------------------------------- /Libraries/JUCE/modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/CMakeLists.txt -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_analytics/juce_analytics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_analytics/juce_analytics.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_analytics/juce_analytics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_analytics/juce_analytics.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_audio_basics/juce_audio_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_audio_basics/juce_audio_basics.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_audio_basics/juce_audio_basics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_audio_basics/juce_audio_basics.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_audio_basics/juce_audio_basics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_audio_basics/juce_audio_basics.mm -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_audio_basics/midi/juce_MidiBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_audio_basics/midi/juce_MidiBuffer.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_audio_basics/midi/juce_MidiFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_audio_basics/midi/juce_MidiFile.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_audio_basics/midi/juce_MidiFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_audio_basics/midi/juce_MidiFile.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_audio_basics/midi/juce_MidiRPN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_audio_basics/midi/juce_MidiRPN.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_audio_basics/midi/juce_MidiRPN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_audio_basics/midi/juce_MidiRPN.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_audio_basics/midi/ump/juce_UMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_audio_basics/midi/ump/juce_UMP.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_audio_basics/mpe/juce_MPEMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_audio_basics/mpe/juce_MPEMessages.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_audio_basics/mpe/juce_MPENote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_audio_basics/mpe/juce_MPENote.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_audio_basics/mpe/juce_MPENote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_audio_basics/mpe/juce_MPENote.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_audio_basics/mpe/juce_MPEUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_audio_basics/mpe/juce_MPEUtils.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_audio_basics/mpe/juce_MPEUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_audio_basics/mpe/juce_MPEUtils.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_audio_basics/mpe/juce_MPEValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_audio_basics/mpe/juce_MPEValue.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_audio_basics/mpe/juce_MPEValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_audio_basics/mpe/juce_MPEValue.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_audio_basics/utilities/juce_ADSR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_audio_basics/utilities/juce_ADSR.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_audio_devices/juce_audio_devices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_audio_devices/juce_audio_devices.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_audio_devices/juce_audio_devices.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_audio_devices/juce_audio_devices.mm -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_audio_devices/native/oboe/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_audio_devices/native/oboe/LICENSE -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_audio_devices/native/oboe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_audio_devices/native/oboe/README.md -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_audio_formats/codecs/flac/all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_audio_formats/codecs/flac/all.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_audio_formats/codecs/flac/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_audio_formats/codecs/flac/alloc.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_audio_formats/codecs/flac/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_audio_formats/codecs/flac/assert.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_audio_formats/codecs/flac/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_audio_formats/codecs/flac/compat.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_audio_formats/codecs/flac/endswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_audio_formats/codecs/flac/endswap.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_audio_formats/codecs/flac/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_audio_formats/codecs/flac/export.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_audio_formats/codecs/flac/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_audio_formats/codecs/flac/format.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_audio_formats/juce_audio_formats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_audio_formats/juce_audio_formats.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_audio_formats/juce_audio_formats.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_audio_formats/juce_audio_formats.mm -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_audio_plugin_client/AUResources.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_audio_plugin_client/AUResources.r -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_audio_utils/juce_audio_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_audio_utils/juce_audio_utils.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_audio_utils/juce_audio_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_audio_utils/juce_audio_utils.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_audio_utils/juce_audio_utils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_audio_utils/juce_audio_utils.mm -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_box2d/box2d/Box2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_box2d/box2d/Box2D.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_box2d/box2d/Collision/b2Collision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_box2d/box2d/Collision/b2Collision.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_box2d/box2d/Collision/b2Distance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_box2d/box2d/Collision/b2Distance.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_box2d/box2d/Common/b2Draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_box2d/box2d/Common/b2Draw.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_box2d/box2d/Common/b2Draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_box2d/box2d/Common/b2Draw.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_box2d/box2d/Common/b2Math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_box2d/box2d/Common/b2Math.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_box2d/box2d/Common/b2Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_box2d/box2d/Common/b2Math.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_box2d/box2d/Common/b2Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_box2d/box2d/Common/b2Settings.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_box2d/box2d/Common/b2Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_box2d/box2d/Common/b2Settings.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_box2d/box2d/Common/b2Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_box2d/box2d/Common/b2Timer.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_box2d/box2d/Common/b2Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_box2d/box2d/Common/b2Timer.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_box2d/box2d/Dynamics/b2Body.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_box2d/box2d/Dynamics/b2Body.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_box2d/box2d/Dynamics/b2Body.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_box2d/box2d/Dynamics/b2Body.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_box2d/box2d/Dynamics/b2Fixture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_box2d/box2d/Dynamics/b2Fixture.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_box2d/box2d/Dynamics/b2Fixture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_box2d/box2d/Dynamics/b2Fixture.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_box2d/box2d/Dynamics/b2Island.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_box2d/box2d/Dynamics/b2Island.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_box2d/box2d/Dynamics/b2Island.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_box2d/box2d/Dynamics/b2Island.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_box2d/box2d/Dynamics/b2TimeStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_box2d/box2d/Dynamics/b2TimeStep.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_box2d/box2d/Dynamics/b2World.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_box2d/box2d/Dynamics/b2World.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_box2d/box2d/Dynamics/b2World.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_box2d/box2d/Dynamics/b2World.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_box2d/box2d/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_box2d/box2d/README.txt -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_box2d/box2d/Rope/b2Rope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_box2d/box2d/Rope/b2Rope.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_box2d/box2d/Rope/b2Rope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_box2d/box2d/Rope/b2Rope.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_box2d/juce_box2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_box2d/juce_box2d.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_box2d/juce_box2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_box2d/juce_box2d.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_box2d/utils/juce_Box2DRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_box2d/utils/juce_Box2DRenderer.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_box2d/utils/juce_Box2DRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_box2d/utils/juce_Box2DRenderer.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/containers/juce_AbstractFifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/containers/juce_AbstractFifo.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/containers/juce_Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/containers/juce_Array.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/containers/juce_ArrayBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/containers/juce_ArrayBase.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/containers/juce_ArrayBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/containers/juce_ArrayBase.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/containers/juce_HashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/containers/juce_HashMap.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/containers/juce_ListenerList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/containers/juce_ListenerList.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/containers/juce_OwnedArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/containers/juce_OwnedArray.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/containers/juce_OwnedArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/containers/juce_OwnedArray.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/containers/juce_PropertySet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/containers/juce_PropertySet.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/containers/juce_SortedSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/containers/juce_SortedSet.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/containers/juce_SparseSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/containers/juce_SparseSet.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/containers/juce_SparseSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/containers/juce_SparseSet.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/containers/juce_Variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/containers/juce_Variant.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/containers/juce_Variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/containers/juce_Variant.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/files/juce_DirectoryIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/files/juce_DirectoryIterator.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/files/juce_File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/files/juce_File.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/files/juce_File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/files/juce_File.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/files/juce_FileFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/files/juce_FileFilter.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/files/juce_FileFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/files/juce_FileFilter.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/files/juce_FileInputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/files/juce_FileInputStream.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/files/juce_FileInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/files/juce_FileInputStream.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/files/juce_FileOutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/files/juce_FileOutputStream.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/files/juce_FileSearchPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/files/juce_FileSearchPath.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/files/juce_FileSearchPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/files/juce_FileSearchPath.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/files/juce_MemoryMappedFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/files/juce_MemoryMappedFile.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/files/juce_TemporaryFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/files/juce_TemporaryFile.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/files/juce_TemporaryFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/files/juce_TemporaryFile.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/javascript/juce_JSON.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/javascript/juce_JSON.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/javascript/juce_JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/javascript/juce_JSON.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/javascript/juce_Javascript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/javascript/juce_Javascript.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/javascript/juce_Javascript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/javascript/juce_Javascript.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/juce_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/juce_core.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/juce_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/juce_core.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/juce_core.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/juce_core.mm -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/logging/juce_FileLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/logging/juce_FileLogger.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/logging/juce_FileLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/logging/juce_FileLogger.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/logging/juce_Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/logging/juce_Logger.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/logging/juce_Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/logging/juce_Logger.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/maths/juce_BigInteger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/maths/juce_BigInteger.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/maths/juce_BigInteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/maths/juce_BigInteger.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/maths/juce_Expression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/maths/juce_Expression.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/maths/juce_Expression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/maths/juce_Expression.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/maths/juce_MathsFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/maths/juce_MathsFunctions.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/maths/juce_NormalisableRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/maths/juce_NormalisableRange.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/maths/juce_Random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/maths/juce_Random.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/maths/juce_Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/maths/juce_Random.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/maths/juce_Range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/maths/juce_Range.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/memory/juce_AllocationHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/memory/juce_AllocationHooks.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/memory/juce_Atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/memory/juce_Atomic.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/memory/juce_ByteOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/memory/juce_ByteOrder.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/memory/juce_HeapBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/memory/juce_HeapBlock.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/memory/juce_Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/memory/juce_Memory.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/memory/juce_MemoryBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/memory/juce_MemoryBlock.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/memory/juce_MemoryBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/memory/juce_MemoryBlock.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/memory/juce_Reservoir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/memory/juce_Reservoir.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/memory/juce_ScopedPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/memory/juce_ScopedPointer.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/memory/juce_Singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/memory/juce_Singleton.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/memory/juce_WeakReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/memory/juce_WeakReference.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/misc/juce_ConsoleApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/misc/juce_ConsoleApplication.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/misc/juce_Functional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/misc/juce_Functional.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/misc/juce_Result.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/misc/juce_Result.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/misc/juce_Result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/misc/juce_Result.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/misc/juce_RuntimePermissions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/misc/juce_RuntimePermissions.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/misc/juce_Uuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/misc/juce_Uuid.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/misc/juce_Uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/misc/juce_Uuid.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/misc/juce_WindowsRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/misc/juce_WindowsRegistry.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/native/java/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/native/java/README.txt -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/native/juce_android_Files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/native/juce_android_Files.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/native/juce_android_Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/native/juce_android_Misc.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/native/juce_curl_Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/native/juce_curl_Network.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/native/juce_intel_SharedCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/native/juce_intel_SharedCode.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/native/juce_linux_Files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/native/juce_linux_Files.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/native/juce_linux_Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/native/juce_linux_Network.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/native/juce_linux_Threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/native/juce_linux_Threads.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/native/juce_mac_CFHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/native/juce_mac_CFHelpers.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/native/juce_mac_Files.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/native/juce_mac_Files.mm -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/native/juce_mac_Network.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/native/juce_mac_Network.mm -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/native/juce_mac_ObjCHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/native/juce_mac_ObjCHelpers.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/native/juce_mac_Strings.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/native/juce_mac_Strings.mm -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/native/juce_mac_SystemStats.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/native/juce_mac_SystemStats.mm -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/native/juce_mac_Threads.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/native/juce_mac_Threads.mm -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/native/juce_posix_IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/native/juce_posix_IPAddress.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/native/juce_posix_SharedCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/native/juce_posix_SharedCode.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/native/juce_win32_Files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/native/juce_win32_Files.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/native/juce_win32_Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/native/juce_win32_Network.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/native/juce_win32_Registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/native/juce_win32_Registry.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/native/juce_win32_Threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/native/juce_win32_Threads.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/network/juce_IPAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/network/juce_IPAddress.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/network/juce_IPAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/network/juce_IPAddress.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/network/juce_MACAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/network/juce_MACAddress.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/network/juce_MACAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/network/juce_MACAddress.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/network/juce_NamedPipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/network/juce_NamedPipe.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/network/juce_NamedPipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/network/juce_NamedPipe.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/network/juce_Socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/network/juce_Socket.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/network/juce_Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/network/juce_Socket.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/network/juce_URL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/network/juce_URL.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/network/juce_URL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/network/juce_URL.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/network/juce_WebInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/network/juce_WebInputStream.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/streams/juce_FileInputSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/streams/juce_FileInputSource.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/streams/juce_InputSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/streams/juce_InputSource.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/streams/juce_InputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/streams/juce_InputStream.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/streams/juce_InputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/streams/juce_InputStream.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/streams/juce_OutputStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/streams/juce_OutputStream.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/streams/juce_OutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/streams/juce_OutputStream.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/streams/juce_SubregionStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/streams/juce_SubregionStream.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/streams/juce_URLInputSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/streams/juce_URLInputSource.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/system/juce_CompilerSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/system/juce_CompilerSupport.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/system/juce_CompilerWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/system/juce_CompilerWarnings.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/system/juce_PlatformDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/system/juce_PlatformDefs.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/system/juce_StandardHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/system/juce_StandardHeader.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/system/juce_SystemStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/system/juce_SystemStats.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/system/juce_SystemStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/system/juce_SystemStats.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/system/juce_TargetPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/system/juce_TargetPlatform.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/text/juce_Base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/text/juce_Base64.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/text/juce_Base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/text/juce_Base64.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/text/juce_CharPointer_ASCII.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/text/juce_CharPointer_ASCII.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/text/juce_CharPointer_UTF16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/text/juce_CharPointer_UTF16.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/text/juce_CharPointer_UTF32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/text/juce_CharPointer_UTF32.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/text/juce_CharPointer_UTF8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/text/juce_CharPointer_UTF8.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/text/juce_CharacterFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/text/juce_CharacterFunctions.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/text/juce_Identifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/text/juce_Identifier.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/text/juce_Identifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/text/juce_Identifier.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/text/juce_LocalisedStrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/text/juce_LocalisedStrings.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/text/juce_LocalisedStrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/text/juce_LocalisedStrings.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/text/juce_NewLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/text/juce_NewLine.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/text/juce_String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/text/juce_String.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/text/juce_String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/text/juce_String.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/text/juce_StringArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/text/juce_StringArray.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/text/juce_StringArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/text/juce_StringArray.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/text/juce_StringPairArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/text/juce_StringPairArray.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/text/juce_StringPairArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/text/juce_StringPairArray.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/text/juce_StringPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/text/juce_StringPool.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/text/juce_StringPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/text/juce_StringPool.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/text/juce_StringRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/text/juce_StringRef.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/text/juce_TextDiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/text/juce_TextDiff.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/text/juce_TextDiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/text/juce_TextDiff.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/threads/juce_ChildProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/threads/juce_ChildProcess.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/threads/juce_ChildProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/threads/juce_ChildProcess.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/threads/juce_CriticalSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/threads/juce_CriticalSection.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/threads/juce_DynamicLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/threads/juce_DynamicLibrary.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/threads/juce_Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/threads/juce_Process.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/threads/juce_ReadWriteLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/threads/juce_ReadWriteLock.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/threads/juce_ReadWriteLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/threads/juce_ReadWriteLock.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/threads/juce_ScopedLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/threads/juce_ScopedLock.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/threads/juce_ScopedReadLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/threads/juce_ScopedReadLock.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/threads/juce_SpinLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/threads/juce_SpinLock.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/threads/juce_Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/threads/juce_Thread.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/threads/juce_Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/threads/juce_Thread.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/threads/juce_ThreadPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/threads/juce_ThreadPool.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/threads/juce_ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/threads/juce_ThreadPool.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/threads/juce_WaitableEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/threads/juce_WaitableEvent.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/time/juce_RelativeTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/time/juce_RelativeTime.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/time/juce_RelativeTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/time/juce_RelativeTime.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/time/juce_Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/time/juce_Time.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/time/juce_Time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/time/juce_Time.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/unit_tests/juce_UnitTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/unit_tests/juce_UnitTest.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/unit_tests/juce_UnitTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/unit_tests/juce_UnitTest.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/xml/juce_XmlDocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/xml/juce_XmlDocument.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/xml/juce_XmlDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/xml/juce_XmlDocument.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/xml/juce_XmlElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/xml/juce_XmlElement.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/xml/juce_XmlElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/xml/juce_XmlElement.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/zip/juce_ZipFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/zip/juce_ZipFile.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/zip/juce_ZipFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/zip/juce_ZipFile.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/zip/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/zip/zlib/README -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/zip/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/zip/zlib/adler32.c -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/zip/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/zip/zlib/compress.c -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/zip/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/zip/zlib/crc32.c -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/zip/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/zip/zlib/crc32.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/zip/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/zip/zlib/deflate.c -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/zip/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/zip/zlib/deflate.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/zip/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/zip/zlib/infback.c -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/zip/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/zip/zlib/inffast.c -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/zip/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/zip/zlib/inffast.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/zip/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/zip/zlib/inffixed.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/zip/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/zip/zlib/inflate.c -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/zip/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/zip/zlib/inflate.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/zip/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/zip/zlib/inftrees.c -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/zip/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/zip/zlib/inftrees.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/zip/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/zip/zlib/trees.c -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/zip/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/zip/zlib/trees.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/zip/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/zip/zlib/uncompr.c -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/zip/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/zip/zlib/zconf.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/zip/zlib/zconf.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/zip/zlib/zconf.in.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/zip/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/zip/zlib/zlib.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/zip/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/zip/zlib/zutil.c -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_core/zip/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_core/zip/zlib/zutil.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_cryptography/hashing/juce_MD5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_cryptography/hashing/juce_MD5.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_cryptography/hashing/juce_MD5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_cryptography/hashing/juce_MD5.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_cryptography/juce_cryptography.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_cryptography/juce_cryptography.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_cryptography/juce_cryptography.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_cryptography/juce_cryptography.mm -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/containers/juce_AudioBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/containers/juce_AudioBlock.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/frequency/juce_Convolution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/frequency/juce_Convolution.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/frequency/juce_FFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/frequency/juce_FFT.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/frequency/juce_FFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/frequency/juce_FFT.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/frequency/juce_FFT_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/frequency/juce_FFT_test.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/frequency/juce_Windowing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/frequency/juce_Windowing.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/frequency/juce_Windowing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/frequency/juce_Windowing.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/juce_dsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/juce_dsp.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/juce_dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/juce_dsp.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/juce_dsp.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/juce_dsp.mm -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/maths/juce_LogRampedValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/maths/juce_LogRampedValue.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/maths/juce_LookupTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/maths/juce_LookupTable.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/maths/juce_LookupTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/maths/juce_LookupTable.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/maths/juce_Matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/maths/juce_Matrix.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/maths/juce_Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/maths/juce_Matrix.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/maths/juce_Matrix_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/maths/juce_Matrix_test.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/maths/juce_Phase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/maths/juce_Phase.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/maths/juce_Polynomial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/maths/juce_Polynomial.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/maths/juce_SpecialFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/maths/juce_SpecialFunctions.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/processors/juce_DelayLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/processors/juce_DelayLine.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/processors/juce_DelayLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/processors/juce_DelayLine.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/processors/juce_DryWetMixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/processors/juce_DryWetMixer.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/processors/juce_FIRFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/processors/juce_FIRFilter.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/processors/juce_FIRFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/processors/juce_FIRFilter.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/processors/juce_IIRFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/processors/juce_IIRFilter.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/processors/juce_IIRFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/processors/juce_IIRFilter.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/processors/juce_Panner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/processors/juce_Panner.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/processors/juce_Panner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/processors/juce_Panner.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/widgets/juce_Bias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/widgets/juce_Bias.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/widgets/juce_Chorus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/widgets/juce_Chorus.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/widgets/juce_Chorus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/widgets/juce_Chorus.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/widgets/juce_Compressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/widgets/juce_Compressor.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/widgets/juce_Compressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/widgets/juce_Compressor.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/widgets/juce_Gain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/widgets/juce_Gain.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/widgets/juce_LadderFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/widgets/juce_LadderFilter.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/widgets/juce_LadderFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/widgets/juce_LadderFilter.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/widgets/juce_Limiter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/widgets/juce_Limiter.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/widgets/juce_Limiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/widgets/juce_Limiter.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/widgets/juce_NoiseGate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/widgets/juce_NoiseGate.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/widgets/juce_NoiseGate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/widgets/juce_NoiseGate.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/widgets/juce_Oscillator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/widgets/juce_Oscillator.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/widgets/juce_Phaser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/widgets/juce_Phaser.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/widgets/juce_Phaser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/widgets/juce_Phaser.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/widgets/juce_Reverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/widgets/juce_Reverb.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_dsp/widgets/juce_WaveShaper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_dsp/widgets/juce_WaveShaper.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_events/juce_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_events/juce_events.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_events/juce_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_events/juce_events.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_events/juce_events.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_events/juce_events.mm -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_events/messages/juce_Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_events/messages/juce_Message.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_events/timers/juce_MultiTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_events/timers/juce_MultiTimer.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_events/timers/juce_MultiTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_events/timers/juce_MultiTimer.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_events/timers/juce_Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_events/timers/juce_Timer.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_events/timers/juce_Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_events/timers/juce_Timer.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_graphics/colour/juce_Colour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_graphics/colour/juce_Colour.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_graphics/colour/juce_Colour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_graphics/colour/juce_Colour.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_graphics/colour/juce_Colours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_graphics/colour/juce_Colours.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_graphics/colour/juce_Colours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_graphics/colour/juce_Colours.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_graphics/colour/juce_FillType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_graphics/colour/juce_FillType.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_graphics/colour/juce_FillType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_graphics/colour/juce_FillType.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_graphics/fonts/juce_Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_graphics/fonts/juce_Font.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_graphics/fonts/juce_Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_graphics/fonts/juce_Font.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_graphics/fonts/juce_TextLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_graphics/fonts/juce_TextLayout.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_graphics/fonts/juce_Typeface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_graphics/fonts/juce_Typeface.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_graphics/fonts/juce_Typeface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_graphics/fonts/juce_Typeface.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_graphics/geometry/juce_Line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_graphics/geometry/juce_Line.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_graphics/geometry/juce_Path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_graphics/geometry/juce_Path.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_graphics/geometry/juce_Path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_graphics/geometry/juce_Path.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_graphics/geometry/juce_Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_graphics/geometry/juce_Point.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_graphics/images/juce_Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_graphics/images/juce_Image.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_graphics/images/juce_Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_graphics/images/juce_Image.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_graphics/images/juce_ImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_graphics/images/juce_ImageCache.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_graphics/juce_graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_graphics/juce_graphics.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_graphics/juce_graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_graphics/juce_graphics.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_graphics/juce_graphics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_graphics/juce_graphics.mm -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_graphics/native/juce_mac_Fonts.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_graphics/native/juce_mac_Fonts.mm -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_gui_basics/buttons/juce_Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_gui_basics/buttons/juce_Button.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_gui_basics/desktop/juce_Desktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_gui_basics/desktop/juce_Desktop.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_gui_basics/juce_gui_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_gui_basics/juce_gui_basics.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_gui_basics/juce_gui_basics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_gui_basics/juce_gui_basics.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_gui_basics/juce_gui_basics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_gui_basics/juce_gui_basics.mm -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_gui_basics/layout/juce_FlexBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_gui_basics/layout/juce_FlexBox.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_gui_basics/layout/juce_FlexItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_gui_basics/layout/juce_FlexItem.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_gui_basics/layout/juce_Grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_gui_basics/layout/juce_Grid.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_gui_basics/layout/juce_Grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_gui_basics/layout/juce_Grid.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_gui_basics/layout/juce_GridItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_gui_basics/layout/juce_GridItem.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_gui_basics/layout/juce_Viewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_gui_basics/layout/juce_Viewport.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_gui_basics/menus/juce_PopupMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_gui_basics/menus/juce_PopupMenu.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_gui_basics/widgets/juce_Label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_gui_basics/widgets/juce_Label.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_gui_basics/widgets/juce_Label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_gui_basics/widgets/juce_Label.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_gui_basics/widgets/juce_ListBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_gui_basics/widgets/juce_ListBox.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_gui_basics/widgets/juce_Slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_gui_basics/widgets/juce_Slider.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_gui_basics/widgets/juce_Toolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_gui_basics/widgets/juce_Toolbar.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_gui_extra/juce_gui_extra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_gui_extra/juce_gui_extra.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_gui_extra/juce_gui_extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_gui_extra/juce_gui_extra.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_gui_extra/juce_gui_extra.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_gui_extra/juce_gui_extra.mm -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_gui_extra/misc/juce_AppleRemote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_gui_extra/misc/juce_AppleRemote.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_opengl/geometry/juce_Matrix3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_opengl/geometry/juce_Matrix3D.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_opengl/geometry/juce_Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_opengl/geometry/juce_Quaternion.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_opengl/geometry/juce_Vector3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_opengl/geometry/juce_Vector3D.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_opengl/juce_opengl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_opengl/juce_opengl.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_opengl/juce_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_opengl/juce_opengl.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_opengl/juce_opengl.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_opengl/juce_opengl.mm -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_opengl/native/juce_OpenGL_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_opengl/native/juce_OpenGL_ios.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_opengl/native/juce_OpenGL_osx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_opengl/native/juce_OpenGL_osx.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_opengl/native/juce_OpenGL_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_opengl/native/juce_OpenGL_win32.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_opengl/opengl/juce_OpenGLImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_opengl/opengl/juce_OpenGLImage.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_opengl/opengl/juce_gl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_opengl/opengl/juce_gl.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_opengl/opengl/juce_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_opengl/opengl/juce_gl.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_opengl/opengl/juce_gles2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_opengl/opengl/juce_gles2.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_opengl/opengl/juce_gles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_opengl/opengl/juce_gles2.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_opengl/opengl/juce_khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_opengl/opengl/juce_khrplatform.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_opengl/opengl/juce_wgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_opengl/opengl/juce_wgl.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_osc/juce_osc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_osc/juce_osc.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_osc/juce_osc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_osc/juce_osc.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_osc/osc/juce_OSCAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_osc/osc/juce_OSCAddress.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_osc/osc/juce_OSCAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_osc/osc/juce_OSCAddress.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_osc/osc/juce_OSCArgument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_osc/osc/juce_OSCArgument.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_osc/osc/juce_OSCArgument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_osc/osc/juce_OSCArgument.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_osc/osc/juce_OSCBundle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_osc/osc/juce_OSCBundle.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_osc/osc/juce_OSCBundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_osc/osc/juce_OSCBundle.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_osc/osc/juce_OSCMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_osc/osc/juce_OSCMessage.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_osc/osc/juce_OSCMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_osc/osc/juce_OSCMessage.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_osc/osc/juce_OSCReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_osc/osc/juce_OSCReceiver.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_osc/osc/juce_OSCReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_osc/osc/juce_OSCReceiver.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_osc/osc/juce_OSCSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_osc/osc/juce_OSCSender.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_osc/osc/juce_OSCSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_osc/osc/juce_OSCSender.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_osc/osc/juce_OSCTimeTag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_osc/osc/juce_OSCTimeTag.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_osc/osc/juce_OSCTimeTag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_osc/osc/juce_OSCTimeTag.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_osc/osc/juce_OSCTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_osc/osc/juce_OSCTypes.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_osc/osc/juce_OSCTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_osc/osc/juce_OSCTypes.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_video/capture/juce_CameraDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_video/capture/juce_CameraDevice.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_video/juce_video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_video/juce_video.cpp -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_video/juce_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_video/juce_video.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_video/juce_video.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_video/juce_video.mm -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_video/native/juce_android_Video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_video/native/juce_android_Video.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_video/native/juce_mac_Video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_video/native/juce_mac_Video.h -------------------------------------------------------------------------------- /Libraries/JUCE/modules/juce_video/native/juce_win32_Video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/JUCE/modules/juce_video/native/juce_win32_Video.h -------------------------------------------------------------------------------- /Libraries/nanovg/fontstash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/nanovg/fontstash.h -------------------------------------------------------------------------------- /Libraries/nanovg/mnvg_bitcode/ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/nanovg/mnvg_bitcode/ios.h -------------------------------------------------------------------------------- /Libraries/nanovg/mnvg_bitcode/macos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/nanovg/mnvg_bitcode/macos.h -------------------------------------------------------------------------------- /Libraries/nanovg/mnvg_bitcode/simulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/nanovg/mnvg_bitcode/simulator.h -------------------------------------------------------------------------------- /Libraries/nanovg/mnvg_bitcode/tvos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/nanovg/mnvg_bitcode/tvos.h -------------------------------------------------------------------------------- /Libraries/nanovg/nanovg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/nanovg/nanovg.c -------------------------------------------------------------------------------- /Libraries/nanovg/nanovg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/nanovg/nanovg.h -------------------------------------------------------------------------------- /Libraries/nanovg/nanovg_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/nanovg/nanovg_gl.h -------------------------------------------------------------------------------- /Libraries/nanovg/nanovg_gl_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/nanovg/nanovg_gl_utils.h -------------------------------------------------------------------------------- /Libraries/nanovg/nanovg_mtl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/nanovg/nanovg_mtl.h -------------------------------------------------------------------------------- /Libraries/nanovg/nanovg_mtl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/nanovg/nanovg_mtl.m -------------------------------------------------------------------------------- /Libraries/nanovg/nanovg_mtl_shaders.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/nanovg/nanovg_mtl_shaders.metal -------------------------------------------------------------------------------- /Libraries/nanovg/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/nanovg/stb_image.h -------------------------------------------------------------------------------- /Libraries/nanovg/stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Libraries/nanovg/stb_truetype.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Lucida Grande-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Resources/Lucida Grande-Regular.ttf -------------------------------------------------------------------------------- /Resources/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Resources/Roboto-Bold.ttf -------------------------------------------------------------------------------- /Resources/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Resources/Roboto-Light.ttf -------------------------------------------------------------------------------- /Resources/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Resources/Roboto-Regular.ttf -------------------------------------------------------------------------------- /Resources/Verdana-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Resources/Verdana-Regular.ttf -------------------------------------------------------------------------------- /Source/NanoVGComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Source/NanoVGComponent.cpp -------------------------------------------------------------------------------- /Source/NanoVGComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Source/NanoVGComponent.h -------------------------------------------------------------------------------- /Source/NanoVGGraphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Source/NanoVGGraphics.cpp -------------------------------------------------------------------------------- /Source/NanoVGGraphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Source/NanoVGGraphics.h -------------------------------------------------------------------------------- /Source/example/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Source/example/Main.cpp -------------------------------------------------------------------------------- /Source/example/MainComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Source/example/MainComponent.cpp -------------------------------------------------------------------------------- /Source/example/MainComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothyschoen/juce_nanovg/HEAD/Source/example/MainComponent.h --------------------------------------------------------------------------------