├── .editorconfig ├── .gitignore ├── .vscode ├── c_cpp_properties.json ├── launch.json ├── settings.json └── tasks.json ├── LICENSE ├── README.md ├── RetroPlug.RPP ├── RetroPlug.code-workspace ├── RetroPlug.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── appveyor.yml ├── ci └── dep.7z.enc ├── config.lua ├── config ├── RetroPlug-ios.xcconfig ├── RetroPlug-mac.xcconfig ├── RetroPlug-web.mk ├── config.h └── version.h ├── configure-mac.sh ├── configure.bat ├── deploy.bat ├── installer ├── RetroPlug-installer-bg.png ├── RetroPlug.iss ├── RetroPlug.pkgproj ├── changelog.txt ├── intro.rtf ├── known-issues.txt ├── license.rtf ├── readme-osx.rtf └── readme-win.rtf ├── manual ├── RetroPlug manual.pdf └── RetroPlug manual.tex ├── premake5.lua ├── projects ├── RetroPlug-iOS.entitlements ├── RetroPlug-iOS.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ ├── iOS-APP.xcscheme │ │ ├── iOS-AUv3.xcscheme │ │ └── iOS-Shared.xcscheme ├── RetroPlug-macOS.entitlements ├── RetroPlug-macOS.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── AAX.xcscheme │ │ ├── APP.xcscheme │ │ ├── AU.xcscheme │ │ ├── AUv3.xcscheme │ │ ├── All macOS.xcscheme │ │ ├── VST2.xcscheme │ │ ├── VST3 (Distributed).xcscheme │ │ ├── VST3 Controller Library.xcscheme │ │ └── VST3.xcscheme ├── RetroPlug-wam-controller.mk └── RetroPlug-wam-processor.mk ├── resources ├── IPlugViewController.xib ├── Images.xcassets │ ├── Contents.json │ └── RetroPlugiOSAppIcon.appiconset │ │ ├── Contents.json │ │ ├── RetroPlug@1x.png │ │ ├── RetroPlug@2x.png │ │ └── RetroPlug@2xPro.png ├── RetroPlug-AAX-Info.plist ├── RetroPlug-AU-Info.plist ├── RetroPlug-Pages.xml ├── RetroPlug-VST2-Info.plist ├── RetroPlug-VST3-Info.plist ├── RetroPlug-iOS-AUv3-Info.plist ├── RetroPlug-iOS-Info.plist ├── RetroPlug-iOS-MainInterface.storyboard ├── RetroPlug-iOS-launchScreen.storyboard ├── RetroPlug-iOS.storyboard ├── RetroPlug-macOS-AUv3-Info.plist ├── RetroPlug-macOS-Info.plist ├── RetroPlug-macOS-MainMenu.xib ├── RetroPlug.icns ├── RetroPlug.ico ├── config.lua ├── fonts │ ├── Early-GameBoy.ttf │ └── Roboto-Regular.ttf ├── main.aps ├── main.rc ├── main.rc_mac_dlg ├── main.rc_mac_menu └── resource.h ├── scripts ├── configure.lua ├── gainput.lua ├── liblsdj.lua ├── lua.lua ├── minizip.lua ├── sameboy.lua ├── simplefilewatcher.lua └── util.lua ├── src ├── compiler.config.lua ├── compiler │ ├── blockingconcurrentqueue.h │ ├── concurrentqueue.h │ ├── fs.h │ ├── lightweightsemaphore.h │ ├── logger.h │ ├── main.cpp │ ├── templates.h │ ├── threadpool.h │ ├── util.h │ ├── xxh3.h │ ├── xxhash.c │ └── xxhash.h ├── config │ └── 0.3 │ │ ├── config.lua │ │ └── input │ │ ├── aquellex.lua │ │ ├── bryface.lua │ │ ├── default.lua │ │ └── defmech.lua ├── plugin │ ├── audio │ │ ├── RetroPlugInstrument.cpp │ │ └── RetroPlugInstrument.h │ ├── controller │ │ ├── RetroPlugController.cpp │ │ └── RetroPlugController.h │ └── view │ │ ├── Menu.cpp │ │ ├── Menu.h │ │ ├── RetroPlugView.cpp │ │ ├── RetroPlugView.h │ │ ├── SystemView.cpp │ │ └── SystemView.h ├── plugs │ ├── SameBoyPlug.cpp │ └── SameBoyPlug.h └── retroplug │ ├── Buttons.h │ ├── Constants.h │ ├── Messages.h │ ├── RetroPlugWrap.cpp │ ├── Types.h │ ├── audio │ ├── AudioController.cpp │ └── AudioController.h │ ├── luawrapper │ ├── AudioLuaContext.cpp │ ├── AudioLuaContext.h │ ├── ChangeListener.cpp │ ├── ChangeListener.h │ ├── Chrono.cpp │ ├── Common.cpp │ ├── ConfigScriptWriter.h │ ├── LibLsdj.cpp │ ├── LuaHelpers.cpp │ ├── LuaHelpers.h │ ├── RetroPlug.cpp │ ├── UiLuaContext.cpp │ ├── UiLuaContext.h │ ├── Wrappers.h │ └── Zipp.cpp │ ├── messaging.h │ ├── micromsg │ ├── allocator │ │ ├── allocator.h │ │ ├── atomicrefcount.h │ │ ├── controlblock.h │ │ ├── sharedptr.h │ │ ├── types.h │ │ └── uniqueptr.h │ ├── atomicops.h │ ├── caller.h │ ├── concurrentqueue.h │ ├── envelope.h │ ├── error.h │ ├── fixedstack.h │ ├── fixedstring.h │ ├── lookups.h │ ├── magic_enum.hpp │ ├── mmassert.h │ ├── node.h │ ├── nodemanager.h │ ├── platform.h │ ├── readerwriterqueue.h │ ├── request.h │ ├── types.h │ ├── variant_function.h │ └── variantfunctionfactory.h │ ├── micromsg2 │ ├── api.h │ ├── api2.h │ └── api3.h │ ├── model │ ├── AudioContextProxy.h │ ├── ButtonStream.h │ ├── FileManager.cpp │ ├── FileManager.h │ ├── ProcessingContext.cpp │ ├── ProcessingContext.h │ ├── Project.h │ └── RetroPlug.h │ ├── platform │ ├── Error.h │ ├── FileDialog.cpp │ ├── FileDialog.h │ ├── Keys.h │ ├── Logger.h │ ├── Menu.cpp │ ├── Menu.h │ ├── Os.h │ ├── Path.cpp │ ├── Path.h │ ├── Path.mm │ ├── Platform.h │ ├── Shell.cpp │ ├── Shell.h │ ├── Shell.mm │ ├── ViewWrapper.cpp │ └── ViewWrapper.h │ ├── processing │ └── ProcessingContext.h │ ├── scripts │ ├── audio │ │ ├── Controller.lua │ │ ├── PpqGenerator.lua │ │ ├── Project.lua │ │ ├── System.lua │ │ ├── component.lua │ │ ├── components │ │ │ ├── LsdjArduinoboy.lua │ │ │ └── MidiPassthrough.lua │ │ └── main.lua │ ├── common │ │ ├── Action.lua │ │ ├── ComponentManager.lua │ │ ├── ConfigLoader.lua │ │ ├── Error.lua │ │ ├── InputConfigParser.lua │ │ ├── Menu.lua │ │ ├── MenuHelper.lua │ │ ├── Print.lua │ │ ├── SemVer.lua │ │ ├── ansicolors.lua │ │ ├── class.lua │ │ ├── const.lua │ │ ├── constants.lua │ │ ├── deepcopy.lua │ │ ├── dkjson.lua │ │ ├── inspect.lua │ │ ├── liblsdj │ │ │ ├── kit.lua │ │ │ ├── liblsdj.lua │ │ │ ├── rom.lua │ │ │ └── sav.lua │ │ ├── log.lua │ │ ├── midi.lua │ │ ├── pathutil.lua │ │ ├── schema.lua │ │ ├── serializer.lua │ │ ├── serpent.lua │ │ ├── timer.lua │ │ ├── util.lua │ │ ├── util │ │ │ ├── component.lua │ │ │ ├── enum.lua │ │ │ ├── property.lua │ │ │ └── semver.lua │ │ └── vscode-debuggee.lua │ └── ui │ │ ├── Globals.lua │ │ ├── KeyFilter.lua │ │ ├── MainMenu.lua │ │ ├── Model.lua │ │ ├── Project.lua │ │ ├── System.lua │ │ ├── View.lua │ │ ├── component.lua │ │ ├── components │ │ ├── Lsdj.lua │ │ ├── RetroPlug.lua │ │ ├── RomFileWatcher.lua │ │ └── lsdj │ │ │ └── actions.lua │ │ ├── dialog.lua │ │ ├── filters.lua │ │ ├── fs.lua │ │ ├── json.lua │ │ ├── lsdj │ │ ├── autoplay.lua │ │ ├── keyboard.lua │ │ ├── keyboardshortcuts.lua │ │ ├── lsdjfull.lua │ │ ├── midimap.lua │ │ ├── midisync.lua │ │ └── midisyncarduinoboy.lua │ │ ├── main.lua │ │ ├── project │ │ ├── deserialize.lua │ │ ├── legacy.lua │ │ ├── projectschema.lua │ │ ├── serialize.lua │ │ └── version.lua │ │ └── util │ │ ├── buttonstring.lua │ │ ├── file.lua │ │ ├── input.lua │ │ ├── menu.lua │ │ └── project.lua │ └── util │ ├── DataBuffer.h │ ├── File.cpp │ ├── File.h │ ├── Paths.h │ ├── RomWatcher.h │ ├── SampleConverter.h │ ├── base64.cpp │ ├── base64.h │ ├── base64dec.h │ ├── base64enc.h │ ├── crc32.cpp │ ├── crc32.h │ ├── cxxtimer.hpp │ ├── fs.h │ ├── mathutil.h │ ├── xstring.h │ └── zipp.h ├── thirdparty ├── SameBoy-old │ ├── .gitattributes │ ├── .github │ │ ├── FUNDING.yml │ │ ├── actions │ │ │ ├── LICENSE │ │ │ ├── cgb-acid2.gbc │ │ │ ├── cgb_sound.gb │ │ │ ├── dmg-acid2.gb │ │ │ ├── dmg_sound-2.gb │ │ │ ├── install_deps.sh │ │ │ ├── oam_bug-2.gb │ │ │ └── sanity_tests.sh │ │ └── workflows │ │ │ └── sanity.yml │ ├── .gitignore │ ├── BESS.md │ ├── BootROMs │ │ ├── SameBoyLogo.png │ │ ├── agb_boot.asm │ │ ├── cgb0_boot.asm │ │ ├── cgb_boot.asm │ │ ├── cgb_boot_fast.asm │ │ ├── dmg_boot.asm │ │ ├── hardware.inc │ │ ├── mgb_boot.asm │ │ ├── pb12.c │ │ ├── sgb2_boot.asm │ │ └── sgb_boot.asm │ ├── CHANGES.md │ ├── CONTRIBUTING.md │ ├── Cocoa │ │ ├── AppIcon.icns │ │ ├── AudioRecordingAccessoryView.xib │ │ ├── BigSurToolbar.h │ │ ├── CPU.png │ │ ├── CPU@2x.png │ │ ├── CPU~solid.png │ │ ├── CPU~solid@2x.png │ │ ├── CPU~solid~dark.png │ │ ├── CPU~solid~dark@2x.png │ │ ├── Cartridge.icns │ │ ├── ColorCartridge.icns │ │ ├── Display.png │ │ ├── Display@2x.png │ │ ├── Display~solid.png │ │ ├── Display~solid@2x.png │ │ ├── Display~solid~dark.png │ │ ├── Display~solid~dark@2x.png │ │ ├── Document.h │ │ ├── Document.m │ │ ├── Document.xib │ │ ├── GBApp.h │ │ ├── GBApp.m │ │ ├── GBAudioClient.h │ │ ├── GBAudioClient.m │ │ ├── GBBorderView.h │ │ ├── GBBorderView.m │ │ ├── GBButtons.h │ │ ├── GBButtons.m │ │ ├── GBCheatTextFieldCell.h │ │ ├── GBCheatTextFieldCell.m │ │ ├── GBCheatWindowController.h │ │ ├── GBCheatWindowController.m │ │ ├── GBCompleteByteSlice.h │ │ ├── GBCompleteByteSlice.m │ │ ├── GBGLShader.h │ │ ├── GBGLShader.m │ │ ├── GBHueSliderCell.h │ │ ├── GBHueSliderCell.m │ │ ├── GBImageView.h │ │ ├── GBImageView.m │ │ ├── GBMemoryByteArray.h │ │ ├── GBMemoryByteArray.m │ │ ├── GBOSDView.h │ │ ├── GBOSDView.m │ │ ├── GBObjectView.h │ │ ├── GBObjectView.m │ │ ├── GBObjectViewItem.xib │ │ ├── GBOpenGLView.h │ │ ├── GBOpenGLView.m │ │ ├── GBOptionalVisualEffectView.h │ │ ├── GBOptionalVisualEffectView.m │ │ ├── GBPaletteEditorController.h │ │ ├── GBPaletteEditorController.m │ │ ├── GBPaletteView.h │ │ ├── GBPaletteView.m │ │ ├── GBPaletteViewRow.xib │ │ ├── GBPreferencesWindow.h │ │ ├── GBPreferencesWindow.m │ │ ├── GBS.xib │ │ ├── GBS11.xib │ │ ├── GBSplitView.h │ │ ├── GBSplitView.m │ │ ├── GBTerminalTextFieldCell.h │ │ ├── GBTerminalTextFieldCell.m │ │ ├── GBView.h │ │ ├── GBView.m │ │ ├── GBViewGL.h │ │ ├── GBViewGL.m │ │ ├── GBViewMetal.h │ │ ├── GBViewMetal.m │ │ ├── GBVisualizerView.h │ │ ├── GBVisualizerView.m │ │ ├── GBWarningPopover.h │ │ ├── GBWarningPopover.m │ │ ├── Icon.png │ │ ├── Icon@2x.png │ │ ├── Info.plist │ │ ├── Joypad.png │ │ ├── Joypad@2x.png │ │ ├── Joypad~dark.png │ │ ├── Joypad~dark@2x.png │ │ ├── Joypad~solid.png │ │ ├── Joypad~solid@2x.png │ │ ├── KeyboardShortcutPrivateAPIs.h │ │ ├── License.html │ │ ├── MainMenu.xib │ │ ├── NSImageNamedDarkSupport.m │ │ ├── NSObject+MavericksCompat.m │ │ ├── NSString+StringForKey.h │ │ ├── NSString+StringForKey.m │ │ ├── Next.png │ │ ├── Next@2x.png │ │ ├── Pause.png │ │ ├── Pause@2x.png │ │ ├── PkgInfo │ │ ├── Play.png │ │ ├── Play@2x.png │ │ ├── PopoverView.xib │ │ ├── Preferences.xib │ │ ├── Previous.png │ │ ├── Previous@2x.png │ │ ├── Rewind.png │ │ ├── Rewind@2x.png │ │ ├── Speaker.png │ │ ├── Speaker@2x.png │ │ ├── Speaker~dark.png │ │ ├── Speaker~dark@2x.png │ │ ├── Speaker~solid.png │ │ ├── Speaker~solid@2x.png │ │ ├── UpdateWindow.xib │ │ ├── Updates.png │ │ ├── Updates@2x.png │ │ ├── Updates~solid.png │ │ ├── Updates~solid@2x.png │ │ ├── Updates~solid~dark.png │ │ ├── Updates~solid~dark@2x.png │ │ └── main.m │ ├── Core │ │ ├── apu.c │ │ ├── apu.h │ │ ├── camera.c │ │ ├── camera.h │ │ ├── cheats.c │ │ ├── cheats.h │ │ ├── debugger.c │ │ ├── debugger.h │ │ ├── defs.h │ │ ├── display.c │ │ ├── display.h │ │ ├── gb.c │ │ ├── gb.h │ │ ├── graphics │ │ │ ├── agb_border.inc │ │ │ ├── cgb_border.inc │ │ │ ├── dmg_border.inc │ │ │ ├── mgb_border.inc │ │ │ ├── sgb_animation_logo.inc │ │ │ └── sgb_border.inc │ │ ├── joypad.c │ │ ├── joypad.h │ │ ├── mbc.c │ │ ├── mbc.h │ │ ├── memory.c │ │ ├── memory.h │ │ ├── printer.c │ │ ├── printer.h │ │ ├── random.c │ │ ├── random.h │ │ ├── rewind.c │ │ ├── rewind.h │ │ ├── rumble.c │ │ ├── rumble.h │ │ ├── save_state.c │ │ ├── save_state.h │ │ ├── sgb.c │ │ ├── sgb.h │ │ ├── sm83_cpu.c │ │ ├── sm83_cpu.h │ │ ├── sm83_disassembler.c │ │ ├── symbol_hash.c │ │ ├── symbol_hash.h │ │ ├── timing.c │ │ ├── timing.h │ │ ├── workboy.c │ │ └── workboy.h │ ├── FreeDesktop │ │ ├── AppIcon │ │ │ ├── 128x128.png │ │ │ ├── 16x16.png │ │ │ ├── 256x256.png │ │ │ ├── 32x32.png │ │ │ ├── 512x512.png │ │ │ └── 64x64.png │ │ ├── Cartridge │ │ │ ├── 128x128.png │ │ │ ├── 16x16.png │ │ │ ├── 256x256.png │ │ │ ├── 32x32.png │ │ │ ├── 512x512.png │ │ │ └── 64x64.png │ │ ├── ColorCartridge │ │ │ ├── 128x128.png │ │ │ ├── 16x16.png │ │ │ ├── 256x256.png │ │ │ ├── 32x32.png │ │ │ ├── 512x512.png │ │ │ └── 64x64.png │ │ ├── sameboy.desktop │ │ └── sameboy.xml │ ├── HexFiend │ │ ├── HFAnnotatedTree.h │ │ ├── HFAnnotatedTree.m │ │ ├── HFBTree.h │ │ ├── HFBTree.m │ │ ├── HFBTreeByteArray.h │ │ ├── HFBTreeByteArray.m │ │ ├── HFByteArray.h │ │ ├── HFByteArray.m │ │ ├── HFByteArray_Internal.h │ │ ├── HFByteSlice.h │ │ ├── HFByteSlice.m │ │ ├── HFByteSlice_Private.h │ │ ├── HFController.h │ │ ├── HFController.m │ │ ├── HFFullMemoryByteArray.h │ │ ├── HFFullMemoryByteArray.m │ │ ├── HFFullMemoryByteSlice.h │ │ ├── HFFullMemoryByteSlice.m │ │ ├── HFFunctions.h │ │ ├── HFFunctions.m │ │ ├── HFFunctions_Private.h │ │ ├── HFGlyphTrie.h │ │ ├── HFGlyphTrie.m │ │ ├── HFHexTextRepresenter.h │ │ ├── HFHexTextRepresenter.m │ │ ├── HFHexTextView.h │ │ ├── HFHexTextView.m │ │ ├── HFLayoutRepresenter.h │ │ ├── HFLayoutRepresenter.m │ │ ├── HFLineCountingRepresenter.h │ │ ├── HFLineCountingRepresenter.m │ │ ├── HFLineCountingView.h │ │ ├── HFLineCountingView.m │ │ ├── HFPasteboardOwner.h │ │ ├── HFPasteboardOwner.m │ │ ├── HFPrivilegedHelperConnection.h │ │ ├── HFRepresenter.h │ │ ├── HFRepresenter.m │ │ ├── HFRepresenterHexTextView.h │ │ ├── HFRepresenterHexTextView.m │ │ ├── HFRepresenterStringEncodingTextView.h │ │ ├── HFRepresenterStringEncodingTextView.m │ │ ├── HFRepresenterTextView.h │ │ ├── HFRepresenterTextView.m │ │ ├── HFRepresenterTextViewCallout.h │ │ ├── HFRepresenterTextViewCallout.m │ │ ├── HFRepresenterTextView_Internal.h │ │ ├── HFRepresenter_Internal.h │ │ ├── HFSharedMemoryByteSlice.h │ │ ├── HFSharedMemoryByteSlice.m │ │ ├── HFStatusBarRepresenter.h │ │ ├── HFStatusBarRepresenter.m │ │ ├── HFStringEncodingTextRepresenter.h │ │ ├── HFStringEncodingTextRepresenter.m │ │ ├── HFTextRepresenter.h │ │ ├── HFTextRepresenter.m │ │ ├── HFTextRepresenter_Internal.h │ │ ├── HFTextRepresenter_KeyBinding.m │ │ ├── HFTextVisualStyleRun.h │ │ ├── HFTextVisualStyleRun.m │ │ ├── HFTypes.h │ │ ├── HFVerticalScrollerRepresenter.h │ │ ├── HFVerticalScrollerRepresenter.m │ │ ├── HexFiend.h │ │ ├── HexFiend_2_Framework_Prefix.pch │ │ └── License.txt │ ├── JoyKit │ │ ├── ControllerConfiguration.inc │ │ ├── JOYAxes2D.h │ │ ├── JOYAxes2D.m │ │ ├── JOYAxes3D.h │ │ ├── JOYAxes3D.m │ │ ├── JOYAxis.h │ │ ├── JOYAxis.m │ │ ├── JOYButton.h │ │ ├── JOYButton.m │ │ ├── JOYController.h │ │ ├── JOYController.m │ │ ├── JOYElement.h │ │ ├── JOYElement.m │ │ ├── JOYEmulatedButton.h │ │ ├── JOYEmulatedButton.m │ │ ├── JOYFullReportElement.h │ │ ├── JOYFullReportElement.m │ │ ├── JOYHat.h │ │ ├── JOYHat.m │ │ ├── JOYMultiplayerController.h │ │ ├── JOYMultiplayerController.m │ │ ├── JOYSubElement.h │ │ ├── JOYSubElement.m │ │ └── JoyKit.h │ ├── LICENSE │ ├── Makefile │ ├── Misc │ │ ├── Palettes │ │ │ ├── Desert.sbp │ │ │ ├── Evening.sbp │ │ │ ├── Fog.sbp │ │ │ ├── Magic Eggplant.sbp │ │ │ ├── Radioactive Pea.sbp │ │ │ ├── Seaweed.sbp │ │ │ └── Twilight.sbp │ │ └── registers.sym │ ├── OpenDialog │ │ ├── cocoa.m │ │ ├── gtk.c │ │ ├── open_dialog.h │ │ └── windows.c │ ├── QuickLook │ │ ├── CartridgeTemplate.png │ │ ├── ColorCartridgeTemplate.png │ │ ├── Info.plist │ │ ├── UniversalCartridgeTemplate.png │ │ ├── exports.sym │ │ ├── generator.m │ │ ├── get_image_for_rom.c │ │ ├── get_image_for_rom.h │ │ └── main.c │ ├── README.md │ ├── SDL │ │ ├── audio.c │ │ ├── audio │ │ │ ├── audio.h │ │ │ ├── openal.c │ │ │ ├── sdl.c │ │ │ ├── xaudio2.c │ │ │ ├── xaudio2_7.c │ │ │ └── xaudio2_7.h │ │ ├── background.bmp │ │ ├── configuration.c │ │ ├── configuration.h │ │ ├── console.c │ │ ├── console.h │ │ ├── font.c │ │ ├── font.h │ │ ├── gui.c │ │ ├── gui.h │ │ ├── main.c │ │ ├── opengl_compat.c │ │ ├── opengl_compat.h │ │ ├── shader.c │ │ ├── shader.h │ │ ├── utils.c │ │ └── utils.h │ ├── Shaders │ │ ├── AAOmniScaleLegacy.fsh │ │ ├── AAScale2x.fsh │ │ ├── AAScale4x.fsh │ │ ├── Bilinear.fsh │ │ ├── CRT.fsh │ │ ├── HQ2x.fsh │ │ ├── LCD.fsh │ │ ├── MasterShader.fsh │ │ ├── MasterShader.metal │ │ ├── MonoLCD.fsh │ │ ├── NearestNeighbor.fsh │ │ ├── OmniScale.fsh │ │ ├── OmniScaleLegacy.fsh │ │ ├── Scale2x.fsh │ │ ├── Scale4x.fsh │ │ └── SmoothBilinear.fsh │ ├── Tester │ │ └── main.c │ ├── Windows │ │ ├── dirent.c │ │ ├── dirent.h │ │ ├── inttypes.h │ │ ├── math.h │ │ ├── pthread.h │ │ ├── resources.rc │ │ ├── sameboy.ico │ │ ├── stdint.h │ │ ├── stdio.h │ │ ├── string.h │ │ ├── unistd.h │ │ └── utf8_compat.c │ ├── libretro │ │ ├── Makefile │ │ ├── Makefile.common │ │ ├── jni │ │ │ ├── Android.mk │ │ │ └── Application.mk │ │ ├── libretro.c │ │ ├── libretro.h │ │ ├── libretro_core_options.inc │ │ ├── link.T │ │ └── retro_inline.h │ └── version.mk ├── SameBoy │ ├── .gitattributes │ ├── .github │ │ ├── FUNDING.yml │ │ ├── actions │ │ │ ├── LICENSE │ │ │ ├── cgb-acid2.gbc │ │ │ ├── cgb_sound.gb │ │ │ ├── dmg-acid2.gb │ │ │ ├── dmg_sound-2.gb │ │ │ ├── install_deps.sh │ │ │ ├── oam_bug-2.gb │ │ │ └── sanity_tests.sh │ │ └── workflows │ │ │ └── sanity.yml │ ├── .gitignore │ ├── BESS.md │ ├── BootROMs │ │ ├── SameBoyLogo.png │ │ ├── agb_boot.asm │ │ ├── cgb0_boot.asm │ │ ├── cgb_boot.asm │ │ ├── cgb_boot_fast.asm │ │ ├── dmg_boot.asm │ │ ├── hardware.inc │ │ ├── mgb_boot.asm │ │ ├── pb12.c │ │ ├── sgb2_boot.asm │ │ └── sgb_boot.asm │ ├── CHANGES.md │ ├── CONTRIBUTING.md │ ├── Cocoa │ │ ├── AppIcon.icns │ │ ├── AudioRecordingAccessoryView.xib │ │ ├── BigSurToolbar.h │ │ ├── CPU.png │ │ ├── CPU@2x.png │ │ ├── CPU~solid.png │ │ ├── CPU~solid@2x.png │ │ ├── CPU~solid~dark.png │ │ ├── CPU~solid~dark@2x.png │ │ ├── Cartridge.icns │ │ ├── ColorCartridge.icns │ │ ├── ContinueTemplate.png │ │ ├── ContinueTemplate@2x.png │ │ ├── Display.png │ │ ├── Display@2x.png │ │ ├── Display~solid.png │ │ ├── Display~solid@2x.png │ │ ├── Display~solid~dark.png │ │ ├── Display~solid~dark@2x.png │ │ ├── Document.h │ │ ├── Document.m │ │ ├── Document.xib │ │ ├── FinishTemplate.png │ │ ├── FinishTemplate@2x.png │ │ ├── GBApp.h │ │ ├── GBApp.m │ │ ├── GBAudioClient.h │ │ ├── GBAudioClient.m │ │ ├── GBBorderView.h │ │ ├── GBBorderView.m │ │ ├── GBButtons.h │ │ ├── GBButtons.m │ │ ├── GBCheatTextFieldCell.h │ │ ├── GBCheatTextFieldCell.m │ │ ├── GBCheatWindowController.h │ │ ├── GBCheatWindowController.m │ │ ├── GBCompleteByteSlice.h │ │ ├── GBCompleteByteSlice.m │ │ ├── GBDebuggerButton.h │ │ ├── GBDebuggerButton.m │ │ ├── GBGLShader.h │ │ ├── GBGLShader.m │ │ ├── GBHueSliderCell.h │ │ ├── GBHueSliderCell.m │ │ ├── GBImageView.h │ │ ├── GBImageView.m │ │ ├── GBJoyConManager.h │ │ ├── GBJoyConManager.m │ │ ├── GBMemoryByteArray.h │ │ ├── GBMemoryByteArray.m │ │ ├── GBOSDView.h │ │ ├── GBOSDView.m │ │ ├── GBObjectView.h │ │ ├── GBObjectView.m │ │ ├── GBObjectViewItem.xib │ │ ├── GBOpenGLView.h │ │ ├── GBOpenGLView.m │ │ ├── GBOptionalVisualEffectView.h │ │ ├── GBOptionalVisualEffectView.m │ │ ├── GBPaletteEditorController.h │ │ ├── GBPaletteEditorController.m │ │ ├── GBPaletteView.h │ │ ├── GBPaletteView.m │ │ ├── GBPaletteViewRow.xib │ │ ├── GBPreferencesWindow.h │ │ ├── GBPreferencesWindow.m │ │ ├── GBS.xib │ │ ├── GBS11.xib │ │ ├── GBSplitView.h │ │ ├── GBSplitView.m │ │ ├── GBTerminalTextFieldCell.h │ │ ├── GBTerminalTextFieldCell.m │ │ ├── GBTintedImageCell.h │ │ ├── GBTintedImageCell.m │ │ ├── GBView.h │ │ ├── GBView.m │ │ ├── GBViewGL.h │ │ ├── GBViewGL.m │ │ ├── GBViewMetal.h │ │ ├── GBViewMetal.m │ │ ├── GBVisualizerView.h │ │ ├── GBVisualizerView.m │ │ ├── GBWarningPopover.h │ │ ├── GBWarningPopover.m │ │ ├── HelpTemplate.png │ │ ├── HelpTemplate@2x.png │ │ ├── HorizontalJoyConLeftTemplate.png │ │ ├── HorizontalJoyConLeftTemplate@2x.png │ │ ├── HorizontalJoyConRightTemplate.png │ │ ├── HorizontalJoyConRightTemplate@2x.png │ │ ├── Icon.png │ │ ├── Icon@2x.png │ │ ├── Info.plist │ │ ├── InterruptTemplate.png │ │ ├── InterruptTemplate@2x.png │ │ ├── JoyConDualTemplate.png │ │ ├── JoyConDualTemplate@2x.png │ │ ├── JoyConLeftTemplate.png │ │ ├── JoyConLeftTemplate@2x.png │ │ ├── JoyConRightTemplate.png │ │ ├── JoyConRightTemplate@2x.png │ │ ├── Joypad.png │ │ ├── Joypad@2x.png │ │ ├── Joypad~dark.png │ │ ├── Joypad~dark@2x.png │ │ ├── Joypad~solid.png │ │ ├── Joypad~solid@2x.png │ │ ├── KeyboardShortcutPrivateAPIs.h │ │ ├── License.html │ │ ├── MainMenu.xib │ │ ├── NSImageNamedDarkSupport.m │ │ ├── NSObject+MavericksCompat.m │ │ ├── NSString+StringForKey.h │ │ ├── NSString+StringForKey.m │ │ ├── NSTextFieldCell+Inset.h │ │ ├── NSTextFieldCell+Inset.m │ │ ├── Next.png │ │ ├── Next@2x.png │ │ ├── NextTemplate.png │ │ ├── NextTemplate@2x.png │ │ ├── Pause.png │ │ ├── Pause@2x.png │ │ ├── PkgInfo │ │ ├── Play.png │ │ ├── Play@2x.png │ │ ├── PopoverView.xib │ │ ├── Preferences.xib │ │ ├── Previous.png │ │ ├── Previous@2x.png │ │ ├── Rewind.png │ │ ├── Rewind@2x.png │ │ ├── Speaker.png │ │ ├── Speaker@2x.png │ │ ├── Speaker~dark.png │ │ ├── Speaker~dark@2x.png │ │ ├── Speaker~solid.png │ │ ├── Speaker~solid@2x.png │ │ ├── StepTemplate.png │ │ ├── StepTemplate@2x.png │ │ ├── UpdateWindow.xib │ │ ├── Updates.png │ │ ├── Updates@2x.png │ │ ├── Updates~solid.png │ │ ├── Updates~solid@2x.png │ │ ├── Updates~solid~dark.png │ │ ├── Updates~solid~dark@2x.png │ │ └── main.m │ ├── Core │ │ ├── apu.c │ │ ├── apu.h │ │ ├── camera.c │ │ ├── camera.h │ │ ├── cheats.c │ │ ├── cheats.h │ │ ├── debugger.c │ │ ├── debugger.h │ │ ├── defs.h │ │ ├── display.c │ │ ├── display.h │ │ ├── gb.c │ │ ├── gb.h │ │ ├── graphics │ │ │ ├── agb_border.inc │ │ │ ├── cgb_border.inc │ │ │ ├── dmg_border.inc │ │ │ ├── mgb_border.inc │ │ │ ├── sgb_animation_logo.inc │ │ │ └── sgb_border.inc │ │ ├── joypad.c │ │ ├── joypad.h │ │ ├── mbc.c │ │ ├── mbc.h │ │ ├── memory.c │ │ ├── memory.h │ │ ├── printer.c │ │ ├── printer.h │ │ ├── random.c │ │ ├── random.h │ │ ├── rewind.c │ │ ├── rewind.h │ │ ├── rumble.c │ │ ├── rumble.h │ │ ├── save_state.c │ │ ├── save_state.h │ │ ├── sgb.c │ │ ├── sgb.h │ │ ├── sm83_cpu.c │ │ ├── sm83_cpu.h │ │ ├── sm83_disassembler.c │ │ ├── symbol_hash.c │ │ ├── symbol_hash.h │ │ ├── timing.c │ │ ├── timing.h │ │ ├── workboy.c │ │ └── workboy.h │ ├── FreeDesktop │ │ ├── AppIcon │ │ │ ├── 128x128.png │ │ │ ├── 16x16.png │ │ │ ├── 256x256.png │ │ │ ├── 32x32.png │ │ │ ├── 512x512.png │ │ │ └── 64x64.png │ │ ├── Cartridge │ │ │ ├── 128x128.png │ │ │ ├── 16x16.png │ │ │ ├── 256x256.png │ │ │ ├── 32x32.png │ │ │ ├── 512x512.png │ │ │ └── 64x64.png │ │ ├── ColorCartridge │ │ │ ├── 128x128.png │ │ │ ├── 16x16.png │ │ │ ├── 256x256.png │ │ │ ├── 32x32.png │ │ │ ├── 512x512.png │ │ │ └── 64x64.png │ │ ├── sameboy.desktop │ │ └── sameboy.xml │ ├── HexFiend │ │ ├── HFAnnotatedTree.h │ │ ├── HFAnnotatedTree.m │ │ ├── HFBTree.h │ │ ├── HFBTree.m │ │ ├── HFBTreeByteArray.h │ │ ├── HFBTreeByteArray.m │ │ ├── HFByteArray.h │ │ ├── HFByteArray.m │ │ ├── HFByteArray_Internal.h │ │ ├── HFByteSlice.h │ │ ├── HFByteSlice.m │ │ ├── HFByteSlice_Private.h │ │ ├── HFController.h │ │ ├── HFController.m │ │ ├── HFFullMemoryByteArray.h │ │ ├── HFFullMemoryByteArray.m │ │ ├── HFFullMemoryByteSlice.h │ │ ├── HFFullMemoryByteSlice.m │ │ ├── HFFunctions.h │ │ ├── HFFunctions.m │ │ ├── HFFunctions_Private.h │ │ ├── HFGlyphTrie.h │ │ ├── HFGlyphTrie.m │ │ ├── HFHexTextRepresenter.h │ │ ├── HFHexTextRepresenter.m │ │ ├── HFHexTextView.h │ │ ├── HFHexTextView.m │ │ ├── HFLayoutRepresenter.h │ │ ├── HFLayoutRepresenter.m │ │ ├── HFLineCountingRepresenter.h │ │ ├── HFLineCountingRepresenter.m │ │ ├── HFLineCountingView.h │ │ ├── HFLineCountingView.m │ │ ├── HFPasteboardOwner.h │ │ ├── HFPasteboardOwner.m │ │ ├── HFPrivilegedHelperConnection.h │ │ ├── HFRepresenter.h │ │ ├── HFRepresenter.m │ │ ├── HFRepresenterHexTextView.h │ │ ├── HFRepresenterHexTextView.m │ │ ├── HFRepresenterStringEncodingTextView.h │ │ ├── HFRepresenterStringEncodingTextView.m │ │ ├── HFRepresenterTextView.h │ │ ├── HFRepresenterTextView.m │ │ ├── HFRepresenterTextViewCallout.h │ │ ├── HFRepresenterTextViewCallout.m │ │ ├── HFRepresenterTextView_Internal.h │ │ ├── HFRepresenter_Internal.h │ │ ├── HFSharedMemoryByteSlice.h │ │ ├── HFSharedMemoryByteSlice.m │ │ ├── HFStatusBarRepresenter.h │ │ ├── HFStatusBarRepresenter.m │ │ ├── HFStringEncodingTextRepresenter.h │ │ ├── HFStringEncodingTextRepresenter.m │ │ ├── HFTextRepresenter.h │ │ ├── HFTextRepresenter.m │ │ ├── HFTextRepresenter_Internal.h │ │ ├── HFTextRepresenter_KeyBinding.m │ │ ├── HFTextVisualStyleRun.h │ │ ├── HFTextVisualStyleRun.m │ │ ├── HFTypes.h │ │ ├── HFVerticalScrollerRepresenter.h │ │ ├── HFVerticalScrollerRepresenter.m │ │ ├── HexFiend.h │ │ ├── HexFiend_2_Framework_Prefix.pch │ │ └── License.txt │ ├── JoyKit │ │ ├── ControllerConfiguration.inc │ │ ├── JOYAxes2D.h │ │ ├── JOYAxes2D.m │ │ ├── JOYAxes3D.h │ │ ├── JOYAxes3D.m │ │ ├── JOYAxis.h │ │ ├── JOYAxis.m │ │ ├── JOYButton.h │ │ ├── JOYButton.m │ │ ├── JOYController.h │ │ ├── JOYController.m │ │ ├── JOYElement.h │ │ ├── JOYElement.m │ │ ├── JOYEmulatedButton.h │ │ ├── JOYEmulatedButton.m │ │ ├── JOYFullReportElement.h │ │ ├── JOYFullReportElement.m │ │ ├── JOYHat.h │ │ ├── JOYHat.m │ │ ├── JOYInput.h │ │ ├── JOYInput.m │ │ ├── JOYMultiplayerController.h │ │ ├── JOYMultiplayerController.m │ │ ├── JOYSubElement.h │ │ ├── JOYSubElement.m │ │ └── JoyKit.h │ ├── LICENSE │ ├── Makefile │ ├── Misc │ │ ├── Palettes │ │ │ ├── Desert.sbp │ │ │ ├── Evening.sbp │ │ │ ├── Fog.sbp │ │ │ ├── Magic Eggplant.sbp │ │ │ ├── Radioactive Pea.sbp │ │ │ ├── Seaweed.sbp │ │ │ └── Twilight.sbp │ │ └── registers.sym │ ├── OpenDialog │ │ ├── cocoa.m │ │ ├── gtk.c │ │ ├── open_dialog.h │ │ └── windows.c │ ├── QuickLook │ │ ├── CartridgeTemplate.png │ │ ├── ColorCartridgeTemplate.png │ │ ├── Info.plist │ │ ├── UniversalCartridgeTemplate.png │ │ ├── exports.sym │ │ ├── generator.m │ │ ├── get_image_for_rom.c │ │ ├── get_image_for_rom.h │ │ └── main.c │ ├── README.md │ ├── SDL │ │ ├── audio.c │ │ ├── audio │ │ │ ├── audio.h │ │ │ ├── openal.c │ │ │ ├── sdl.c │ │ │ ├── xaudio2.c │ │ │ ├── xaudio2_7.c │ │ │ └── xaudio2_7.h │ │ ├── background.bmp │ │ ├── configuration.c │ │ ├── configuration.h │ │ ├── console.c │ │ ├── console.h │ │ ├── font.c │ │ ├── font.h │ │ ├── gui.c │ │ ├── gui.h │ │ ├── main.c │ │ ├── opengl_compat.c │ │ ├── opengl_compat.h │ │ ├── shader.c │ │ ├── shader.h │ │ ├── utils.c │ │ └── utils.h │ ├── Shaders │ │ ├── AAOmniScaleLegacy.fsh │ │ ├── AAScale2x.fsh │ │ ├── AAScale4x.fsh │ │ ├── Bilinear.fsh │ │ ├── CRT.fsh │ │ ├── HQ2x.fsh │ │ ├── LCD.fsh │ │ ├── MasterShader.fsh │ │ ├── MasterShader.metal │ │ ├── MonoLCD.fsh │ │ ├── NearestNeighbor.fsh │ │ ├── OmniScale.fsh │ │ ├── OmniScaleLegacy.fsh │ │ ├── Scale2x.fsh │ │ ├── Scale4x.fsh │ │ └── SmoothBilinear.fsh │ ├── Tester │ │ └── main.c │ ├── Windows │ │ ├── dirent.c │ │ ├── dirent.h │ │ ├── inttypes.h │ │ ├── math.h │ │ ├── pthread.h │ │ ├── resources.rc │ │ ├── sameboy.ico │ │ ├── stdint.h │ │ ├── stdio.h │ │ ├── stdlib.h │ │ ├── string.h │ │ ├── unistd.h │ │ └── utf8_compat.c │ ├── build-faq.md │ ├── libretro │ │ ├── Makefile │ │ ├── Makefile.common │ │ ├── jni │ │ │ ├── Android.mk │ │ │ └── Application.mk │ │ ├── libretro.c │ │ ├── libretro.h │ │ ├── libretro_core_options.inc │ │ ├── link.T │ │ └── retro_inline.h │ └── version.mk ├── bin2h │ └── main.cpp ├── gainput │ ├── .appveyor.yml │ ├── .gitignore │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── Doxyfile │ ├── LICENSE │ ├── README.md │ ├── build.gradle │ ├── extern │ │ ├── android │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ ├── catch │ │ │ └── catch.hpp │ │ ├── cmake │ │ │ ├── AndroidNdkModules.cmake │ │ │ ├── android.toolchain.cmake │ │ │ └── iOS.cmake │ │ └── ios │ │ │ ├── Info.plist │ │ │ └── Launch Screen.storyboard │ ├── lib │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── gainput │ │ │ │ ├── GainputAllocator.h │ │ │ │ ├── GainputContainers.h │ │ │ │ ├── GainputDebugRenderer.h │ │ │ │ ├── GainputHelpers.h │ │ │ │ ├── GainputInputDeltaState.h │ │ │ │ ├── GainputInputDevice.h │ │ │ │ ├── GainputInputDeviceBuiltIn.h │ │ │ │ ├── GainputInputDeviceKeyboard.h │ │ │ │ ├── GainputInputDeviceMouse.h │ │ │ │ ├── GainputInputDevicePad.h │ │ │ │ ├── GainputInputDeviceTouch.h │ │ │ │ ├── GainputInputListener.h │ │ │ │ ├── GainputInputManager.h │ │ │ │ ├── GainputInputMap.h │ │ │ │ ├── GainputInputState.h │ │ │ │ ├── GainputIos.h │ │ │ │ ├── GainputLog.h │ │ │ │ ├── GainputMapFilters.h │ │ │ │ ├── gainput.h │ │ │ │ ├── gestures │ │ │ │ ├── GainputButtonStickGesture.h │ │ │ │ ├── GainputDoubleClickGesture.h │ │ │ │ ├── GainputGestures.h │ │ │ │ ├── GainputHoldGesture.h │ │ │ │ ├── GainputPinchGesture.h │ │ │ │ ├── GainputRotateGesture.h │ │ │ │ ├── GainputSimultaneouslyDownGesture.h │ │ │ │ └── GainputTapGesture.h │ │ │ │ └── recorder │ │ │ │ ├── GainputInputPlayer.h │ │ │ │ ├── GainputInputRecorder.h │ │ │ │ └── GainputInputRecording.h │ │ ├── java │ │ │ ├── com │ │ │ │ └── example │ │ │ │ │ └── gainput │ │ │ │ │ └── gainput │ │ │ │ │ └── BasicActivity.java │ │ │ └── de │ │ │ │ └── johanneskuhlmann │ │ │ │ └── gainput │ │ │ │ └── Gainput.java │ │ └── source │ │ │ └── gainput │ │ │ ├── GainputAllocator.cpp │ │ │ ├── GainputHelpersEvdev.h │ │ │ ├── GainputInputDeltaState.cpp │ │ │ ├── GainputInputDevice.cpp │ │ │ ├── GainputInputManager.cpp │ │ │ ├── GainputInputMap.cpp │ │ │ ├── GainputInputState.cpp │ │ │ ├── GainputIos.mm │ │ │ ├── GainputMac.mm │ │ │ ├── GainputMapFilters.cpp │ │ │ ├── GainputWindows.h │ │ │ ├── builtin │ │ │ ├── GainputInputDeviceBuiltIn.cpp │ │ │ ├── GainputInputDeviceBuiltInAndroid.h │ │ │ ├── GainputInputDeviceBuiltInImpl.h │ │ │ ├── GainputInputDeviceBuiltInIos.h │ │ │ ├── GainputInputDeviceBuiltInIos.mm │ │ │ └── GainputInputDeviceBuiltInNull.h │ │ │ ├── dev │ │ │ ├── GainputDev.cpp │ │ │ ├── GainputDev.h │ │ │ ├── GainputDevProtocol.h │ │ │ ├── GainputMemoryStream.cpp │ │ │ ├── GainputMemoryStream.h │ │ │ ├── GainputNetAddress.cpp │ │ │ ├── GainputNetAddress.h │ │ │ ├── GainputNetConnection.cpp │ │ │ ├── GainputNetConnection.h │ │ │ ├── GainputNetListener.cpp │ │ │ ├── GainputNetListener.h │ │ │ └── GainputStream.h │ │ │ ├── gainput.cpp │ │ │ ├── gestures │ │ │ ├── GainputButtonStickGesture.cpp │ │ │ ├── GainputDoubleClickGesture.cpp │ │ │ ├── GainputHoldGesture.cpp │ │ │ ├── GainputPinchGesture.cpp │ │ │ ├── GainputRotateGesture.cpp │ │ │ ├── GainputSimultaneouslyDownGesture.cpp │ │ │ └── GainputTapGesture.cpp │ │ │ ├── keyboard │ │ │ ├── GainputInputDeviceKeyboard.cpp │ │ │ ├── GainputInputDeviceKeyboardAndroid.h │ │ │ ├── GainputInputDeviceKeyboardEvdev.h │ │ │ ├── GainputInputDeviceKeyboardImpl.h │ │ │ ├── GainputInputDeviceKeyboardLinux.h │ │ │ ├── GainputInputDeviceKeyboardMac.cpp │ │ │ ├── GainputInputDeviceKeyboardMac.h │ │ │ ├── GainputInputDeviceKeyboardNull.h │ │ │ ├── GainputInputDeviceKeyboardWin.h │ │ │ ├── GainputInputDeviceKeyboardWinRaw.h │ │ │ └── GainputKeyboardKeyNames.h │ │ │ ├── mouse │ │ │ ├── GainputInputDeviceMouse.cpp │ │ │ ├── GainputInputDeviceMouseEvdev.h │ │ │ ├── GainputInputDeviceMouseImpl.h │ │ │ ├── GainputInputDeviceMouseLinux.h │ │ │ ├── GainputInputDeviceMouseMac.h │ │ │ ├── GainputInputDeviceMouseMac.mm │ │ │ ├── GainputInputDeviceMouseNull.h │ │ │ ├── GainputInputDeviceMouseWin.h │ │ │ ├── GainputInputDeviceMouseWinRaw.h │ │ │ └── GainputMouseInfo.h │ │ │ ├── pad │ │ │ ├── GainputInputDevicePad.cpp │ │ │ ├── GainputInputDevicePadAndroid.h │ │ │ ├── GainputInputDevicePadImpl.h │ │ │ ├── GainputInputDevicePadIos.h │ │ │ ├── GainputInputDevicePadIos.mm │ │ │ ├── GainputInputDevicePadLinux.h │ │ │ ├── GainputInputDevicePadMac.cpp │ │ │ ├── GainputInputDevicePadMac.h │ │ │ ├── GainputInputDevicePadNull.h │ │ │ └── GainputInputDevicePadWin.h │ │ │ ├── recorder │ │ │ ├── GainputInputPlayer.cpp │ │ │ ├── GainputInputRecorder.cpp │ │ │ └── GainputInputRecording.cpp │ │ │ └── touch │ │ │ ├── GainputInputDeviceTouch.cpp │ │ │ ├── GainputInputDeviceTouchAndroid.h │ │ │ ├── GainputInputDeviceTouchImpl.h │ │ │ ├── GainputInputDeviceTouchIos.h │ │ │ ├── GainputInputDeviceTouchNull.h │ │ │ └── GainputTouchInfo.h │ ├── samples │ │ ├── CMakeLists.txt │ │ ├── android │ │ │ ├── AndroidManifest.xml │ │ │ ├── project.properties │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── strings.xml │ │ ├── basic │ │ │ ├── CMakeLists.txt │ │ │ ├── basicsample_android.cpp │ │ │ ├── basicsample_android_generic.cpp │ │ │ ├── basicsample_ios.mm │ │ │ ├── basicsample_linux.cpp │ │ │ ├── basicsample_mac.mm │ │ │ └── basicsample_win.cpp │ │ ├── dynamic │ │ │ ├── CMakeLists.txt │ │ │ └── dynamicsample.cpp │ │ ├── gesture │ │ │ ├── CMakeLists.txt │ │ │ └── gesturesample.cpp │ │ ├── listener │ │ │ ├── CMakeLists.txt │ │ │ └── listenersample.cpp │ │ ├── recording │ │ │ ├── CMakeLists.txt │ │ │ └── recordingsample.cpp │ │ ├── samplefw │ │ │ ├── SampleFramework.cpp │ │ │ └── SampleFramework.h │ │ └── sync │ │ │ ├── CMakeLists.txt │ │ │ └── syncsample.cpp │ ├── test │ │ ├── CMakeLists.txt │ │ ├── test.cpp │ │ ├── test_inputdevice.cpp │ │ ├── test_inputmanager.cpp │ │ ├── test_inputmap.cpp │ │ ├── test_inputrecording.cpp │ │ └── test_inputstate.cpp │ └── tools │ │ └── html5client │ │ ├── index.html │ │ └── touch.html ├── ghc │ └── filesystem.hpp ├── iPlug2 │ ├── .editorconfig │ ├── .gitattributes │ ├── .github │ │ ├── FUNDING.yml │ │ ├── ISSUE_TEMPLATE │ │ │ ├── bug_report.md │ │ │ └── feature_request.md │ │ └── pull_request_template.md │ ├── .gitignore │ ├── .travis.yml │ ├── .vscode │ │ ├── IGraphics.code-snippets │ │ ├── IPlug.code-snippets │ │ └── c_cpp_properties.json │ ├── Dependencies │ │ ├── Extras │ │ │ ├── README.md │ │ │ ├── civetweb │ │ │ │ └── build-civetweb-mac.sh │ │ │ ├── faust │ │ │ │ ├── build-faust-mac.sh │ │ │ │ ├── iplug-backends.cmake │ │ │ │ └── iplug-targets-mac.cmake │ │ │ └── nlohmann │ │ │ │ └── json.hpp │ │ ├── IGraphics │ │ │ ├── AGG │ │ │ │ ├── README.txt │ │ │ │ └── agg-2.4 │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── README │ │ │ │ │ ├── font_freetype │ │ │ │ │ ├── agg_font_freetype.cpp │ │ │ │ │ └── agg_font_freetype.h │ │ │ │ │ ├── include │ │ │ │ │ ├── agg_alpha_mask_u8.h │ │ │ │ │ ├── agg_arc.h │ │ │ │ │ ├── agg_array.h │ │ │ │ │ ├── agg_arrowhead.h │ │ │ │ │ ├── agg_basics.h │ │ │ │ │ ├── agg_bezier_arc.h │ │ │ │ │ ├── agg_bitset_iterator.h │ │ │ │ │ ├── agg_blur.h │ │ │ │ │ ├── agg_bounding_rect.h │ │ │ │ │ ├── agg_bspline.h │ │ │ │ │ ├── agg_clip_liang_barsky.h │ │ │ │ │ ├── agg_color_gray.h │ │ │ │ │ ├── agg_color_rgba.h │ │ │ │ │ ├── agg_config.h │ │ │ │ │ ├── agg_conv_adaptor_vcgen.h │ │ │ │ │ ├── agg_conv_adaptor_vpgen.h │ │ │ │ │ ├── agg_conv_bspline.h │ │ │ │ │ ├── agg_conv_clip_polygon.h │ │ │ │ │ ├── agg_conv_clip_polyline.h │ │ │ │ │ ├── agg_conv_close_polygon.h │ │ │ │ │ ├── agg_conv_concat.h │ │ │ │ │ ├── agg_conv_contour.h │ │ │ │ │ ├── agg_conv_curve.h │ │ │ │ │ ├── agg_conv_dash.h │ │ │ │ │ ├── agg_conv_gpc.h │ │ │ │ │ ├── agg_conv_marker.h │ │ │ │ │ ├── agg_conv_marker_adaptor.h │ │ │ │ │ ├── agg_conv_segmentator.h │ │ │ │ │ ├── agg_conv_shorten_path.h │ │ │ │ │ ├── agg_conv_smooth_poly1.h │ │ │ │ │ ├── agg_conv_stroke.h │ │ │ │ │ ├── agg_conv_transform.h │ │ │ │ │ ├── agg_conv_unclose_polygon.h │ │ │ │ │ ├── agg_curves.h │ │ │ │ │ ├── agg_dda_line.h │ │ │ │ │ ├── agg_ellipse.h │ │ │ │ │ ├── agg_ellipse_bresenham.h │ │ │ │ │ ├── agg_embedded_raster_fonts.h │ │ │ │ │ ├── agg_font_cache_manager.h │ │ │ │ │ ├── agg_font_cache_manager2.h │ │ │ │ │ ├── agg_gamma_functions.h │ │ │ │ │ ├── agg_gamma_lut.h │ │ │ │ │ ├── agg_glyph_raster_bin.h │ │ │ │ │ ├── agg_gradient_lut.h │ │ │ │ │ ├── agg_gsv_text.h │ │ │ │ │ ├── agg_image_accessors.h │ │ │ │ │ ├── agg_image_filters.h │ │ │ │ │ ├── agg_line_aa_basics.h │ │ │ │ │ ├── agg_math.h │ │ │ │ │ ├── agg_math_stroke.h │ │ │ │ │ ├── agg_path_length.h │ │ │ │ │ ├── agg_path_storage.h │ │ │ │ │ ├── agg_path_storage_integer.h │ │ │ │ │ ├── agg_pattern_filters_rgba.h │ │ │ │ │ ├── agg_pixfmt_amask_adaptor.h │ │ │ │ │ ├── agg_pixfmt_base.h │ │ │ │ │ ├── agg_pixfmt_gray.h │ │ │ │ │ ├── agg_pixfmt_rgb.h │ │ │ │ │ ├── agg_pixfmt_rgb_packed.h │ │ │ │ │ ├── agg_pixfmt_rgba.h │ │ │ │ │ ├── agg_pixfmt_transposer.h │ │ │ │ │ ├── agg_pmap.h │ │ │ │ │ ├── agg_rasterizer_cells_aa.h │ │ │ │ │ ├── agg_rasterizer_compound_aa.h │ │ │ │ │ ├── agg_rasterizer_outline.h │ │ │ │ │ ├── agg_rasterizer_outline_aa.h │ │ │ │ │ ├── agg_rasterizer_scanline_aa.h │ │ │ │ │ ├── agg_rasterizer_scanline_aa_nogamma.h │ │ │ │ │ ├── agg_rasterizer_sl_clip.h │ │ │ │ │ ├── agg_renderer_base.h │ │ │ │ │ ├── agg_renderer_markers.h │ │ │ │ │ ├── agg_renderer_mclip.h │ │ │ │ │ ├── agg_renderer_outline_aa.h │ │ │ │ │ ├── agg_renderer_outline_image.h │ │ │ │ │ ├── agg_renderer_primitives.h │ │ │ │ │ ├── agg_renderer_raster_text.h │ │ │ │ │ ├── agg_renderer_scanline.h │ │ │ │ │ ├── agg_rendering_buffer.h │ │ │ │ │ ├── agg_rendering_buffer_dynarow.h │ │ │ │ │ ├── agg_rounded_rect.h │ │ │ │ │ ├── agg_scanline_bin.h │ │ │ │ │ ├── agg_scanline_boolean_algebra.h │ │ │ │ │ ├── agg_scanline_p.h │ │ │ │ │ ├── agg_scanline_storage_aa.h │ │ │ │ │ ├── agg_scanline_storage_bin.h │ │ │ │ │ ├── agg_scanline_u.h │ │ │ │ │ ├── agg_shorten_path.h │ │ │ │ │ ├── agg_simul_eq.h │ │ │ │ │ ├── agg_span_allocator.h │ │ │ │ │ ├── agg_span_converter.h │ │ │ │ │ ├── agg_span_gouraud.h │ │ │ │ │ ├── agg_span_gouraud_gray.h │ │ │ │ │ ├── agg_span_gouraud_rgba.h │ │ │ │ │ ├── agg_span_gradient.h │ │ │ │ │ ├── agg_span_gradient_alpha.h │ │ │ │ │ ├── agg_span_gradient_contour.h │ │ │ │ │ ├── agg_span_gradient_image.h │ │ │ │ │ ├── agg_span_image_filter.h │ │ │ │ │ ├── agg_span_image_filter_gray.h │ │ │ │ │ ├── agg_span_image_filter_rgb.h │ │ │ │ │ ├── agg_span_image_filter_rgba.h │ │ │ │ │ ├── agg_span_interpolator_adaptor.h │ │ │ │ │ ├── agg_span_interpolator_linear.h │ │ │ │ │ ├── agg_span_interpolator_persp.h │ │ │ │ │ ├── agg_span_interpolator_trans.h │ │ │ │ │ ├── agg_span_pattern_gray.h │ │ │ │ │ ├── agg_span_pattern_rgb.h │ │ │ │ │ ├── agg_span_pattern_rgba.h │ │ │ │ │ ├── agg_span_solid.h │ │ │ │ │ ├── agg_span_subdiv_adaptor.h │ │ │ │ │ ├── agg_trans_affine.h │ │ │ │ │ ├── agg_trans_bilinear.h │ │ │ │ │ ├── agg_trans_double_path.h │ │ │ │ │ ├── agg_trans_perspective.h │ │ │ │ │ ├── agg_trans_single_path.h │ │ │ │ │ ├── agg_trans_viewport.h │ │ │ │ │ ├── agg_trans_warp_magnifier.h │ │ │ │ │ ├── agg_vcgen_bspline.h │ │ │ │ │ ├── agg_vcgen_contour.h │ │ │ │ │ ├── agg_vcgen_dash.h │ │ │ │ │ ├── agg_vcgen_markers_term.h │ │ │ │ │ ├── agg_vcgen_smooth_poly1.h │ │ │ │ │ ├── agg_vcgen_stroke.h │ │ │ │ │ ├── agg_vcgen_vertex_sequence.h │ │ │ │ │ ├── agg_vertex_sequence.h │ │ │ │ │ ├── agg_vpgen_clip_polygon.h │ │ │ │ │ ├── agg_vpgen_clip_polyline.h │ │ │ │ │ ├── agg_vpgen_segmentator.h │ │ │ │ │ ├── platform │ │ │ │ │ │ ├── mac │ │ │ │ │ │ │ └── agg_mac_pmap.h │ │ │ │ │ │ └── win32 │ │ │ │ │ │ │ └── agg_win32_pmap.h │ │ │ │ │ └── util │ │ │ │ │ │ ├── agg_color_conv.h │ │ │ │ │ │ ├── agg_color_conv_rgb16.h │ │ │ │ │ │ └── agg_color_conv_rgb8.h │ │ │ │ │ └── src │ │ │ │ │ ├── agg_arc.cpp │ │ │ │ │ ├── agg_arrowhead.cpp │ │ │ │ │ ├── agg_bezier_arc.cpp │ │ │ │ │ ├── agg_bspline.cpp │ │ │ │ │ ├── agg_color_rgba.cpp │ │ │ │ │ ├── agg_curves.cpp │ │ │ │ │ ├── agg_image_filters.cpp │ │ │ │ │ ├── agg_line_aa_basics.cpp │ │ │ │ │ ├── agg_line_profile_aa.cpp │ │ │ │ │ ├── agg_rounded_rect.cpp │ │ │ │ │ ├── agg_sqrt_tables.cpp │ │ │ │ │ ├── agg_trans_affine.cpp │ │ │ │ │ ├── agg_trans_double_path.cpp │ │ │ │ │ ├── agg_trans_single_path.cpp │ │ │ │ │ ├── agg_trans_warp_magnifier.cpp │ │ │ │ │ ├── agg_vcgen_bspline.cpp │ │ │ │ │ ├── agg_vcgen_contour.cpp │ │ │ │ │ ├── agg_vcgen_dash.cpp │ │ │ │ │ ├── agg_vcgen_markers_term.cpp │ │ │ │ │ ├── agg_vcgen_smooth_poly1.cpp │ │ │ │ │ ├── agg_vcgen_stroke.cpp │ │ │ │ │ ├── agg_vpgen_clip_polygon.cpp │ │ │ │ │ ├── agg_vpgen_clip_polyline.cpp │ │ │ │ │ ├── agg_vpgen_segmentator.cpp │ │ │ │ │ └── platform │ │ │ │ │ ├── mac │ │ │ │ │ └── agg_mac_pmap.mm │ │ │ │ │ └── win32 │ │ │ │ │ └── agg_win32_pmap.cpp │ │ │ ├── IGraphicsLibraries.sln │ │ │ ├── MSColorPicker │ │ │ │ ├── LICENSE │ │ │ │ └── MSColorPicker │ │ │ │ │ ├── MSColorComponentView.h │ │ │ │ │ ├── MSColorComponentView.m │ │ │ │ │ ├── MSColorPicker.h │ │ │ │ │ ├── MSColorSelectionView.h │ │ │ │ │ ├── MSColorSelectionView.m │ │ │ │ │ ├── MSColorSelectionViewController.h │ │ │ │ │ ├── MSColorSelectionViewController.m │ │ │ │ │ ├── MSColorUtils.h │ │ │ │ │ ├── MSColorUtils.m │ │ │ │ │ ├── MSColorView.h │ │ │ │ │ ├── MSColorWheelView.h │ │ │ │ │ ├── MSColorWheelView.m │ │ │ │ │ ├── MSHSBView.h │ │ │ │ │ ├── MSHSBView.m │ │ │ │ │ ├── MSRGBView.h │ │ │ │ │ ├── MSRGBView.m │ │ │ │ │ ├── MSSliderView.h │ │ │ │ │ ├── MSSliderView.m │ │ │ │ │ ├── MSThumbView.h │ │ │ │ │ ├── MSThumbView.m │ │ │ │ │ ├── UIControl+HitTestEdgeInsets.h │ │ │ │ │ └── UIControl+HitTestEdgeInsets.m │ │ │ ├── MetalNanoVG │ │ │ │ ├── .gitignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── src │ │ │ │ │ ├── mnvg_bitcode │ │ │ │ │ │ ├── ios.h │ │ │ │ │ │ ├── macos.h │ │ │ │ │ │ ├── simulator.h │ │ │ │ │ │ └── tvos.h │ │ │ │ │ ├── nanovg_mtl.h │ │ │ │ │ ├── nanovg_mtl.m │ │ │ │ │ └── nanovg_mtl_shaders.metal │ │ │ │ └── tools │ │ │ │ │ └── metallib │ │ │ ├── NanoSVG │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── example │ │ │ │ │ ├── 23.svg │ │ │ │ │ ├── drawing.svg │ │ │ │ │ ├── example1.c │ │ │ │ │ ├── example2.c │ │ │ │ │ ├── nano.svg │ │ │ │ │ ├── screenshot-1.png │ │ │ │ │ ├── screenshot-2.png │ │ │ │ │ └── stb_image_write.h │ │ │ │ ├── premake4.lua │ │ │ │ └── src │ │ │ │ │ ├── nanosvg.h │ │ │ │ │ └── nanosvgrast.h │ │ │ ├── NanoVG │ │ │ │ ├── .gitignore │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── example │ │ │ │ │ ├── LICENSE_OFL.txt │ │ │ │ │ ├── NotoEmoji-Regular.ttf │ │ │ │ │ ├── Roboto-Bold.ttf │ │ │ │ │ ├── Roboto-Light.ttf │ │ │ │ │ ├── Roboto-Regular.ttf │ │ │ │ │ ├── demo.c │ │ │ │ │ ├── demo.h │ │ │ │ │ ├── entypo.ttf │ │ │ │ │ ├── example_fbo.c │ │ │ │ │ ├── example_gl2.c │ │ │ │ │ ├── example_gl3.c │ │ │ │ │ ├── example_gles2.c │ │ │ │ │ ├── example_gles3.c │ │ │ │ │ ├── images.txt │ │ │ │ │ ├── images │ │ │ │ │ │ ├── image1.jpg │ │ │ │ │ │ ├── image10.jpg │ │ │ │ │ │ ├── image11.jpg │ │ │ │ │ │ ├── image12.jpg │ │ │ │ │ │ ├── image2.jpg │ │ │ │ │ │ ├── image3.jpg │ │ │ │ │ │ ├── image4.jpg │ │ │ │ │ │ ├── image5.jpg │ │ │ │ │ │ ├── image6.jpg │ │ │ │ │ │ ├── image7.jpg │ │ │ │ │ │ ├── image8.jpg │ │ │ │ │ │ └── image9.jpg │ │ │ │ │ ├── perf.c │ │ │ │ │ ├── perf.h │ │ │ │ │ ├── screenshot-01.png │ │ │ │ │ ├── screenshot-02.png │ │ │ │ │ └── stb_image_write.h │ │ │ │ ├── obsolete │ │ │ │ │ ├── nanovg_gl2.h │ │ │ │ │ ├── nanovg_gl3.h │ │ │ │ │ └── obsolete.md │ │ │ │ ├── premake4.lua │ │ │ │ └── src │ │ │ │ │ ├── fontstash.h │ │ │ │ │ ├── nanovg.c │ │ │ │ │ ├── nanovg.h │ │ │ │ │ ├── nanovg_gl.h │ │ │ │ │ ├── nanovg_gl_utils.h │ │ │ │ │ ├── stb_image.h │ │ │ │ │ └── stb_truetype.h │ │ │ ├── README.md │ │ │ ├── STB │ │ │ │ └── stb_textedit.h │ │ │ ├── build-igraphics-libs-mac.sh │ │ │ ├── build-igraphics-libs-win.bat │ │ │ ├── build-skia-ios.sh │ │ │ ├── build-skia-mac.sh │ │ │ ├── build-skia-win.sh │ │ │ ├── cairo │ │ │ │ ├── cairo-features.h │ │ │ │ ├── cairo.props │ │ │ │ ├── cairo.sln │ │ │ │ ├── pixman.props │ │ │ │ └── projects │ │ │ │ │ ├── cairo.vcxproj │ │ │ │ │ ├── cairo.vcxproj.filters │ │ │ │ │ ├── cairo.vcxproj.user │ │ │ │ │ ├── pixman.vcxproj │ │ │ │ │ └── pixman.vcxproj.filters │ │ │ ├── common-win.props │ │ │ ├── download-igraphics-libs.sh │ │ │ ├── freetype │ │ │ │ ├── freetype.sln │ │ │ │ └── projects │ │ │ │ │ ├── freetype.vcxproj │ │ │ │ │ ├── freetype.vcxproj.filters │ │ │ │ │ └── freetype.vcxproj.user │ │ │ ├── glad_GL2 │ │ │ │ ├── include │ │ │ │ │ ├── KHR │ │ │ │ │ │ └── khrplatform.h │ │ │ │ │ └── glad │ │ │ │ │ │ └── glad.h │ │ │ │ └── src │ │ │ │ │ └── glad.c │ │ │ ├── glad_GL3 │ │ │ │ ├── include │ │ │ │ │ ├── KHR │ │ │ │ │ │ └── khrplatform.h │ │ │ │ │ └── glad │ │ │ │ │ │ └── glad.h │ │ │ │ └── src │ │ │ │ │ └── glad.c │ │ │ ├── imgui │ │ │ │ └── README.txt │ │ │ ├── libpng │ │ │ │ ├── libpng.props │ │ │ │ ├── libpng.sln │ │ │ │ └── projects │ │ │ │ │ ├── libpng.vcxproj │ │ │ │ │ ├── libpng.vcxproj.filters │ │ │ │ │ ├── zlib.vcxproj │ │ │ │ │ └── zlib.vcxproj.filters │ │ │ ├── package-deps-src.sh │ │ │ ├── skia.patch │ │ │ └── yoga │ │ │ │ ├── LICENSE │ │ │ │ └── yoga │ │ │ │ ├── Bitfield.h │ │ │ │ ├── CompactValue.h │ │ │ │ ├── Utils.cpp │ │ │ │ ├── Utils.h │ │ │ │ ├── YGConfig.cpp │ │ │ │ ├── YGConfig.h │ │ │ │ ├── YGEnums.cpp │ │ │ │ ├── YGEnums.h │ │ │ │ ├── YGFloatOptional.h │ │ │ │ ├── YGLayout.cpp │ │ │ │ ├── YGLayout.h │ │ │ │ ├── YGMacros.h │ │ │ │ ├── YGNode.cpp │ │ │ │ ├── YGNode.h │ │ │ │ ├── YGNodePrint.cpp │ │ │ │ ├── YGNodePrint.h │ │ │ │ ├── YGStyle.cpp │ │ │ │ ├── YGStyle.h │ │ │ │ ├── YGValue.cpp │ │ │ │ ├── YGValue.h │ │ │ │ ├── Yoga-internal.h │ │ │ │ ├── Yoga.cpp │ │ │ │ ├── Yoga.h │ │ │ │ ├── event │ │ │ │ ├── event.cpp │ │ │ │ └── event.h │ │ │ │ ├── log.cpp │ │ │ │ └── log.h │ │ ├── IPlug │ │ │ ├── AAX_SDK │ │ │ │ └── README.md │ │ │ ├── README.md │ │ │ ├── RTAudio │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ChangeLog │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README.md │ │ │ │ ├── RtAudio.cpp │ │ │ │ ├── RtAudio.h │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── autogen.sh │ │ │ │ ├── cmake │ │ │ │ │ └── RtAudioConfigUninstall.cmake.in │ │ │ │ ├── config │ │ │ │ │ ├── ar-lib │ │ │ │ │ ├── compile │ │ │ │ │ ├── config.guess │ │ │ │ │ ├── config.sub │ │ │ │ │ ├── depcomp │ │ │ │ │ ├── install-sh │ │ │ │ │ ├── ltmain.sh │ │ │ │ │ ├── missing │ │ │ │ │ └── test-driver │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── contrib │ │ │ │ │ ├── go │ │ │ │ │ │ └── rtaudio │ │ │ │ │ │ │ ├── rtaudio.go │ │ │ │ │ │ │ ├── rtaudio_stub.cpp │ │ │ │ │ │ │ ├── rtaudio_stub.h │ │ │ │ │ │ │ └── rtaudio_test.go │ │ │ │ │ └── python │ │ │ │ │ │ └── pyrtaudio │ │ │ │ │ │ ├── PyRtAudioTest.py │ │ │ │ │ │ ├── readme │ │ │ │ │ │ ├── rtaudiomodule.cpp │ │ │ │ │ │ └── setup.py │ │ │ │ ├── doc │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── doxygen │ │ │ │ │ │ ├── Doxyfile.in │ │ │ │ │ │ ├── acknowledge.txt │ │ │ │ │ │ ├── apinotes.txt │ │ │ │ │ │ ├── compiling.txt │ │ │ │ │ │ ├── duplex.txt │ │ │ │ │ │ ├── error.txt │ │ │ │ │ │ ├── footer.html │ │ │ │ │ │ ├── header.html │ │ │ │ │ │ ├── license.txt │ │ │ │ │ │ ├── multi.txt │ │ │ │ │ │ ├── playback.txt │ │ │ │ │ │ ├── probe.txt │ │ │ │ │ │ ├── recording.txt │ │ │ │ │ │ ├── settings.txt │ │ │ │ │ │ └── tutorial.txt │ │ │ │ │ ├── html │ │ │ │ │ │ ├── RtAudio_8h.html │ │ │ │ │ │ ├── RtAudio_8h_source.html │ │ │ │ │ │ ├── acknowledge.html │ │ │ │ │ │ ├── annotated.html │ │ │ │ │ │ ├── apinotes.html │ │ │ │ │ │ ├── bc_s.png │ │ │ │ │ │ ├── bdwn.png │ │ │ │ │ │ ├── classRtAudio-members.html │ │ │ │ │ │ ├── classRtAudio.html │ │ │ │ │ │ ├── classRtAudioError-members.html │ │ │ │ │ │ ├── classRtAudioError.html │ │ │ │ │ │ ├── classes.html │ │ │ │ │ │ ├── closed.png │ │ │ │ │ │ ├── compiling.html │ │ │ │ │ │ ├── doxygen.css │ │ │ │ │ │ ├── doxygen.png │ │ │ │ │ │ ├── duplex.html │ │ │ │ │ │ ├── dynsections.js │ │ │ │ │ │ ├── errors.html │ │ │ │ │ │ ├── files.html │ │ │ │ │ │ ├── ftv2blank.png │ │ │ │ │ │ ├── ftv2cl.png │ │ │ │ │ │ ├── ftv2doc.png │ │ │ │ │ │ ├── ftv2folderclosed.png │ │ │ │ │ │ ├── ftv2folderopen.png │ │ │ │ │ │ ├── ftv2lastnode.png │ │ │ │ │ │ ├── ftv2link.png │ │ │ │ │ │ ├── ftv2mlastnode.png │ │ │ │ │ │ ├── ftv2mnode.png │ │ │ │ │ │ ├── ftv2mo.png │ │ │ │ │ │ ├── ftv2node.png │ │ │ │ │ │ ├── ftv2ns.png │ │ │ │ │ │ ├── ftv2plastnode.png │ │ │ │ │ │ ├── ftv2pnode.png │ │ │ │ │ │ ├── ftv2splitbar.png │ │ │ │ │ │ ├── ftv2vertline.png │ │ │ │ │ │ ├── functions.html │ │ │ │ │ │ ├── functions_enum.html │ │ │ │ │ │ ├── functions_eval.html │ │ │ │ │ │ ├── functions_func.html │ │ │ │ │ │ ├── functions_vars.html │ │ │ │ │ │ ├── globals.html │ │ │ │ │ │ ├── globals_enum.html │ │ │ │ │ │ ├── globals_eval.html │ │ │ │ │ │ ├── globals_func.html │ │ │ │ │ │ ├── globals_type.html │ │ │ │ │ │ ├── group__C-interface.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ ├── license.html │ │ │ │ │ │ ├── modules.html │ │ │ │ │ │ ├── multi.html │ │ │ │ │ │ ├── nav_f.png │ │ │ │ │ │ ├── nav_g.png │ │ │ │ │ │ ├── nav_h.png │ │ │ │ │ │ ├── open.png │ │ │ │ │ │ ├── pages.html │ │ │ │ │ │ ├── playback.html │ │ │ │ │ │ ├── probe.html │ │ │ │ │ │ ├── recording.html │ │ │ │ │ │ ├── rtaudio__c_8h.html │ │ │ │ │ │ ├── rtaudio__c_8h_source.html │ │ │ │ │ │ ├── settings.html │ │ │ │ │ │ ├── structRtAudio_1_1DeviceInfo-members.html │ │ │ │ │ │ ├── structRtAudio_1_1DeviceInfo.html │ │ │ │ │ │ ├── structRtAudio_1_1StreamOptions-members.html │ │ │ │ │ │ ├── structRtAudio_1_1StreamOptions.html │ │ │ │ │ │ ├── structRtAudio_1_1StreamParameters-members.html │ │ │ │ │ │ ├── structRtAudio_1_1StreamParameters.html │ │ │ │ │ │ ├── sync_off.png │ │ │ │ │ │ ├── sync_on.png │ │ │ │ │ │ ├── tab_a.png │ │ │ │ │ │ ├── tab_b.png │ │ │ │ │ │ ├── tab_h.png │ │ │ │ │ │ ├── tab_s.png │ │ │ │ │ │ └── tabs.css │ │ │ │ │ ├── images │ │ │ │ │ │ ├── ccrma.gif │ │ │ │ │ │ └── mcgill.gif │ │ │ │ │ └── release.txt │ │ │ │ ├── include │ │ │ │ │ ├── asio.cpp │ │ │ │ │ ├── asio.h │ │ │ │ │ ├── asiodrivers.cpp │ │ │ │ │ ├── asiodrivers.h │ │ │ │ │ ├── asiodrvr.h │ │ │ │ │ ├── asiolist.cpp │ │ │ │ │ ├── asiolist.h │ │ │ │ │ ├── asiosys.h │ │ │ │ │ ├── dsound.h │ │ │ │ │ ├── functiondiscoverykeys_devpkey.h │ │ │ │ │ ├── ginclude.h │ │ │ │ │ ├── iasiodrv.h │ │ │ │ │ ├── iasiothiscallresolver.cpp │ │ │ │ │ ├── iasiothiscallresolver.h │ │ │ │ │ └── soundcard.h │ │ │ │ ├── install.txt │ │ │ │ ├── rtaudio.pc.in │ │ │ │ ├── rtaudio_c.cpp │ │ │ │ ├── rtaudio_c.h │ │ │ │ └── tests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Debug │ │ │ │ │ └── .placeholder │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── Release │ │ │ │ │ └── .placeholder │ │ │ │ │ ├── Windows │ │ │ │ │ ├── Debug │ │ │ │ │ │ └── .placeholder │ │ │ │ │ ├── Release │ │ │ │ │ │ └── .placeholder │ │ │ │ │ ├── audioprobe.dsp │ │ │ │ │ ├── duplex.dsp │ │ │ │ │ ├── playraw.dsp │ │ │ │ │ ├── playsaw.dsp │ │ │ │ │ ├── record.dsp │ │ │ │ │ ├── rtaudio.dsw │ │ │ │ │ ├── testall.dsp │ │ │ │ │ └── teststops.dsp │ │ │ │ │ ├── apinames.cpp │ │ │ │ │ ├── audioprobe.cpp │ │ │ │ │ ├── duplex.cpp │ │ │ │ │ ├── playraw.cpp │ │ │ │ │ ├── playsaw.cpp │ │ │ │ │ ├── record.cpp │ │ │ │ │ ├── testall.cpp │ │ │ │ │ └── teststops.cpp │ │ │ ├── RTMidi │ │ │ │ ├── .travis.yml │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README.md │ │ │ │ ├── RtMidi.cpp │ │ │ │ ├── RtMidi.h │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── autogen.sh │ │ │ │ ├── cmake │ │ │ │ │ └── RtMidiConfigUninstall.cmake.in │ │ │ │ ├── config │ │ │ │ │ ├── ar-lib │ │ │ │ │ ├── compile │ │ │ │ │ ├── config.guess │ │ │ │ │ ├── config.sub │ │ │ │ │ ├── depcomp │ │ │ │ │ ├── install-sh │ │ │ │ │ ├── ltmain.sh │ │ │ │ │ ├── missing │ │ │ │ │ └── test-driver │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── contrib │ │ │ │ │ └── go │ │ │ │ │ │ └── rtmidi │ │ │ │ │ │ ├── rtmidi.go │ │ │ │ │ │ ├── rtmidi_stub.cpp │ │ │ │ │ │ ├── rtmidi_stub.h │ │ │ │ │ │ └── rtmidi_test.go │ │ │ │ ├── doc │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── doxygen │ │ │ │ │ │ ├── Doxyfile.in │ │ │ │ │ │ ├── footer.html │ │ │ │ │ │ ├── header.html │ │ │ │ │ │ ├── samples │ │ │ │ │ │ │ └── getting_started.cpp │ │ │ │ │ │ └── tutorial.txt │ │ │ │ │ ├── html │ │ │ │ │ │ ├── RtMidi_8h.html │ │ │ │ │ │ ├── RtMidi_8h_source.html │ │ │ │ │ │ ├── annotated.html │ │ │ │ │ │ ├── bc_s.png │ │ │ │ │ │ ├── bdwn.png │ │ │ │ │ │ ├── classMidiApi-members.html │ │ │ │ │ │ ├── classMidiApi.html │ │ │ │ │ │ ├── classMidiApi.png │ │ │ │ │ │ ├── classMidiInApi-members.html │ │ │ │ │ │ ├── classMidiInApi.html │ │ │ │ │ │ ├── classMidiInApi.png │ │ │ │ │ │ ├── classMidiOutApi-members.html │ │ │ │ │ │ ├── classMidiOutApi.html │ │ │ │ │ │ ├── classMidiOutApi.png │ │ │ │ │ │ ├── classRtMidi-members.html │ │ │ │ │ │ ├── classRtMidi.html │ │ │ │ │ │ ├── classRtMidi.png │ │ │ │ │ │ ├── classRtMidiError-members.html │ │ │ │ │ │ ├── classRtMidiError.html │ │ │ │ │ │ ├── classRtMidiError.png │ │ │ │ │ │ ├── classRtMidiIn-members.html │ │ │ │ │ │ ├── classRtMidiIn.html │ │ │ │ │ │ ├── classRtMidiIn.png │ │ │ │ │ │ ├── classRtMidiOut-members.html │ │ │ │ │ │ ├── classRtMidiOut.html │ │ │ │ │ │ ├── classRtMidiOut.png │ │ │ │ │ │ ├── classes.html │ │ │ │ │ │ ├── closed.png │ │ │ │ │ │ ├── doxygen.css │ │ │ │ │ │ ├── doxygen.png │ │ │ │ │ │ ├── dynsections.js │ │ │ │ │ │ ├── files.html │ │ │ │ │ │ ├── ftv2blank.png │ │ │ │ │ │ ├── ftv2cl.png │ │ │ │ │ │ ├── ftv2doc.png │ │ │ │ │ │ ├── ftv2folderclosed.png │ │ │ │ │ │ ├── ftv2folderopen.png │ │ │ │ │ │ ├── ftv2lastnode.png │ │ │ │ │ │ ├── ftv2link.png │ │ │ │ │ │ ├── ftv2mlastnode.png │ │ │ │ │ │ ├── ftv2mnode.png │ │ │ │ │ │ ├── ftv2mo.png │ │ │ │ │ │ ├── ftv2node.png │ │ │ │ │ │ ├── ftv2ns.png │ │ │ │ │ │ ├── ftv2plastnode.png │ │ │ │ │ │ ├── ftv2pnode.png │ │ │ │ │ │ ├── ftv2splitbar.png │ │ │ │ │ │ ├── ftv2vertline.png │ │ │ │ │ │ ├── functions.html │ │ │ │ │ │ ├── functions_enum.html │ │ │ │ │ │ ├── functions_eval.html │ │ │ │ │ │ ├── functions_func.html │ │ │ │ │ │ ├── functions_type.html │ │ │ │ │ │ ├── functions_vars.html │ │ │ │ │ │ ├── globals.html │ │ │ │ │ │ ├── globals_enum.html │ │ │ │ │ │ ├── globals_eval.html │ │ │ │ │ │ ├── globals_func.html │ │ │ │ │ │ ├── globals_type.html │ │ │ │ │ │ ├── group__C-interface.html │ │ │ │ │ │ ├── hierarchy.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ ├── modules.html │ │ │ │ │ │ ├── nav_f.png │ │ │ │ │ │ ├── nav_g.png │ │ │ │ │ │ ├── nav_h.png │ │ │ │ │ │ ├── open.png │ │ │ │ │ │ ├── rtmidi__c_8h.html │ │ │ │ │ │ ├── rtmidi__c_8h_source.html │ │ │ │ │ │ ├── structMidiInApi_1_1MidiMessage-members.html │ │ │ │ │ │ ├── structMidiInApi_1_1MidiMessage.html │ │ │ │ │ │ ├── structMidiInApi_1_1MidiQueue-members.html │ │ │ │ │ │ ├── structMidiInApi_1_1MidiQueue.html │ │ │ │ │ │ ├── structMidiInApi_1_1RtMidiInData-members.html │ │ │ │ │ │ ├── structMidiInApi_1_1RtMidiInData.html │ │ │ │ │ │ ├── sync_off.png │ │ │ │ │ │ ├── sync_on.png │ │ │ │ │ │ ├── tab_a.png │ │ │ │ │ │ ├── tab_b.png │ │ │ │ │ │ ├── tab_h.png │ │ │ │ │ │ ├── tab_s.png │ │ │ │ │ │ └── tabs.css │ │ │ │ │ ├── images │ │ │ │ │ │ ├── ccrma.gif │ │ │ │ │ │ └── mcgill.gif │ │ │ │ │ └── release.txt │ │ │ │ ├── msw │ │ │ │ │ ├── readme │ │ │ │ │ ├── rtmidilib.sln │ │ │ │ │ └── rtmidilib.vcproj │ │ │ │ ├── rtmidi-config.in │ │ │ │ ├── rtmidi.pc.in │ │ │ │ ├── rtmidi_c.cpp │ │ │ │ ├── rtmidi_c.h │ │ │ │ └── tests │ │ │ │ │ ├── Debug │ │ │ │ │ └── .placeholder │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── Release │ │ │ │ │ └── .placeholder │ │ │ │ │ ├── RtMidi.dsw │ │ │ │ │ ├── apinames.cpp │ │ │ │ │ ├── cmidiin.cpp │ │ │ │ │ ├── cmidiin.dsp │ │ │ │ │ ├── midiclock.cpp │ │ │ │ │ ├── midiout.cpp │ │ │ │ │ ├── midiout.dsp │ │ │ │ │ ├── midiprobe.cpp │ │ │ │ │ ├── midiprobe.dsp │ │ │ │ │ ├── qmidiin.cpp │ │ │ │ │ ├── qmidiin.dsp │ │ │ │ │ ├── sysextest.cpp │ │ │ │ │ └── sysextest.dsp │ │ │ ├── Reaper │ │ │ │ ├── README.txt │ │ │ │ ├── reaper_plugin.h │ │ │ │ ├── reaper_plugin_functions.h │ │ │ │ ├── video_frame.h │ │ │ │ └── video_processor.h │ │ │ ├── VST2_SDK │ │ │ │ └── README.md │ │ │ ├── VST3_SDK │ │ │ │ └── README.md │ │ │ └── download-iplug-libs.sh │ │ ├── README.md │ │ └── download-prebuilt-libs.sh │ ├── Documentation │ │ ├── Doxyfile │ │ ├── DoxygenLayout.xml │ │ ├── Papers │ │ │ ├── IFC2018.pdf │ │ │ └── WAC2018.pdf │ │ ├── README.md │ │ ├── codingstyle.md │ │ ├── header.html │ │ ├── img │ │ │ ├── become_a_patron_button.png │ │ │ ├── faustaward2018.png │ │ │ ├── join_slack_button.png │ │ │ └── paypal_donate_button.gif │ │ ├── quickstart.md │ │ ├── structure.md │ │ └── style.css │ ├── Examples │ │ ├── IPlugControls │ │ │ ├── .vscode │ │ │ │ └── c_cpp_properties.json │ │ │ ├── IPlugControls.RPP │ │ │ ├── IPlugControls.code-workspace │ │ │ ├── IPlugControls.cpp │ │ │ ├── IPlugControls.h │ │ │ ├── IPlugControls.sln │ │ │ ├── IPlugControls.xcworkspace │ │ │ │ ├── .xcodesamplecode.plist │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ ├── IconsFontaudio.h │ │ │ ├── IconsForkAwesome.h │ │ │ ├── README.md │ │ │ ├── config.h │ │ │ ├── config │ │ │ │ ├── IPlugControls-ios.xcconfig │ │ │ │ ├── IPlugControls-mac.xcconfig │ │ │ │ ├── IPlugControls-web.mk │ │ │ │ └── IPlugControls-win.props │ │ │ ├── installer │ │ │ │ ├── IPlugControls-installer-bg.png │ │ │ │ ├── IPlugControls.iss │ │ │ │ ├── IPlugControls.pkgproj │ │ │ │ ├── changelog.txt │ │ │ │ ├── intro.rtf │ │ │ │ ├── known-issues.txt │ │ │ │ ├── license.rtf │ │ │ │ ├── readme-osx.rtf │ │ │ │ └── readme-win.rtf │ │ │ ├── manual │ │ │ │ ├── IPlugControls manual.pdf │ │ │ │ └── IPlugControls manual.tex │ │ │ ├── projects │ │ │ │ ├── IPlugControls-aax.vcxproj │ │ │ │ ├── IPlugControls-aax.vcxproj.filters │ │ │ │ ├── IPlugControls-aax.vcxproj.user │ │ │ │ ├── IPlugControls-app.vcxproj │ │ │ │ ├── IPlugControls-app.vcxproj.filters │ │ │ │ ├── IPlugControls-app.vcxproj.user │ │ │ │ ├── IPlugControls-iOS.entitlements │ │ │ │ ├── IPlugControls-iOS.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── iOS-APP with AUv3.xcscheme │ │ │ │ │ │ ├── iOS-AUv3.xcscheme │ │ │ │ │ │ └── iOS-AUv3Framework.xcscheme │ │ │ │ ├── IPlugControls-macOS.entitlements │ │ │ │ ├── IPlugControls-macOS.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── All macOS.xcscheme │ │ │ │ │ │ ├── VST3 Controller Library.xcscheme │ │ │ │ │ │ ├── macOS-AAX.xcscheme │ │ │ │ │ │ ├── macOS-APP with AUv3.xcscheme │ │ │ │ │ │ ├── macOS-APP.xcscheme │ │ │ │ │ │ ├── macOS-AUv2.xcscheme │ │ │ │ │ │ ├── macOS-AUv3.xcscheme │ │ │ │ │ │ ├── macOS-AUv3Framework.xcscheme │ │ │ │ │ │ ├── macOS-VST2.xcscheme │ │ │ │ │ │ ├── macOS-VST3 (Distributed).xcscheme │ │ │ │ │ │ └── macOS-VST3.xcscheme │ │ │ │ ├── IPlugControls-vst2.vcxproj │ │ │ │ ├── IPlugControls-vst2.vcxproj.filters │ │ │ │ ├── IPlugControls-vst2.vcxproj.user │ │ │ │ ├── IPlugControls-vst3.vcxproj │ │ │ │ ├── IPlugControls-vst3.vcxproj.filters │ │ │ │ ├── IPlugControls-vst3.vcxproj.user │ │ │ │ ├── IPlugControls-wam-controller.mk │ │ │ │ └── IPlugControls-wam-processor.mk │ │ │ ├── resources │ │ │ │ ├── AUv3Framework.h │ │ │ │ ├── IPlugAUViewController.xib │ │ │ │ ├── IPlugControls-AAX-Info.plist │ │ │ │ ├── IPlugControls-AU-Info.plist │ │ │ │ ├── IPlugControls-Pages.xml │ │ │ │ ├── IPlugControls-VST2-Info.plist │ │ │ │ ├── IPlugControls-VST3-Info.plist │ │ │ │ ├── IPlugControls-iOS-AUv3-Info.plist │ │ │ │ ├── IPlugControls-iOS-AUv3Framework-Info.plist │ │ │ │ ├── IPlugControls-iOS-Info.plist │ │ │ │ ├── IPlugControls-iOS-MainInterface.storyboard │ │ │ │ ├── IPlugControls-iOS-launchScreen.storyboard │ │ │ │ ├── IPlugControls-iOS.storyboard │ │ │ │ ├── IPlugControls-macOS-AUv3-Info.plist │ │ │ │ ├── IPlugControls-macOS-AUv3Framework-Info.plist │ │ │ │ ├── IPlugControls-macOS-Info.plist │ │ │ │ ├── IPlugControls-macOS-MainMenu.xib │ │ │ │ ├── IPlugControls.icns │ │ │ │ ├── IPlugControls.ico │ │ │ │ ├── Images.xcassets │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── IPlugControlsiOSAppIcon.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Icon.png │ │ │ │ │ │ ├── icon_20pt.png │ │ │ │ │ │ ├── icon_20pt@2x.png │ │ │ │ │ │ ├── icon_20pt@3x.png │ │ │ │ │ │ ├── icon_29pt.png │ │ │ │ │ │ ├── icon_29pt@2x.png │ │ │ │ │ │ ├── icon_29pt@3x.png │ │ │ │ │ │ ├── icon_40pt.png │ │ │ │ │ │ ├── icon_40pt@2x.png │ │ │ │ │ │ ├── icon_40pt@3x.png │ │ │ │ │ │ ├── icon_60pt@2x.png │ │ │ │ │ │ ├── icon_60pt@3x.png │ │ │ │ │ │ ├── icon_76pt.png │ │ │ │ │ │ ├── icon_76pt@2x.png │ │ │ │ │ │ └── icon_83.5@2x.png │ │ │ │ ├── fonts │ │ │ │ │ ├── Roboto-Regular.ttf │ │ │ │ │ ├── fontaudio.ttf │ │ │ │ │ └── forkawesome-webfont.ttf │ │ │ │ ├── img │ │ │ │ │ ├── button.png │ │ │ │ │ ├── button@2x.png │ │ │ │ │ ├── font.png │ │ │ │ │ ├── font@2x.png │ │ │ │ │ ├── hslider-handle.svg │ │ │ │ │ ├── hslider-track.svg │ │ │ │ │ ├── knob-rotate.png │ │ │ │ │ ├── knob-rotate@2x.png │ │ │ │ │ ├── knob.png │ │ │ │ │ ├── knob@2x.png │ │ │ │ │ ├── slider-handle.png │ │ │ │ │ ├── slider-handle.svg │ │ │ │ │ ├── slider-handle@2x.png │ │ │ │ │ ├── slider-track.png │ │ │ │ │ ├── slider-track.svg │ │ │ │ │ ├── slider-track@2x.png │ │ │ │ │ ├── switch.png │ │ │ │ │ ├── switch@2x.png │ │ │ │ │ └── vector-knob.svg │ │ │ │ ├── main.rc │ │ │ │ ├── main.rc_mac_dlg │ │ │ │ ├── main.rc_mac_menu │ │ │ │ └── resource.h │ │ │ └── scripts │ │ │ │ ├── IBitmapSlider.knob │ │ │ │ ├── make_zip.py │ │ │ │ ├── makedist-mac.sh │ │ │ │ ├── makedist-web.sh │ │ │ │ ├── makedist-win.bat │ │ │ │ ├── postbuild-win.bat │ │ │ │ ├── prebuild-win.bat │ │ │ │ ├── prepare_resources-ios.py │ │ │ │ ├── prepare_resources-mac.py │ │ │ │ ├── prepare_resources-win.py │ │ │ │ ├── update_installer_version.py │ │ │ │ └── update_version.py │ │ ├── IPlugDrumSynth │ │ │ ├── .vscode │ │ │ │ └── c_cpp_properties.json │ │ │ ├── IPlugDrumSynth.RPP │ │ │ ├── IPlugDrumSynth.code-workspace │ │ │ ├── IPlugDrumSynth.cpp │ │ │ ├── IPlugDrumSynth.h │ │ │ ├── IPlugDrumSynth.sln │ │ │ ├── IPlugDrumSynth.xcworkspace │ │ │ │ ├── .xcodesamplecode.plist │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ ├── IPlugDrumSynth_DSP.h │ │ │ ├── README.md │ │ │ ├── config.h │ │ │ ├── config │ │ │ │ ├── IPlugDrumSynth-ios.xcconfig │ │ │ │ ├── IPlugDrumSynth-mac.xcconfig │ │ │ │ ├── IPlugDrumSynth-web.mk │ │ │ │ └── IPlugDrumSynth-win.props │ │ │ ├── installer │ │ │ │ ├── IPlugDrumSynth-installer-bg.png │ │ │ │ ├── IPlugDrumSynth.iss │ │ │ │ ├── IPlugDrumSynth.pkgproj │ │ │ │ ├── changelog.txt │ │ │ │ ├── intro.rtf │ │ │ │ ├── known-issues.txt │ │ │ │ ├── license.rtf │ │ │ │ ├── readme-osx.rtf │ │ │ │ └── readme-win.rtf │ │ │ ├── manual │ │ │ │ ├── IPlugDrumSynth manual.pdf │ │ │ │ └── IPlugDrumSynth manual.tex │ │ │ ├── projects │ │ │ │ ├── IPlugDrumSynth-aax.vcxproj │ │ │ │ ├── IPlugDrumSynth-aax.vcxproj.filters │ │ │ │ ├── IPlugDrumSynth-app.vcxproj │ │ │ │ ├── IPlugDrumSynth-app.vcxproj.filters │ │ │ │ ├── IPlugDrumSynth-app.vcxproj.user │ │ │ │ ├── IPlugDrumSynth-iOS.entitlements │ │ │ │ ├── IPlugDrumSynth-iOS.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── iOS-APP with AUv3.xcscheme │ │ │ │ │ │ ├── iOS-AUv3.xcscheme │ │ │ │ │ │ └── iOS-AUv3Framework.xcscheme │ │ │ │ ├── IPlugDrumSynth-macOS.entitlements │ │ │ │ ├── IPlugDrumSynth-macOS.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── All macOS.xcscheme │ │ │ │ │ │ ├── VST3 Controller Library.xcscheme │ │ │ │ │ │ ├── macOS-AAX.xcscheme │ │ │ │ │ │ ├── macOS-APP with AUv3.xcscheme │ │ │ │ │ │ ├── macOS-APP.xcscheme │ │ │ │ │ │ ├── macOS-AUv2.xcscheme │ │ │ │ │ │ ├── macOS-AUv3.xcscheme │ │ │ │ │ │ ├── macOS-AUv3Framework.xcscheme │ │ │ │ │ │ ├── macOS-VST2.xcscheme │ │ │ │ │ │ ├── macOS-VST3 (Distributed).xcscheme │ │ │ │ │ │ └── macOS-VST3.xcscheme │ │ │ │ ├── IPlugDrumSynth-vst2.vcxproj │ │ │ │ ├── IPlugDrumSynth-vst2.vcxproj.filters │ │ │ │ ├── IPlugDrumSynth-vst2.vcxproj.user │ │ │ │ ├── IPlugDrumSynth-vst3.vcxproj │ │ │ │ ├── IPlugDrumSynth-vst3.vcxproj.filters │ │ │ │ ├── IPlugDrumSynth-vst3.vcxproj.user │ │ │ │ ├── IPlugDrumSynth-wam-controller.mk │ │ │ │ └── IPlugDrumSynth-wam-processor.mk │ │ │ ├── resources │ │ │ │ ├── AUv3Framework.h │ │ │ │ ├── IPlugAUViewController.xib │ │ │ │ ├── IPlugDrumSynth-AAX-Info.plist │ │ │ │ ├── IPlugDrumSynth-AU-Info.plist │ │ │ │ ├── IPlugDrumSynth-Pages.xml │ │ │ │ ├── IPlugDrumSynth-VST2-Info.plist │ │ │ │ ├── IPlugDrumSynth-VST3-Info.plist │ │ │ │ ├── IPlugDrumSynth-iOS-AUv3-Info.plist │ │ │ │ ├── IPlugDrumSynth-iOS-AUv3Framework-Info.plist │ │ │ │ ├── IPlugDrumSynth-iOS-Info.plist │ │ │ │ ├── IPlugDrumSynth-iOS-MainInterface.storyboard │ │ │ │ ├── IPlugDrumSynth-iOS-launchScreen.storyboard │ │ │ │ ├── IPlugDrumSynth-iOS.storyboard │ │ │ │ ├── IPlugDrumSynth-macOS-AUv3-Info.plist │ │ │ │ ├── IPlugDrumSynth-macOS-AUv3Framework-Info.plist │ │ │ │ ├── IPlugDrumSynth-macOS-Info.plist │ │ │ │ ├── IPlugDrumSynth-macOS-MainMenu.xib │ │ │ │ ├── IPlugDrumSynth.icns │ │ │ │ ├── IPlugDrumSynth.ico │ │ │ │ ├── Images.xcassets │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── IPlugDrumSynthiOSAppIcon.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Icon.png │ │ │ │ │ │ ├── icon_20pt.png │ │ │ │ │ │ ├── icon_20pt@2x.png │ │ │ │ │ │ ├── icon_20pt@3x.png │ │ │ │ │ │ ├── icon_29pt.png │ │ │ │ │ │ ├── icon_29pt@2x.png │ │ │ │ │ │ ├── icon_29pt@3x.png │ │ │ │ │ │ ├── icon_40pt.png │ │ │ │ │ │ ├── icon_40pt@2x.png │ │ │ │ │ │ ├── icon_40pt@3x.png │ │ │ │ │ │ ├── icon_60pt@2x.png │ │ │ │ │ │ ├── icon_60pt@3x.png │ │ │ │ │ │ ├── icon_76pt.png │ │ │ │ │ │ ├── icon_76pt@2x.png │ │ │ │ │ │ └── icon_83.5@2x.png │ │ │ │ ├── fonts │ │ │ │ │ └── Roboto-Regular.ttf │ │ │ │ ├── main.rc │ │ │ │ ├── main.rc_mac_dlg │ │ │ │ ├── main.rc_mac_menu │ │ │ │ └── resource.h │ │ │ └── scripts │ │ │ │ ├── make_zip.py │ │ │ │ ├── makedist-mac.sh │ │ │ │ ├── makedist-web.sh │ │ │ │ ├── makedist-win.bat │ │ │ │ ├── postbuild-win.bat │ │ │ │ ├── prebuild-win.bat │ │ │ │ ├── prepare_resources-ios.py │ │ │ │ ├── prepare_resources-mac.py │ │ │ │ ├── prepare_resources-win.py │ │ │ │ ├── update_installer_version.py │ │ │ │ └── update_version.py │ │ ├── IPlugEffect │ │ │ ├── .vscode │ │ │ │ └── c_cpp_properties.json │ │ │ ├── IPlugEffect.RPP │ │ │ ├── IPlugEffect.code-workspace │ │ │ ├── IPlugEffect.cpp │ │ │ ├── IPlugEffect.h │ │ │ ├── IPlugEffect.sln │ │ │ ├── IPlugEffect.xcworkspace │ │ │ │ ├── .xcodesamplecode.plist │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ ├── README.md │ │ │ ├── config.h │ │ │ ├── config │ │ │ │ ├── IPlugEffect-ios.xcconfig │ │ │ │ ├── IPlugEffect-mac.xcconfig │ │ │ │ ├── IPlugEffect-web.mk │ │ │ │ └── IPlugEffect-win.props │ │ │ ├── installer │ │ │ │ ├── IPlugEffect-installer-bg.png │ │ │ │ ├── IPlugEffect.iss │ │ │ │ ├── IPlugEffect.pkgproj │ │ │ │ ├── changelog.txt │ │ │ │ ├── intro.rtf │ │ │ │ ├── known-issues.txt │ │ │ │ ├── license.rtf │ │ │ │ ├── readme-osx.rtf │ │ │ │ └── readme-win.rtf │ │ │ ├── manual │ │ │ │ ├── IPlugEffect manual.pdf │ │ │ │ └── IPlugEffect manual.tex │ │ │ ├── projects │ │ │ │ ├── IPlugEffect-aax.vcxproj │ │ │ │ ├── IPlugEffect-aax.vcxproj.filters │ │ │ │ ├── IPlugEffect-aax.vcxproj.user │ │ │ │ ├── IPlugEffect-app.vcxproj │ │ │ │ ├── IPlugEffect-app.vcxproj.filters │ │ │ │ ├── IPlugEffect-app.vcxproj.user │ │ │ │ ├── IPlugEffect-iOS.entitlements │ │ │ │ ├── IPlugEffect-iOS.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── iOS-APP with AUv3.xcscheme │ │ │ │ │ │ ├── iOS-AUv3.xcscheme │ │ │ │ │ │ └── iOS-AUv3Framework.xcscheme │ │ │ │ ├── IPlugEffect-macOS.entitlements │ │ │ │ ├── IPlugEffect-macOS.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── All macOS.xcscheme │ │ │ │ │ │ ├── VST3 Controller Library.xcscheme │ │ │ │ │ │ ├── macOS-AAX.xcscheme │ │ │ │ │ │ ├── macOS-APP with AUv3.xcscheme │ │ │ │ │ │ ├── macOS-APP.xcscheme │ │ │ │ │ │ ├── macOS-AUv2.xcscheme │ │ │ │ │ │ ├── macOS-AUv3.xcscheme │ │ │ │ │ │ ├── macOS-AUv3Framework.xcscheme │ │ │ │ │ │ ├── macOS-VST2.xcscheme │ │ │ │ │ │ ├── macOS-VST3 (Distributed).xcscheme │ │ │ │ │ │ └── macOS-VST3.xcscheme │ │ │ │ ├── IPlugEffect-vst2.vcxproj │ │ │ │ ├── IPlugEffect-vst2.vcxproj.filters │ │ │ │ ├── IPlugEffect-vst2.vcxproj.user │ │ │ │ ├── IPlugEffect-vst3.vcxproj │ │ │ │ ├── IPlugEffect-vst3.vcxproj.filters │ │ │ │ ├── IPlugEffect-vst3.vcxproj.user │ │ │ │ ├── IPlugEffect-wam-controller.mk │ │ │ │ └── IPlugEffect-wam-processor.mk │ │ │ ├── resources │ │ │ │ ├── AUv3Framework.h │ │ │ │ ├── IPlugAUViewController.xib │ │ │ │ ├── IPlugEffect-AAX-Info.plist │ │ │ │ ├── IPlugEffect-AU-Info.plist │ │ │ │ ├── IPlugEffect-Pages.xml │ │ │ │ ├── IPlugEffect-VST2-Info.plist │ │ │ │ ├── IPlugEffect-VST3-Info.plist │ │ │ │ ├── IPlugEffect-iOS-AUv3-Info.plist │ │ │ │ ├── IPlugEffect-iOS-AUv3Framework-Info.plist │ │ │ │ ├── IPlugEffect-iOS-Info.plist │ │ │ │ ├── IPlugEffect-iOS-LaunchScreen.storyboard │ │ │ │ ├── IPlugEffect-iOS-MainInterface.storyboard │ │ │ │ ├── IPlugEffect-iOS.storyboard │ │ │ │ ├── IPlugEffect-macOS-AUv3-Info.plist │ │ │ │ ├── IPlugEffect-macOS-AUv3Framework-Info.plist │ │ │ │ ├── IPlugEffect-macOS-Info.plist │ │ │ │ ├── IPlugEffect-macOS-MainMenu.xib │ │ │ │ ├── IPlugEffect.icns │ │ │ │ ├── IPlugEffect.ico │ │ │ │ ├── Images.xcassets │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── IPlugEffectiOSAppIcon.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Icon.png │ │ │ │ │ │ ├── icon_20pt.png │ │ │ │ │ │ ├── icon_20pt@2x.png │ │ │ │ │ │ ├── icon_20pt@3x.png │ │ │ │ │ │ ├── icon_29pt.png │ │ │ │ │ │ ├── icon_29pt@2x.png │ │ │ │ │ │ ├── icon_29pt@3x.png │ │ │ │ │ │ ├── icon_40pt.png │ │ │ │ │ │ ├── icon_40pt@2x.png │ │ │ │ │ │ ├── icon_40pt@3x.png │ │ │ │ │ │ ├── icon_60pt@2x.png │ │ │ │ │ │ ├── icon_60pt@3x.png │ │ │ │ │ │ ├── icon_76pt.png │ │ │ │ │ │ ├── icon_76pt@2x.png │ │ │ │ │ │ └── icon_83.5@2x.png │ │ │ │ ├── fonts │ │ │ │ │ └── Roboto-Regular.ttf │ │ │ │ ├── main.rc │ │ │ │ ├── main.rc_mac_dlg │ │ │ │ ├── main.rc_mac_menu │ │ │ │ └── resource.h │ │ │ └── scripts │ │ │ │ ├── make_zip.py │ │ │ │ ├── makedist-mac.sh │ │ │ │ ├── makedist-web.sh │ │ │ │ ├── makedist-win.bat │ │ │ │ ├── postbuild-win.bat │ │ │ │ ├── prebuild-win.bat │ │ │ │ ├── prepare_resources-ios.py │ │ │ │ ├── prepare_resources-mac.py │ │ │ │ ├── prepare_resources-win.py │ │ │ │ ├── update_installer_version.py │ │ │ │ └── update_version.py │ │ ├── IPlugFaustDSP │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ └── c_cpp_properties.json │ │ │ ├── FaustCode.hpp │ │ │ ├── IPlugFaustDSP.RPP │ │ │ ├── IPlugFaustDSP.code-workspace │ │ │ ├── IPlugFaustDSP.cpp │ │ │ ├── IPlugFaustDSP.dsp │ │ │ ├── IPlugFaustDSP.h │ │ │ ├── IPlugFaustDSP.sln │ │ │ ├── IPlugFaustDSP.xcworkspace │ │ │ │ ├── .xcodesamplecode.plist │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ ├── README.md │ │ │ ├── config.h │ │ │ ├── config │ │ │ │ ├── IPlugFaustDSP-ios.xcconfig │ │ │ │ ├── IPlugFaustDSP-mac.xcconfig │ │ │ │ ├── IPlugFaustDSP-web.mk │ │ │ │ └── IPlugFaustDSP-win.props │ │ │ ├── installer │ │ │ │ ├── IPlugFaustDSP-installer-bg.png │ │ │ │ ├── IPlugFaustDSP.iss │ │ │ │ ├── IPlugFaustDSP.pkgproj │ │ │ │ ├── changelog.txt │ │ │ │ ├── intro.rtf │ │ │ │ ├── known-issues.txt │ │ │ │ ├── license.rtf │ │ │ │ ├── readme-osx.rtf │ │ │ │ └── readme-win.rtf │ │ │ ├── manual │ │ │ │ ├── IPlugFaustDSP manual.pdf │ │ │ │ └── IPlugFaustDSP manual.tex │ │ │ ├── projects │ │ │ │ ├── IPlugFaustDSP-aax.vcxproj │ │ │ │ ├── IPlugFaustDSP-aax.vcxproj.filters │ │ │ │ ├── IPlugFaustDSP-app.vcxproj │ │ │ │ ├── IPlugFaustDSP-app.vcxproj.filters │ │ │ │ ├── IPlugFaustDSP-app.vcxproj.user │ │ │ │ ├── IPlugFaustDSP-iOS.entitlements │ │ │ │ ├── IPlugFaustDSP-iOS.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── iOS-APP with AUv3.xcscheme │ │ │ │ │ │ ├── iOS-AUv3.xcscheme │ │ │ │ │ │ └── iOS-AUv3Framework.xcscheme │ │ │ │ ├── IPlugFaustDSP-macOS.entitlements │ │ │ │ ├── IPlugFaustDSP-macOS.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── All macOS.xcscheme │ │ │ │ │ │ ├── VST3 Controller Library.xcscheme │ │ │ │ │ │ ├── macOS-AAX.xcscheme │ │ │ │ │ │ ├── macOS-APP with AUv3.xcscheme │ │ │ │ │ │ ├── macOS-APP.xcscheme │ │ │ │ │ │ ├── macOS-AUv2.xcscheme │ │ │ │ │ │ ├── macOS-AUv3.xcscheme │ │ │ │ │ │ ├── macOS-AUv3Framework.xcscheme │ │ │ │ │ │ ├── macOS-VST2.xcscheme │ │ │ │ │ │ ├── macOS-VST3 (Distributed).xcscheme │ │ │ │ │ │ └── macOS-VST3.xcscheme │ │ │ │ ├── IPlugFaustDSP-vst2.vcxproj │ │ │ │ ├── IPlugFaustDSP-vst2.vcxproj.filters │ │ │ │ ├── IPlugFaustDSP-vst2.vcxproj.user │ │ │ │ ├── IPlugFaustDSP-vst3.vcxproj │ │ │ │ ├── IPlugFaustDSP-vst3.vcxproj.filters │ │ │ │ ├── IPlugFaustDSP-vst3.vcxproj.user │ │ │ │ ├── IPlugFaustDSP-wam-controller.mk │ │ │ │ └── IPlugFaustDSP-wam-processor.mk │ │ │ ├── resources │ │ │ │ ├── AUv3Framework.h │ │ │ │ ├── IPlugAUViewController.xib │ │ │ │ ├── IPlugFaustDSP-AAX-Info.plist │ │ │ │ ├── IPlugFaustDSP-AU-Info.plist │ │ │ │ ├── IPlugFaustDSP-Pages.xml │ │ │ │ ├── IPlugFaustDSP-VST2-Info.plist │ │ │ │ ├── IPlugFaustDSP-VST3-Info.plist │ │ │ │ ├── IPlugFaustDSP-iOS-AUv3-Info.plist │ │ │ │ ├── IPlugFaustDSP-iOS-AUv3Framework-Info.plist │ │ │ │ ├── IPlugFaustDSP-iOS-Info.plist │ │ │ │ ├── IPlugFaustDSP-iOS-MainInterface.storyboard │ │ │ │ ├── IPlugFaustDSP-iOS-launchScreen.storyboard │ │ │ │ ├── IPlugFaustDSP-iOS.storyboard │ │ │ │ ├── IPlugFaustDSP-macOS-AUv3-Info.plist │ │ │ │ ├── IPlugFaustDSP-macOS-AUv3Framework-Info.plist │ │ │ │ ├── IPlugFaustDSP-macOS-Info.plist │ │ │ │ ├── IPlugFaustDSP-macOS-MainMenu.xib │ │ │ │ ├── IPlugFaustDSP.icns │ │ │ │ ├── IPlugFaustDSP.ico │ │ │ │ ├── Images.xcassets │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── IPlugFaustDSPiOSAppIcon.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Icon.png │ │ │ │ │ │ ├── icon_20pt.png │ │ │ │ │ │ ├── icon_20pt@2x.png │ │ │ │ │ │ ├── icon_20pt@3x.png │ │ │ │ │ │ ├── icon_29pt.png │ │ │ │ │ │ ├── icon_29pt@2x.png │ │ │ │ │ │ ├── icon_29pt@3x.png │ │ │ │ │ │ ├── icon_40pt.png │ │ │ │ │ │ ├── icon_40pt@2x.png │ │ │ │ │ │ ├── icon_40pt@3x.png │ │ │ │ │ │ ├── icon_60pt@2x.png │ │ │ │ │ │ ├── icon_60pt@3x.png │ │ │ │ │ │ ├── icon_76pt.png │ │ │ │ │ │ ├── icon_76pt@2x.png │ │ │ │ │ │ └── icon_83.5@2x.png │ │ │ │ ├── fonts │ │ │ │ │ └── Roboto-Regular.ttf │ │ │ │ ├── main.rc │ │ │ │ ├── main.rc_mac_dlg │ │ │ │ ├── main.rc_mac_menu │ │ │ │ └── resource.h │ │ │ └── scripts │ │ │ │ ├── make_zip.py │ │ │ │ ├── makedist-mac.sh │ │ │ │ ├── makedist-web.sh │ │ │ │ ├── makedist-win.bat │ │ │ │ ├── postbuild-win.bat │ │ │ │ ├── prebuild-win.bat │ │ │ │ ├── prepare_resources-ios.py │ │ │ │ ├── prepare_resources-mac.py │ │ │ │ ├── prepare_resources-win.py │ │ │ │ ├── update_installer_version.py │ │ │ │ └── update_version.py │ │ ├── IPlugInstrument │ │ │ ├── .vscode │ │ │ │ └── c_cpp_properties.json │ │ │ ├── IPlugInstrument.RPP │ │ │ ├── IPlugInstrument.code-workspace │ │ │ ├── IPlugInstrument.cpp │ │ │ ├── IPlugInstrument.h │ │ │ ├── IPlugInstrument.sln │ │ │ ├── IPlugInstrument.xcworkspace │ │ │ │ ├── .xcodesamplecode.plist │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ ├── IPlugInstrument_DSP.h │ │ │ ├── README.md │ │ │ ├── config.h │ │ │ ├── config │ │ │ │ ├── IPlugInstrument-ios.xcconfig │ │ │ │ ├── IPlugInstrument-mac.xcconfig │ │ │ │ ├── IPlugInstrument-web.mk │ │ │ │ └── IPlugInstrument-win.props │ │ │ ├── installer │ │ │ │ ├── IPlugInstrument-installer-bg.png │ │ │ │ ├── IPlugInstrument.iss │ │ │ │ ├── IPlugInstrument.pkgproj │ │ │ │ ├── changelog.txt │ │ │ │ ├── intro.rtf │ │ │ │ ├── known-issues.txt │ │ │ │ ├── license.rtf │ │ │ │ ├── readme-osx.rtf │ │ │ │ └── readme-win.rtf │ │ │ ├── manual │ │ │ │ ├── IPlugInstrument manual.pdf │ │ │ │ └── IPlugInstrument manual.tex │ │ │ ├── projects │ │ │ │ ├── IPlugInstrument-aax.vcxproj │ │ │ │ ├── IPlugInstrument-aax.vcxproj.filters │ │ │ │ ├── IPlugInstrument-aax.vcxproj.user │ │ │ │ ├── IPlugInstrument-app.vcxproj │ │ │ │ ├── IPlugInstrument-app.vcxproj.filters │ │ │ │ ├── IPlugInstrument-app.vcxproj.user │ │ │ │ ├── IPlugInstrument-iOS.entitlements │ │ │ │ ├── IPlugInstrument-iOS.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── iOS-APP with AUv3.xcscheme │ │ │ │ │ │ ├── iOS-AUv3.xcscheme │ │ │ │ │ │ └── iOS-AUv3Framework.xcscheme │ │ │ │ ├── IPlugInstrument-macOS.entitlements │ │ │ │ ├── IPlugInstrument-macOS.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── All macOS.xcscheme │ │ │ │ │ │ ├── VST3 Controller Library.xcscheme │ │ │ │ │ │ ├── macOS-AAX.xcscheme │ │ │ │ │ │ ├── macOS-APP with AUv3.xcscheme │ │ │ │ │ │ ├── macOS-APP.xcscheme │ │ │ │ │ │ ├── macOS-AUv2.xcscheme │ │ │ │ │ │ ├── macOS-AUv3.xcscheme │ │ │ │ │ │ ├── macOS-AUv3Framework.xcscheme │ │ │ │ │ │ ├── macOS-VST2.xcscheme │ │ │ │ │ │ ├── macOS-VST3 (Distributed).xcscheme │ │ │ │ │ │ └── macOS-VST3.xcscheme │ │ │ │ ├── IPlugInstrument-vst2.vcxproj │ │ │ │ ├── IPlugInstrument-vst2.vcxproj.filters │ │ │ │ ├── IPlugInstrument-vst2.vcxproj.user │ │ │ │ ├── IPlugInstrument-vst3.vcxproj │ │ │ │ ├── IPlugInstrument-vst3.vcxproj.filters │ │ │ │ ├── IPlugInstrument-vst3.vcxproj.user │ │ │ │ ├── IPlugInstrument-wam-controller.mk │ │ │ │ └── IPlugInstrument-wam-processor.mk │ │ │ ├── resources │ │ │ │ ├── AUv3Framework.h │ │ │ │ ├── IPlugAUViewController.xib │ │ │ │ ├── IPlugInstrument-AAX-Info.plist │ │ │ │ ├── IPlugInstrument-AU-Info.plist │ │ │ │ ├── IPlugInstrument-Pages.xml │ │ │ │ ├── IPlugInstrument-VST2-Info.plist │ │ │ │ ├── IPlugInstrument-VST3-Info.plist │ │ │ │ ├── IPlugInstrument-iOS-AUv3-Info.plist │ │ │ │ ├── IPlugInstrument-iOS-AUv3Framework-Info.plist │ │ │ │ ├── IPlugInstrument-iOS-Info.plist │ │ │ │ ├── IPlugInstrument-iOS-MainInterface.storyboard │ │ │ │ ├── IPlugInstrument-iOS-launchScreen.storyboard │ │ │ │ ├── IPlugInstrument-iOS.storyboard │ │ │ │ ├── IPlugInstrument-macOS-AUv3-Info.plist │ │ │ │ ├── IPlugInstrument-macOS-AUv3Framework-Info.plist │ │ │ │ ├── IPlugInstrument-macOS-Info.plist │ │ │ │ ├── IPlugInstrument-macOS-MainMenu.xib │ │ │ │ ├── IPlugInstrument.icns │ │ │ │ ├── IPlugInstrument.ico │ │ │ │ ├── Images.xcassets │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── IPlugInstrumentiOSAppIcon.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Icon.png │ │ │ │ │ │ ├── icon_20pt.png │ │ │ │ │ │ ├── icon_20pt@2x.png │ │ │ │ │ │ ├── icon_20pt@3x.png │ │ │ │ │ │ ├── icon_29pt.png │ │ │ │ │ │ ├── icon_29pt@2x.png │ │ │ │ │ │ ├── icon_29pt@3x.png │ │ │ │ │ │ ├── icon_40pt.png │ │ │ │ │ │ ├── icon_40pt@2x.png │ │ │ │ │ │ ├── icon_40pt@3x.png │ │ │ │ │ │ ├── icon_60pt@2x.png │ │ │ │ │ │ ├── icon_60pt@3x.png │ │ │ │ │ │ ├── icon_76pt.png │ │ │ │ │ │ ├── icon_76pt@2x.png │ │ │ │ │ │ └── icon_83.5@2x.png │ │ │ │ ├── fonts │ │ │ │ │ └── Roboto-Regular.ttf │ │ │ │ ├── main.rc │ │ │ │ ├── main.rc_mac_dlg │ │ │ │ ├── main.rc_mac_menu │ │ │ │ └── resource.h │ │ │ └── scripts │ │ │ │ ├── make_zip.py │ │ │ │ ├── makedist-mac.sh │ │ │ │ ├── makedist-web.sh │ │ │ │ ├── makedist-win.bat │ │ │ │ ├── postbuild-win.bat │ │ │ │ ├── prebuild-win.bat │ │ │ │ ├── prepare_resources-ios.py │ │ │ │ ├── prepare_resources-mac.py │ │ │ │ ├── prepare_resources-win.py │ │ │ │ ├── update_installer_version.py │ │ │ │ └── update_version.py │ │ ├── IPlugMidiEffect │ │ │ ├── .vscode │ │ │ │ └── c_cpp_properties.json │ │ │ ├── IPlugMidiEffect.RPP │ │ │ ├── IPlugMidiEffect.code-workspace │ │ │ ├── IPlugMidiEffect.cpp │ │ │ ├── IPlugMidiEffect.h │ │ │ ├── IPlugMidiEffect.sln │ │ │ ├── IPlugMidiEffect.xcworkspace │ │ │ │ ├── .xcodesamplecode.plist │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ ├── README.md │ │ │ ├── config.h │ │ │ ├── config │ │ │ │ ├── IPlugMidiEffect-ios.xcconfig │ │ │ │ ├── IPlugMidiEffect-mac.xcconfig │ │ │ │ ├── IPlugMidiEffect-web.mk │ │ │ │ └── IPlugMidiEffect-win.props │ │ │ ├── installer │ │ │ │ ├── IPlugMidiEffect-installer-bg.png │ │ │ │ ├── IPlugMidiEffect.iss │ │ │ │ ├── IPlugMidiEffect.pkgproj │ │ │ │ ├── changelog.txt │ │ │ │ ├── intro.rtf │ │ │ │ ├── known-issues.txt │ │ │ │ ├── license.rtf │ │ │ │ ├── readme-osx.rtf │ │ │ │ └── readme-win.rtf │ │ │ ├── manual │ │ │ │ ├── IPlugMidiEffect manual.pdf │ │ │ │ └── IPlugMidiEffect manual.tex │ │ │ ├── projects │ │ │ │ ├── IPlugMidiEffect-aax.vcxproj │ │ │ │ ├── IPlugMidiEffect-aax.vcxproj.filters │ │ │ │ ├── IPlugMidiEffect-app.vcxproj │ │ │ │ ├── IPlugMidiEffect-app.vcxproj.filters │ │ │ │ ├── IPlugMidiEffect-app.vcxproj.user │ │ │ │ ├── IPlugMidiEffect-iOS.entitlements │ │ │ │ ├── IPlugMidiEffect-iOS.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── iOS-APP with AUv3.xcscheme │ │ │ │ │ │ ├── iOS-AUv3.xcscheme │ │ │ │ │ │ └── iOS-AUv3Framework.xcscheme │ │ │ │ ├── IPlugMidiEffect-macOS.entitlements │ │ │ │ ├── IPlugMidiEffect-macOS.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── All macOS.xcscheme │ │ │ │ │ │ ├── VST3 Controller Library.xcscheme │ │ │ │ │ │ ├── macOS-AAX.xcscheme │ │ │ │ │ │ ├── macOS-APP with AUv3.xcscheme │ │ │ │ │ │ ├── macOS-APP.xcscheme │ │ │ │ │ │ ├── macOS-AUv2.xcscheme │ │ │ │ │ │ ├── macOS-AUv3.xcscheme │ │ │ │ │ │ ├── macOS-AUv3Framework.xcscheme │ │ │ │ │ │ ├── macOS-VST2.xcscheme │ │ │ │ │ │ ├── macOS-VST3 (Distributed).xcscheme │ │ │ │ │ │ └── macOS-VST3.xcscheme │ │ │ │ ├── IPlugMidiEffect-vst2.vcxproj │ │ │ │ ├── IPlugMidiEffect-vst2.vcxproj.filters │ │ │ │ ├── IPlugMidiEffect-vst2.vcxproj.user │ │ │ │ ├── IPlugMidiEffect-vst3.vcxproj │ │ │ │ ├── IPlugMidiEffect-vst3.vcxproj.filters │ │ │ │ ├── IPlugMidiEffect-vst3.vcxproj.user │ │ │ │ ├── IPlugMidiEffect-wam-controller.mk │ │ │ │ └── IPlugMidiEffect-wam-processor.mk │ │ │ ├── resources │ │ │ │ ├── AUv3Framework.h │ │ │ │ ├── IPlugAUViewController.xib │ │ │ │ ├── IPlugMidiEffect-AAX-Info.plist │ │ │ │ ├── IPlugMidiEffect-AU-Info.plist │ │ │ │ ├── IPlugMidiEffect-Pages.xml │ │ │ │ ├── IPlugMidiEffect-VST2-Info.plist │ │ │ │ ├── IPlugMidiEffect-VST3-Info.plist │ │ │ │ ├── IPlugMidiEffect-iOS-AUv3-Info.plist │ │ │ │ ├── IPlugMidiEffect-iOS-AUv3Framework-Info.plist │ │ │ │ ├── IPlugMidiEffect-iOS-Info.plist │ │ │ │ ├── IPlugMidiEffect-iOS-MainInterface.storyboard │ │ │ │ ├── IPlugMidiEffect-iOS-launchScreen.storyboard │ │ │ │ ├── IPlugMidiEffect-iOS.storyboard │ │ │ │ ├── IPlugMidiEffect-macOS-AUv3-Info.plist │ │ │ │ ├── IPlugMidiEffect-macOS-AUv3Framework-Info.plist │ │ │ │ ├── IPlugMidiEffect-macOS-Info.plist │ │ │ │ ├── IPlugMidiEffect-macOS-MainMenu.xib │ │ │ │ ├── IPlugMidiEffect.icns │ │ │ │ ├── IPlugMidiEffect.ico │ │ │ │ ├── Images.xcassets │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── IPlugMidiEffectiOSAppIcon.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Icon.png │ │ │ │ │ │ ├── icon_20pt.png │ │ │ │ │ │ ├── icon_20pt@2x.png │ │ │ │ │ │ ├── icon_20pt@3x.png │ │ │ │ │ │ ├── icon_29pt.png │ │ │ │ │ │ ├── icon_29pt@2x.png │ │ │ │ │ │ ├── icon_29pt@3x.png │ │ │ │ │ │ ├── icon_40pt.png │ │ │ │ │ │ ├── icon_40pt@2x.png │ │ │ │ │ │ ├── icon_40pt@3x.png │ │ │ │ │ │ ├── icon_60pt@2x.png │ │ │ │ │ │ ├── icon_60pt@3x.png │ │ │ │ │ │ ├── icon_76pt.png │ │ │ │ │ │ ├── icon_76pt@2x.png │ │ │ │ │ │ └── icon_83.5@2x.png │ │ │ │ ├── fonts │ │ │ │ │ └── Roboto-Regular.ttf │ │ │ │ ├── main.rc │ │ │ │ ├── main.rc_mac_dlg │ │ │ │ ├── main.rc_mac_menu │ │ │ │ └── resource.h │ │ │ └── scripts │ │ │ │ ├── make_zip.py │ │ │ │ ├── makedist-mac.sh │ │ │ │ ├── makedist-web.sh │ │ │ │ ├── makedist-win.bat │ │ │ │ ├── postbuild-win.bat │ │ │ │ ├── prebuild-win.bat │ │ │ │ ├── prepare_resources-ios.py │ │ │ │ ├── prepare_resources-mac.py │ │ │ │ ├── prepare_resources-win.py │ │ │ │ ├── update_installer_version.py │ │ │ │ └── update_version.py │ │ ├── IPlugReaperExtension │ │ │ ├── .gitignore │ │ │ ├── IPlugReaperExtension.RPP │ │ │ ├── IPlugReaperExtension.cpp │ │ │ ├── IPlugReaperExtension.h │ │ │ ├── IPlugReaperExtension.sln │ │ │ ├── IPlugReaperExtension.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ ├── config.h │ │ │ ├── config │ │ │ │ ├── IPlugReaperExtension.props │ │ │ │ └── IPlugReaperExtension.xcconfig │ │ │ ├── installer │ │ │ │ ├── IPlugReaperExtension-installer-bg.png │ │ │ │ ├── IPlugReaperExtension.iss │ │ │ │ ├── IPlugReaperExtension.pkgproj │ │ │ │ ├── changelog.txt │ │ │ │ ├── intro.rtf │ │ │ │ ├── known-issues.txt │ │ │ │ ├── license.rtf │ │ │ │ ├── readme-osx.rtf │ │ │ │ └── readme-win.rtf │ │ │ ├── manual │ │ │ │ ├── IPlugReaperExtension manual.pdf │ │ │ │ └── IPlugReaperExtension manual.tex │ │ │ ├── projects │ │ │ │ ├── IPlugReaperExtension-macOS.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ └── IPlugReaperExtension.xcscheme │ │ │ │ ├── IPlugReaperExtension.vcxproj │ │ │ │ ├── IPlugReaperExtension.vcxproj.filters │ │ │ │ └── IPlugReaperExtension.vcxproj.user │ │ │ ├── resources │ │ │ │ ├── fonts │ │ │ │ │ └── Roboto-Regular.ttf │ │ │ │ ├── main.rc │ │ │ │ ├── main.rc_mac_dlg │ │ │ │ ├── main.rc_mac_menu │ │ │ │ └── resource.h │ │ │ └── scripts │ │ │ │ ├── make_zip.py │ │ │ │ ├── makedist-mac.sh │ │ │ │ ├── makedist-win.bat │ │ │ │ ├── postbuild-win.bat │ │ │ │ ├── prebuild-win.bat │ │ │ │ ├── update_installer_version.py │ │ │ │ └── update_version.py │ │ ├── IPlugResponsiveUI │ │ │ ├── .vscode │ │ │ │ └── c_cpp_properties.json │ │ │ ├── IPlugResponsiveUI.RPP │ │ │ ├── IPlugResponsiveUI.code-workspace │ │ │ ├── IPlugResponsiveUI.cpp │ │ │ ├── IPlugResponsiveUI.h │ │ │ ├── IPlugResponsiveUI.sln │ │ │ ├── IPlugResponsiveUI.xcworkspace │ │ │ │ ├── .xcodesamplecode.plist │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ ├── README.md │ │ │ ├── config.h │ │ │ ├── config │ │ │ │ ├── IPlugResponsiveUI-ios.xcconfig │ │ │ │ ├── IPlugResponsiveUI-mac.xcconfig │ │ │ │ ├── IPlugResponsiveUI-web.mk │ │ │ │ └── IPlugResponsiveUI-win.props │ │ │ ├── installer │ │ │ │ ├── IPlugResponsiveUI-installer-bg.png │ │ │ │ ├── IPlugResponsiveUI.iss │ │ │ │ ├── IPlugResponsiveUI.pkgproj │ │ │ │ ├── changelog.txt │ │ │ │ ├── intro.rtf │ │ │ │ ├── known-issues.txt │ │ │ │ ├── license.rtf │ │ │ │ ├── readme-osx.rtf │ │ │ │ └── readme-win.rtf │ │ │ ├── manual │ │ │ │ ├── IPlugResponsiveUI manual.pdf │ │ │ │ └── IPlugResponsiveUI manual.tex │ │ │ ├── projects │ │ │ │ ├── IPlugResponsiveUI-aax.vcxproj │ │ │ │ ├── IPlugResponsiveUI-aax.vcxproj.filters │ │ │ │ ├── IPlugResponsiveUI-aax.vcxproj.user │ │ │ │ ├── IPlugResponsiveUI-app.vcxproj │ │ │ │ ├── IPlugResponsiveUI-app.vcxproj.filters │ │ │ │ ├── IPlugResponsiveUI-app.vcxproj.user │ │ │ │ ├── IPlugResponsiveUI-iOS.entitlements │ │ │ │ ├── IPlugResponsiveUI-iOS.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── iOS-APP with AUv3.xcscheme │ │ │ │ │ │ ├── iOS-AUv3.xcscheme │ │ │ │ │ │ └── iOS-AUv3Framework.xcscheme │ │ │ │ ├── IPlugResponsiveUI-macOS.entitlements │ │ │ │ ├── IPlugResponsiveUI-macOS.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── All macOS.xcscheme │ │ │ │ │ │ ├── VST3 Controller Library.xcscheme │ │ │ │ │ │ ├── macOS-AAX.xcscheme │ │ │ │ │ │ ├── macOS-APP with AUv3.xcscheme │ │ │ │ │ │ ├── macOS-APP.xcscheme │ │ │ │ │ │ ├── macOS-AUv2.xcscheme │ │ │ │ │ │ ├── macOS-AUv3.xcscheme │ │ │ │ │ │ ├── macOS-AUv3Framework.xcscheme │ │ │ │ │ │ ├── macOS-VST2.xcscheme │ │ │ │ │ │ ├── macOS-VST3 (Distributed).xcscheme │ │ │ │ │ │ └── macOS-VST3.xcscheme │ │ │ │ ├── IPlugResponsiveUI-vst2.vcxproj │ │ │ │ ├── IPlugResponsiveUI-vst2.vcxproj.filters │ │ │ │ ├── IPlugResponsiveUI-vst2.vcxproj.user │ │ │ │ ├── IPlugResponsiveUI-vst3.vcxproj │ │ │ │ ├── IPlugResponsiveUI-vst3.vcxproj.filters │ │ │ │ ├── IPlugResponsiveUI-vst3.vcxproj.user │ │ │ │ ├── IPlugResponsiveUI-wam-controller.mk │ │ │ │ └── IPlugResponsiveUI-wam-processor.mk │ │ │ ├── resources │ │ │ │ ├── AUv3Framework.h │ │ │ │ ├── IPlugAUViewController.xib │ │ │ │ ├── IPlugResponsiveUI-AAX-Info.plist │ │ │ │ ├── IPlugResponsiveUI-AU-Info.plist │ │ │ │ ├── IPlugResponsiveUI-Pages.xml │ │ │ │ ├── IPlugResponsiveUI-VST2-Info.plist │ │ │ │ ├── IPlugResponsiveUI-VST3-Info.plist │ │ │ │ ├── IPlugResponsiveUI-iOS-AUv3-Info.plist │ │ │ │ ├── IPlugResponsiveUI-iOS-AUv3Framework-Info.plist │ │ │ │ ├── IPlugResponsiveUI-iOS-Info.plist │ │ │ │ ├── IPlugResponsiveUI-iOS-LaunchScreen.storyboard │ │ │ │ ├── IPlugResponsiveUI-iOS-MainInterface.storyboard │ │ │ │ ├── IPlugResponsiveUI-iOS.storyboard │ │ │ │ ├── IPlugResponsiveUI-macOS-AUv3-Info.plist │ │ │ │ ├── IPlugResponsiveUI-macOS-AUv3Framework-Info.plist │ │ │ │ ├── IPlugResponsiveUI-macOS-Info.plist │ │ │ │ ├── IPlugResponsiveUI-macOS-MainMenu.xib │ │ │ │ ├── IPlugResponsiveUI.icns │ │ │ │ ├── IPlugResponsiveUI.ico │ │ │ │ ├── Images.xcassets │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── IPlugResponsiveUIiOSAppIcon.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Icon.png │ │ │ │ │ │ ├── icon_20pt.png │ │ │ │ │ │ ├── icon_20pt@2x.png │ │ │ │ │ │ ├── icon_20pt@3x.png │ │ │ │ │ │ ├── icon_29pt.png │ │ │ │ │ │ ├── icon_29pt@2x.png │ │ │ │ │ │ ├── icon_29pt@3x.png │ │ │ │ │ │ ├── icon_40pt.png │ │ │ │ │ │ ├── icon_40pt@2x.png │ │ │ │ │ │ ├── icon_40pt@3x.png │ │ │ │ │ │ ├── icon_60pt@2x.png │ │ │ │ │ │ ├── icon_60pt@3x.png │ │ │ │ │ │ ├── icon_76pt.png │ │ │ │ │ │ ├── icon_76pt@2x.png │ │ │ │ │ │ └── icon_83.5@2x.png │ │ │ │ ├── fonts │ │ │ │ │ └── Roboto-Regular.ttf │ │ │ │ ├── main.rc │ │ │ │ ├── main.rc_mac_dlg │ │ │ │ ├── main.rc_mac_menu │ │ │ │ └── resource.h │ │ │ └── scripts │ │ │ │ ├── make_zip.py │ │ │ │ ├── makedist-mac.sh │ │ │ │ ├── makedist-web.sh │ │ │ │ ├── makedist-win.bat │ │ │ │ ├── postbuild-win.bat │ │ │ │ ├── prebuild-win.bat │ │ │ │ ├── prepare_resources-ios.py │ │ │ │ ├── prepare_resources-mac.py │ │ │ │ ├── prepare_resources-win.py │ │ │ │ ├── update_installer_version.py │ │ │ │ └── update_version.py │ │ ├── IPlugSideChain │ │ │ ├── .vscode │ │ │ │ └── c_cpp_properties.json │ │ │ ├── IPlugSideChain.RPP │ │ │ ├── IPlugSideChain.code-workspace │ │ │ ├── IPlugSideChain.cpp │ │ │ ├── IPlugSideChain.h │ │ │ ├── IPlugSideChain.sln │ │ │ ├── IPlugSideChain.xcworkspace │ │ │ │ ├── .xcodesamplecode.plist │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ ├── README.md │ │ │ ├── config.h │ │ │ ├── config │ │ │ │ ├── IPlugSideChain-ios.xcconfig │ │ │ │ ├── IPlugSideChain-mac.xcconfig │ │ │ │ ├── IPlugSideChain-web.mk │ │ │ │ └── IPlugSideChain-win.props │ │ │ ├── installer │ │ │ │ ├── IPlugSideChain-installer-bg.png │ │ │ │ ├── IPlugSideChain.iss │ │ │ │ ├── IPlugSideChain.pkgproj │ │ │ │ ├── changelog.txt │ │ │ │ ├── intro.rtf │ │ │ │ ├── known-issues.txt │ │ │ │ ├── license.rtf │ │ │ │ ├── readme-osx.rtf │ │ │ │ └── readme-win.rtf │ │ │ ├── manual │ │ │ │ ├── IPlugSideChain manual.pdf │ │ │ │ └── IPlugSideChain manual.tex │ │ │ ├── projects │ │ │ │ ├── IPlugSideChain-aax.vcxproj │ │ │ │ ├── IPlugSideChain-aax.vcxproj.filters │ │ │ │ ├── IPlugSideChain-app.vcxproj │ │ │ │ ├── IPlugSideChain-app.vcxproj.filters │ │ │ │ ├── IPlugSideChain-app.vcxproj.user │ │ │ │ ├── IPlugSideChain-iOS.entitlements │ │ │ │ ├── IPlugSideChain-iOS.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── iOS-APP with AUv3.xcscheme │ │ │ │ │ │ ├── iOS-AUv3.xcscheme │ │ │ │ │ │ └── iOS-AUv3Framework.xcscheme │ │ │ │ ├── IPlugSideChain-macOS.entitlements │ │ │ │ ├── IPlugSideChain-macOS.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── All macOS.xcscheme │ │ │ │ │ │ ├── VST3 Controller Library.xcscheme │ │ │ │ │ │ ├── macOS-AAX.xcscheme │ │ │ │ │ │ ├── macOS-APP with AUv3.xcscheme │ │ │ │ │ │ ├── macOS-APP.xcscheme │ │ │ │ │ │ ├── macOS-AUv2.xcscheme │ │ │ │ │ │ ├── macOS-AUv3.xcscheme │ │ │ │ │ │ ├── macOS-AUv3Framework.xcscheme │ │ │ │ │ │ ├── macOS-VST2.xcscheme │ │ │ │ │ │ ├── macOS-VST3 (Distributed).xcscheme │ │ │ │ │ │ └── macOS-VST3.xcscheme │ │ │ │ ├── IPlugSideChain-vst2.vcxproj │ │ │ │ ├── IPlugSideChain-vst2.vcxproj.filters │ │ │ │ ├── IPlugSideChain-vst2.vcxproj.user │ │ │ │ ├── IPlugSideChain-vst3.vcxproj │ │ │ │ ├── IPlugSideChain-vst3.vcxproj.filters │ │ │ │ ├── IPlugSideChain-vst3.vcxproj.user │ │ │ │ ├── IPlugSideChain-wam-controller.mk │ │ │ │ └── IPlugSideChain-wam-processor.mk │ │ │ ├── resources │ │ │ │ ├── AUv3Framework.h │ │ │ │ ├── IPlugAUViewController.xib │ │ │ │ ├── IPlugSideChain-AAX-Info.plist │ │ │ │ ├── IPlugSideChain-AU-Info.plist │ │ │ │ ├── IPlugSideChain-Pages.xml │ │ │ │ ├── IPlugSideChain-VST2-Info.plist │ │ │ │ ├── IPlugSideChain-VST3-Info.plist │ │ │ │ ├── IPlugSideChain-iOS-AUv3-Info.plist │ │ │ │ ├── IPlugSideChain-iOS-AUv3Framework-Info.plist │ │ │ │ ├── IPlugSideChain-iOS-Info.plist │ │ │ │ ├── IPlugSideChain-iOS-LaunchScreen.storyboard │ │ │ │ ├── IPlugSideChain-iOS-MainInterface.storyboard │ │ │ │ ├── IPlugSideChain-iOS.storyboard │ │ │ │ ├── IPlugSideChain-macOS-AUv3-Info.plist │ │ │ │ ├── IPlugSideChain-macOS-AUv3Framework-Info.plist │ │ │ │ ├── IPlugSideChain-macOS-Info.plist │ │ │ │ ├── IPlugSideChain-macOS-MainMenu.xib │ │ │ │ ├── IPlugSideChain.icns │ │ │ │ ├── IPlugSideChain.ico │ │ │ │ ├── Images.xcassets │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── IPlugSideChainiOSAppIcon.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Icon.png │ │ │ │ │ │ ├── icon_20pt.png │ │ │ │ │ │ ├── icon_20pt@2x.png │ │ │ │ │ │ ├── icon_20pt@3x.png │ │ │ │ │ │ ├── icon_29pt.png │ │ │ │ │ │ ├── icon_29pt@2x.png │ │ │ │ │ │ ├── icon_29pt@3x.png │ │ │ │ │ │ ├── icon_40pt.png │ │ │ │ │ │ ├── icon_40pt@2x.png │ │ │ │ │ │ ├── icon_40pt@3x.png │ │ │ │ │ │ ├── icon_60pt@2x.png │ │ │ │ │ │ ├── icon_60pt@3x.png │ │ │ │ │ │ ├── icon_76pt.png │ │ │ │ │ │ ├── icon_76pt@2x.png │ │ │ │ │ │ └── icon_83.5@2x.png │ │ │ │ ├── fonts │ │ │ │ │ └── Roboto-Regular.ttf │ │ │ │ ├── main.rc │ │ │ │ ├── main.rc_mac_dlg │ │ │ │ ├── main.rc_mac_menu │ │ │ │ └── resource.h │ │ │ └── scripts │ │ │ │ ├── make_zip.py │ │ │ │ ├── makedist-mac.sh │ │ │ │ ├── makedist-web.sh │ │ │ │ ├── makedist-win.bat │ │ │ │ ├── postbuild-win.bat │ │ │ │ ├── prebuild-win.bat │ │ │ │ ├── prepare_resources-ios.py │ │ │ │ ├── prepare_resources-mac.py │ │ │ │ ├── prepare_resources-win.py │ │ │ │ ├── update_installer_version.py │ │ │ │ └── update_version.py │ │ ├── IPlugSurroundEffect │ │ │ ├── .vscode │ │ │ │ └── c_cpp_properties.json │ │ │ ├── IPlugSurroundEffect.RPP │ │ │ ├── IPlugSurroundEffect.code-workspace │ │ │ ├── IPlugSurroundEffect.cpp │ │ │ ├── IPlugSurroundEffect.h │ │ │ ├── IPlugSurroundEffect.sln │ │ │ ├── IPlugSurroundEffect.xcworkspace │ │ │ │ ├── .xcodesamplecode.plist │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ ├── README.md │ │ │ ├── config.h │ │ │ ├── config │ │ │ │ ├── IPlugSurroundEffect-ios.xcconfig │ │ │ │ ├── IPlugSurroundEffect-mac.xcconfig │ │ │ │ ├── IPlugSurroundEffect-web.mk │ │ │ │ └── IPlugSurroundEffect-win.props │ │ │ ├── installer │ │ │ │ ├── IPlugSurroundEffect-installer-bg.png │ │ │ │ ├── IPlugSurroundEffect.iss │ │ │ │ ├── IPlugSurroundEffect.pkgproj │ │ │ │ ├── changelog.txt │ │ │ │ ├── intro.rtf │ │ │ │ ├── known-issues.txt │ │ │ │ ├── license.rtf │ │ │ │ ├── readme-osx.rtf │ │ │ │ └── readme-win.rtf │ │ │ ├── manual │ │ │ │ ├── IPlugSurroundEffect manual.pdf │ │ │ │ └── IPlugSurroundEffect manual.tex │ │ │ ├── projects │ │ │ │ ├── IPlugSurroundEffect-aax.vcxproj │ │ │ │ ├── IPlugSurroundEffect-aax.vcxproj.filters │ │ │ │ ├── IPlugSurroundEffect-app.vcxproj │ │ │ │ ├── IPlugSurroundEffect-app.vcxproj.filters │ │ │ │ ├── IPlugSurroundEffect-app.vcxproj.user │ │ │ │ ├── IPlugSurroundEffect-iOS.entitlements │ │ │ │ ├── IPlugSurroundEffect-iOS.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── iOS-APP with AUv3.xcscheme │ │ │ │ │ │ ├── iOS-AUv3.xcscheme │ │ │ │ │ │ └── iOS-AUv3Framework.xcscheme │ │ │ │ ├── IPlugSurroundEffect-macOS.entitlements │ │ │ │ ├── IPlugSurroundEffect-macOS.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── All macOS.xcscheme │ │ │ │ │ │ ├── VST3 Controller Library.xcscheme │ │ │ │ │ │ ├── macOS-AAX.xcscheme │ │ │ │ │ │ ├── macOS-APP with AUv3.xcscheme │ │ │ │ │ │ ├── macOS-APP.xcscheme │ │ │ │ │ │ ├── macOS-AUv2.xcscheme │ │ │ │ │ │ ├── macOS-AUv3.xcscheme │ │ │ │ │ │ ├── macOS-AUv3Framework.xcscheme │ │ │ │ │ │ ├── macOS-VST2.xcscheme │ │ │ │ │ │ ├── macOS-VST3 (Distributed).xcscheme │ │ │ │ │ │ └── macOS-VST3.xcscheme │ │ │ │ ├── IPlugSurroundEffect-vst2.vcxproj │ │ │ │ ├── IPlugSurroundEffect-vst2.vcxproj.filters │ │ │ │ ├── IPlugSurroundEffect-vst2.vcxproj.user │ │ │ │ ├── IPlugSurroundEffect-vst3.vcxproj │ │ │ │ ├── IPlugSurroundEffect-vst3.vcxproj.filters │ │ │ │ ├── IPlugSurroundEffect-vst3.vcxproj.user │ │ │ │ ├── IPlugSurroundEffect-wam-controller.mk │ │ │ │ └── IPlugSurroundEffect-wam-processor.mk │ │ │ ├── resources │ │ │ │ ├── AUv3Framework.h │ │ │ │ ├── IPlugAUViewController.xib │ │ │ │ ├── IPlugSurroundEffect-AAX-Info.plist │ │ │ │ ├── IPlugSurroundEffect-AU-Info.plist │ │ │ │ ├── IPlugSurroundEffect-Pages.xml │ │ │ │ ├── IPlugSurroundEffect-VST2-Info.plist │ │ │ │ ├── IPlugSurroundEffect-VST3-Info.plist │ │ │ │ ├── IPlugSurroundEffect-iOS-AUv3-Info.plist │ │ │ │ ├── IPlugSurroundEffect-iOS-AUv3Framework-Info.plist │ │ │ │ ├── IPlugSurroundEffect-iOS-Info.plist │ │ │ │ ├── IPlugSurroundEffect-iOS-LaunchScreen.storyboard │ │ │ │ ├── IPlugSurroundEffect-iOS-MainInterface.storyboard │ │ │ │ ├── IPlugSurroundEffect-iOS.storyboard │ │ │ │ ├── IPlugSurroundEffect-macOS-AUv3-Info.plist │ │ │ │ ├── IPlugSurroundEffect-macOS-AUv3Framework-Info.plist │ │ │ │ ├── IPlugSurroundEffect-macOS-Info.plist │ │ │ │ ├── IPlugSurroundEffect-macOS-MainMenu.xib │ │ │ │ ├── IPlugSurroundEffect.icns │ │ │ │ ├── IPlugSurroundEffect.ico │ │ │ │ ├── Images.xcassets │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── IPlugSurroundEffectiOSAppIcon.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Icon.png │ │ │ │ │ │ ├── icon_20pt.png │ │ │ │ │ │ ├── icon_20pt@2x.png │ │ │ │ │ │ ├── icon_20pt@3x.png │ │ │ │ │ │ ├── icon_29pt.png │ │ │ │ │ │ ├── icon_29pt@2x.png │ │ │ │ │ │ ├── icon_29pt@3x.png │ │ │ │ │ │ ├── icon_40pt.png │ │ │ │ │ │ ├── icon_40pt@2x.png │ │ │ │ │ │ ├── icon_40pt@3x.png │ │ │ │ │ │ ├── icon_60pt@2x.png │ │ │ │ │ │ ├── icon_60pt@3x.png │ │ │ │ │ │ ├── icon_76pt.png │ │ │ │ │ │ ├── icon_76pt@2x.png │ │ │ │ │ │ └── icon_83.5@2x.png │ │ │ │ ├── fonts │ │ │ │ │ └── Roboto-Regular.ttf │ │ │ │ ├── main.rc │ │ │ │ ├── main.rc_mac_dlg │ │ │ │ ├── main.rc_mac_menu │ │ │ │ └── resource.h │ │ │ └── scripts │ │ │ │ ├── make_zip.py │ │ │ │ ├── makedist-mac.sh │ │ │ │ ├── makedist-web.sh │ │ │ │ ├── makedist-win.bat │ │ │ │ ├── postbuild-win.bat │ │ │ │ ├── prebuild-win.bat │ │ │ │ ├── prepare_resources-ios.py │ │ │ │ ├── prepare_resources-mac.py │ │ │ │ ├── prepare_resources-win.py │ │ │ │ ├── update_installer_version.py │ │ │ │ └── update_version.py │ │ ├── IPlugSwift │ │ │ ├── .vscode │ │ │ │ └── c_cpp_properties.json │ │ │ ├── IPlugSwift.code-workspace │ │ │ ├── IPlugSwift.h │ │ │ ├── IPlugSwift.mm │ │ │ ├── IPlugSwift.xcworkspace │ │ │ │ ├── .xcodesamplecode.plist │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ ├── IPlugSwiftSharedConstants.h │ │ │ ├── IPlugSwiftViewController.swift │ │ │ ├── Podfile │ │ │ ├── README.md │ │ │ ├── config.h │ │ │ ├── config │ │ │ │ └── IPlugSwift-ios.xcconfig │ │ │ ├── projects │ │ │ │ ├── Bridging-Header.h │ │ │ │ ├── IPlugSwift-iOS.entitlements │ │ │ │ └── IPlugSwift-iOS.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ ├── iOS-APP with AUv3.xcscheme │ │ │ │ │ └── iOS-AUv3.xcscheme │ │ │ ├── resources │ │ │ │ ├── IPlugSwift-iOS-AUv3-Info.plist │ │ │ │ ├── IPlugSwift-iOS-Info.plist │ │ │ │ ├── IPlugSwift-iOS-LaunchScreen.storyboard │ │ │ │ ├── IPlugSwift-iOS-MainInterface.storyboard │ │ │ │ ├── IPlugSwift-iOS.storyboard │ │ │ │ └── Images.xcassets │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── IPlugSwiftiOSAppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon.png │ │ │ │ │ ├── icon_20pt.png │ │ │ │ │ ├── icon_20pt@2x.png │ │ │ │ │ ├── icon_20pt@3x.png │ │ │ │ │ ├── icon_29pt.png │ │ │ │ │ ├── icon_29pt@2x.png │ │ │ │ │ ├── icon_29pt@3x.png │ │ │ │ │ ├── icon_40pt.png │ │ │ │ │ ├── icon_40pt@2x.png │ │ │ │ │ ├── icon_40pt@3x.png │ │ │ │ │ ├── icon_60pt@2x.png │ │ │ │ │ ├── icon_60pt@3x.png │ │ │ │ │ ├── icon_76pt.png │ │ │ │ │ ├── icon_76pt@2x.png │ │ │ │ │ └── icon_83.5@2x.png │ │ │ └── scripts │ │ │ │ └── prepare_resources-ios.py │ │ ├── IPlugWebUI │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ └── c_cpp_properties.json │ │ │ ├── IPlugWebUI.RPP │ │ │ ├── IPlugWebUI.code-workspace │ │ │ ├── IPlugWebUI.cpp │ │ │ ├── IPlugWebUI.h │ │ │ ├── IPlugWebUI.sln │ │ │ ├── IPlugWebUI.xcworkspace │ │ │ │ ├── .xcodesamplecode.plist │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ ├── README.md │ │ │ ├── config.h │ │ │ ├── config │ │ │ │ ├── IPlugWebUI-ios.xcconfig │ │ │ │ ├── IPlugWebUI-mac.xcconfig │ │ │ │ ├── IPlugWebUI-web.mk │ │ │ │ └── IPlugWebUI-win.props │ │ │ ├── installer │ │ │ │ ├── IPlugWebUI-installer-bg.png │ │ │ │ ├── IPlugWebUI.iss │ │ │ │ ├── IPlugWebUI.pkgproj │ │ │ │ ├── changelog.txt │ │ │ │ ├── intro.rtf │ │ │ │ ├── known-issues.txt │ │ │ │ ├── license.rtf │ │ │ │ ├── readme-osx.rtf │ │ │ │ └── readme-win.rtf │ │ │ ├── manual │ │ │ │ ├── IPlugWebUI manual.pdf │ │ │ │ └── IPlugWebUI manual.tex │ │ │ ├── projects │ │ │ │ ├── IPlugWebUI-aax.vcxproj │ │ │ │ ├── IPlugWebUI-aax.vcxproj.filters │ │ │ │ ├── IPlugWebUI-aax.vcxproj.user │ │ │ │ ├── IPlugWebUI-app.vcxproj │ │ │ │ ├── IPlugWebUI-app.vcxproj.filters │ │ │ │ ├── IPlugWebUI-app.vcxproj.user │ │ │ │ ├── IPlugWebUI-iOS.entitlements │ │ │ │ ├── IPlugWebUI-iOS.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── iOS-APP with AUv3.xcscheme │ │ │ │ │ │ ├── iOS-AUv3.xcscheme │ │ │ │ │ │ └── iOS-AUv3Framework.xcscheme │ │ │ │ ├── IPlugWebUI-macOS.entitlements │ │ │ │ ├── IPlugWebUI-macOS.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── All macOS.xcscheme │ │ │ │ │ │ ├── VST3 Controller Library.xcscheme │ │ │ │ │ │ ├── macOS-AAX.xcscheme │ │ │ │ │ │ ├── macOS-APP with AUv3.xcscheme │ │ │ │ │ │ ├── macOS-APP.xcscheme │ │ │ │ │ │ ├── macOS-AUv2.xcscheme │ │ │ │ │ │ ├── macOS-AUv3.xcscheme │ │ │ │ │ │ ├── macOS-AUv3Framework.xcscheme │ │ │ │ │ │ ├── macOS-VST2.xcscheme │ │ │ │ │ │ ├── macOS-VST3 (Distributed).xcscheme │ │ │ │ │ │ └── macOS-VST3.xcscheme │ │ │ │ ├── IPlugWebUI-vst2.vcxproj │ │ │ │ ├── IPlugWebUI-vst2.vcxproj.filters │ │ │ │ ├── IPlugWebUI-vst2.vcxproj.user │ │ │ │ ├── IPlugWebUI-vst3.vcxproj │ │ │ │ ├── IPlugWebUI-vst3.vcxproj.filters │ │ │ │ ├── IPlugWebUI-vst3.vcxproj.user │ │ │ │ ├── IPlugWebUI-wam-controller.mk │ │ │ │ ├── IPlugWebUI-wam-processor.mk │ │ │ │ └── packages.config │ │ │ ├── resources │ │ │ │ ├── AUv3Framework.h │ │ │ │ ├── IPlugAUViewController.xib │ │ │ │ ├── IPlugWebUI-AAX-Info.plist │ │ │ │ ├── IPlugWebUI-AU-Info.plist │ │ │ │ ├── IPlugWebUI-Pages.xml │ │ │ │ ├── IPlugWebUI-VST2-Info.plist │ │ │ │ ├── IPlugWebUI-VST3-Info.plist │ │ │ │ ├── IPlugWebUI-iOS-AUv3-Info.plist │ │ │ │ ├── IPlugWebUI-iOS-AUv3Framework-Info.plist │ │ │ │ ├── IPlugWebUI-iOS-Info.plist │ │ │ │ ├── IPlugWebUI-iOS-LaunchScreen.storyboard │ │ │ │ ├── IPlugWebUI-iOS-MainInterface.storyboard │ │ │ │ ├── IPlugWebUI-iOS.storyboard │ │ │ │ ├── IPlugWebUI-macOS-AUv3-Info.plist │ │ │ │ ├── IPlugWebUI-macOS-AUv3Framework-Info.plist │ │ │ │ ├── IPlugWebUI-macOS-Info.plist │ │ │ │ ├── IPlugWebUI-macOS-MainMenu.xib │ │ │ │ ├── IPlugWebUI.icns │ │ │ │ ├── IPlugWebUI.ico │ │ │ │ ├── Images.xcassets │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── IPlugWebUIiOSAppIcon.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Icon.png │ │ │ │ │ │ ├── icon_20pt.png │ │ │ │ │ │ ├── icon_20pt@2x.png │ │ │ │ │ │ ├── icon_20pt@3x.png │ │ │ │ │ │ ├── icon_29pt.png │ │ │ │ │ │ ├── icon_29pt@2x.png │ │ │ │ │ │ ├── icon_29pt@3x.png │ │ │ │ │ │ ├── icon_40pt.png │ │ │ │ │ │ ├── icon_40pt@2x.png │ │ │ │ │ │ ├── icon_40pt@3x.png │ │ │ │ │ │ ├── icon_60pt@2x.png │ │ │ │ │ │ ├── icon_60pt@3x.png │ │ │ │ │ │ ├── icon_76pt.png │ │ │ │ │ │ ├── icon_76pt@2x.png │ │ │ │ │ │ └── icon_83.5@2x.png │ │ │ │ ├── main.rc │ │ │ │ ├── main.rc_mac_dlg │ │ │ │ ├── main.rc_mac_menu │ │ │ │ ├── resource.h │ │ │ │ └── web │ │ │ │ │ ├── index.html │ │ │ │ │ ├── script.js │ │ │ │ │ └── webaudio-controls.js │ │ │ └── scripts │ │ │ │ ├── make_zip.py │ │ │ │ ├── makedist-mac.sh │ │ │ │ ├── makedist-web.sh │ │ │ │ ├── makedist-win.bat │ │ │ │ ├── postbuild-win.bat │ │ │ │ ├── prebuild-win.bat │ │ │ │ ├── prepare_resources-ios.py │ │ │ │ ├── prepare_resources-mac.py │ │ │ │ ├── prepare_resources-win.py │ │ │ │ ├── update_installer_version.py │ │ │ │ └── update_version.py │ │ ├── README.md │ │ ├── buildall-mac.sh │ │ ├── buildall-win.bat │ │ ├── cleanup-mac.sh │ │ ├── duplicate.py │ │ └── gitignore_template │ ├── IGraphics │ │ ├── Controls │ │ │ ├── IBubbleControl.h │ │ │ ├── IColorPickerControl.h │ │ │ ├── IControls.cpp │ │ │ ├── IControls.h │ │ │ ├── ICornerResizerControl.h │ │ │ ├── IFPSDisplayControl.h │ │ │ ├── ILEDControl.h │ │ │ ├── IPopupMenuControl.cpp │ │ │ ├── IPopupMenuControl.h │ │ │ ├── IRTTextControl.h │ │ │ ├── ITextEntryControl.cpp │ │ │ ├── ITextEntryControl.h │ │ │ ├── IVDisplayControl.h │ │ │ ├── IVKeyboardControl.h │ │ │ ├── IVMeterControl.h │ │ │ ├── IVMultiSliderControl.h │ │ │ ├── IVNumberBoxControl.h │ │ │ ├── IVPresetManagerControl.h │ │ │ ├── IVScopeControl.h │ │ │ ├── IWebViewControl.h │ │ │ └── Test │ │ │ │ ├── TestAnimationControl.h │ │ │ │ ├── TestArcControl.h │ │ │ │ ├── TestBezierControl.h │ │ │ │ ├── TestBlendControl.h │ │ │ │ ├── TestColorControl.h │ │ │ │ ├── TestControls.h │ │ │ │ ├── TestCursorControl.h │ │ │ │ ├── TestDirBrowseControl.h │ │ │ │ ├── TestDrawContextControl.h │ │ │ │ ├── TestDropShadowControl.h │ │ │ │ ├── TestFlexBoxControl.h │ │ │ │ ├── TestFontControl.h │ │ │ │ ├── TestGFXLabel.h │ │ │ │ ├── TestGLControl.h │ │ │ │ ├── TestGesturesControl.h │ │ │ │ ├── TestGradientControl.h │ │ │ │ ├── TestImageControl.h │ │ │ │ ├── TestKeyboardControl.h │ │ │ │ ├── TestLayerControl.h │ │ │ │ ├── TestMPSControl.h │ │ │ │ ├── TestMPSControl.mm │ │ │ │ ├── TestMaskControl.h │ │ │ │ ├── TestMultiPathControl.h │ │ │ │ ├── TestMultiTouchControl.h │ │ │ │ ├── TestPolyControl.h │ │ │ │ ├── TestSVGControl.h │ │ │ │ ├── TestShadowGradientControl.h │ │ │ │ ├── TestSizeControl.h │ │ │ │ ├── TestTextControl.h │ │ │ │ ├── TestTextOrientationControl.h │ │ │ │ └── TestTextSizeControl.h │ │ ├── Drawing │ │ │ ├── IGraphicsAGG.cpp │ │ │ ├── IGraphicsAGG.h │ │ │ ├── IGraphicsAGG_src.cpp │ │ │ ├── IGraphicsAGG_src.h │ │ │ ├── IGraphicsAGG_src.mm │ │ │ ├── IGraphicsCairo.cpp │ │ │ ├── IGraphicsCairo.h │ │ │ ├── IGraphicsCanvas.cpp │ │ │ ├── IGraphicsCanvas.h │ │ │ ├── IGraphicsLice.cpp │ │ │ ├── IGraphicsLice.h │ │ │ ├── IGraphicsLice_src.cpp │ │ │ ├── IGraphicsLice_src.h │ │ │ ├── IGraphicsLice_src.mm │ │ │ ├── IGraphicsNanoVG.cpp │ │ │ ├── IGraphicsNanoVG.h │ │ │ ├── IGraphicsNanoVG_src.m │ │ │ ├── IGraphicsSkia.cpp │ │ │ ├── IGraphicsSkia.h │ │ │ └── IGraphicsSkia_src.cpp │ │ ├── Extras │ │ │ ├── IGraphicsFlexBox.cpp │ │ │ ├── IGraphicsFlexBox.h │ │ │ ├── IGraphicsImGui.cpp │ │ │ ├── IGraphicsImGui.h │ │ │ └── IGraphicsImGui_src.mm │ │ ├── IControl.cpp │ │ ├── IControl.h │ │ ├── IGraphics.cpp │ │ ├── IGraphics.h │ │ ├── IGraphicsConstants.h │ │ ├── IGraphicsEditorDelegate.cpp │ │ ├── IGraphicsEditorDelegate.h │ │ ├── IGraphicsLiveEdit.h │ │ ├── IGraphicsPathBase.h │ │ ├── IGraphicsPopupMenu.h │ │ ├── IGraphicsPrivate.h │ │ ├── IGraphicsStructs.h │ │ ├── IGraphicsUtilities.h │ │ ├── IGraphics_include_in_plug_hdr.h │ │ ├── IGraphics_include_in_plug_src.h │ │ ├── IGraphics_select.h │ │ ├── ISender.h │ │ └── Platforms │ │ │ ├── IGraphicsCoreText.h │ │ │ ├── IGraphicsCoreText.mm │ │ │ ├── IGraphicsIOS.h │ │ │ ├── IGraphicsIOS.mm │ │ │ ├── IGraphicsIOS_src.m │ │ │ ├── IGraphicsIOS_view.h │ │ │ ├── IGraphicsIOS_view.mm │ │ │ ├── IGraphicsLinux.cpp │ │ │ ├── IGraphicsLinux.h │ │ │ ├── IGraphicsMac.h │ │ │ ├── IGraphicsMac.mm │ │ │ ├── IGraphicsMac_view.h │ │ │ ├── IGraphicsMac_view.mm │ │ │ ├── IGraphicsWeb.cpp │ │ │ ├── IGraphicsWeb.h │ │ │ ├── IGraphicsWin.cpp │ │ │ └── IGraphicsWin.h │ ├── IPlug │ │ ├── AAX │ │ │ ├── IPlugAAX.cpp │ │ │ ├── IPlugAAX.h │ │ │ ├── IPlugAAX_Describe.cpp │ │ │ ├── IPlugAAX_Parameters.cpp │ │ │ ├── IPlugAAX_Parameters.h │ │ │ ├── IPlugAAX_TaperDelegate.h │ │ │ └── IPlugAAX_view_interface.h │ │ ├── APP │ │ │ ├── IPlugAPP.cpp │ │ │ ├── IPlugAPP.h │ │ │ ├── IPlugAPP_dialog.cpp │ │ │ ├── IPlugAPP_host.cpp │ │ │ ├── IPlugAPP_host.h │ │ │ └── IPlugAPP_main.cpp │ │ ├── AUv2 │ │ │ ├── IPlugAU.cpp │ │ │ ├── IPlugAU.h │ │ │ ├── IPlugAU.r │ │ │ ├── IPlugAU_ioconfig.h │ │ │ ├── IPlugAU_view_factory.mm │ │ │ ├── dfx-au-utilities.c │ │ │ └── dfx-au-utilities.h │ │ ├── AUv3 │ │ │ ├── BufferedAudioBus.hpp │ │ │ ├── GenericUI.h │ │ │ ├── GenericUI.mm │ │ │ ├── IPlugAUAudioUnit.h │ │ │ ├── IPlugAUAudioUnit.mm │ │ │ ├── IPlugAUViewController.h │ │ │ ├── IPlugAUViewController.mm │ │ │ ├── IPlugAUv3.h │ │ │ ├── IPlugAUv3.mm │ │ │ ├── IPlugAUv3Appex.m │ │ │ └── iOSApp │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── AppViewController.h │ │ │ │ ├── AppViewController.mm │ │ │ │ ├── IPlugAUPlayer.h │ │ │ │ ├── IPlugAUPlayer.mm │ │ │ │ └── main.m │ │ ├── Extras │ │ │ ├── ADSREnvelope.h │ │ │ ├── Cocoa │ │ │ │ ├── IPlugCocoaEditorDelegate.h │ │ │ │ ├── IPlugCocoaEditorDelegate.mm │ │ │ │ ├── IPlugCocoaViewController.h │ │ │ │ └── IPlugCocoaViewController.mm │ │ │ ├── Easing.h │ │ │ ├── Faust │ │ │ │ ├── IPlugFaust.h │ │ │ │ ├── IPlugFaustGen.cpp │ │ │ │ ├── IPlugFaustGen.h │ │ │ │ └── IPlugFaust_arch.cpp │ │ │ ├── HIIR │ │ │ │ ├── FPUDownsampler2x.h │ │ │ │ ├── FPUStageProc.h │ │ │ │ ├── FPUUpsampler2x.h │ │ │ │ ├── PolyphaseIIR2Designer.cpp │ │ │ │ ├── PolyphaseIIR2Designer.h │ │ │ │ ├── license.txt │ │ │ │ └── readme.txt │ │ │ ├── LFO.h │ │ │ ├── NChanDelay.h │ │ │ ├── OSC │ │ │ │ ├── IPlugOSC.h │ │ │ │ ├── IPlugOSC_msg.cpp │ │ │ │ └── IPlugOSC_msg.h │ │ │ ├── Oscillator.h │ │ │ ├── Oscillator_table.h │ │ │ ├── Oversampler.h │ │ │ ├── README.md │ │ │ ├── SVF.h │ │ │ ├── Smoothers.h │ │ │ ├── Synth │ │ │ │ ├── ControlRamp.h │ │ │ │ ├── MidiSynth.cpp │ │ │ │ ├── MidiSynth.h │ │ │ │ ├── SynthVoice.h │ │ │ │ ├── VoiceAllocator.cpp │ │ │ │ └── VoiceAllocator.h │ │ │ ├── WebSocket │ │ │ │ ├── IWebsocketEditorDelegate.cpp │ │ │ │ ├── IWebsocketEditorDelegate.h │ │ │ │ ├── IWebsocketServer.cpp │ │ │ │ └── IWebsocketServer.h │ │ │ └── WebView │ │ │ │ ├── IPlugWebView.cpp │ │ │ │ ├── IPlugWebView.h │ │ │ │ ├── IPlugWebView.mm │ │ │ │ ├── IPlugWebViewEditorDelegate.cpp │ │ │ │ ├── IPlugWebViewEditorDelegate.h │ │ │ │ └── IPlugWebViewEditorDelegate.mm │ │ ├── IPlugAPIBase.cpp │ │ ├── IPlugAPIBase.h │ │ ├── IPlugConstants.h │ │ ├── IPlugDelegate_select.h │ │ ├── IPlugEditorDelegate.h │ │ ├── IPlugLogger.h │ │ ├── IPlugMidi.h │ │ ├── IPlugOBJCPrefix.pch │ │ ├── IPlugParameter.cpp │ │ ├── IPlugParameter.h │ │ ├── IPlugPaths.cpp │ │ ├── IPlugPaths.h │ │ ├── IPlugPaths.mm │ │ ├── IPlugPlatform.h │ │ ├── IPlugPluginBase.cpp │ │ ├── IPlugPluginBase.h │ │ ├── IPlugProcessor.cpp │ │ ├── IPlugProcessor.h │ │ ├── IPlugQueue.h │ │ ├── IPlugSWELL.h │ │ ├── IPlugStructs.h │ │ ├── IPlugTimer.cpp │ │ ├── IPlugTimer.h │ │ ├── IPlugUtilities.h │ │ ├── IPlug_include_in_plug_hdr.h │ │ ├── IPlug_include_in_plug_src.h │ │ ├── ReaperExt │ │ │ ├── ReaperExtBase.cpp │ │ │ ├── ReaperExtBase.h │ │ │ ├── ReaperExt_include_in_plug_hdr.h │ │ │ └── ReaperExt_include_in_plug_src.h │ │ ├── VST2 │ │ │ ├── IPlugReaperVST2.h │ │ │ ├── IPlugVST2.cpp │ │ │ └── IPlugVST2.h │ │ ├── VST3 │ │ │ ├── IPlugVST3.cpp │ │ │ ├── IPlugVST3.h │ │ │ ├── IPlugVST3_Common.h │ │ │ ├── IPlugVST3_Controller.cpp │ │ │ ├── IPlugVST3_Controller.h │ │ │ ├── IPlugVST3_ControllerBase.h │ │ │ ├── IPlugVST3_Defs.h │ │ │ ├── IPlugVST3_Parameter.h │ │ │ ├── IPlugVST3_Processor.cpp │ │ │ ├── IPlugVST3_Processor.h │ │ │ ├── IPlugVST3_ProcessorBase.cpp │ │ │ ├── IPlugVST3_ProcessorBase.h │ │ │ └── IPlugVST3_View.h │ │ └── WEB │ │ │ ├── IPlugWAM.cpp │ │ │ ├── IPlugWAM.h │ │ │ ├── IPlugWeb.cpp │ │ │ ├── IPlugWeb.h │ │ │ └── Template │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── scripts │ │ │ ├── IPlugWAM-awn.js │ │ │ ├── IPlugWAM-awp.js │ │ │ └── websocket.js │ │ │ └── styles │ │ │ └── style.css │ ├── LICENSE.txt │ ├── README.md │ ├── Scripts │ │ ├── ci │ │ │ ├── build_aax_libs.yml │ │ │ ├── build_deps.yml │ │ │ ├── build_project-ios.yml │ │ │ ├── build_project-mac.yml │ │ │ ├── build_project-web.yml │ │ │ ├── build_project-win.yml │ │ │ ├── build_projects.yml │ │ │ ├── get_secure_files.yml │ │ │ ├── get_src_artifact.yml │ │ │ ├── get_src_tree.yml │ │ │ ├── projects.yml │ │ │ ├── publish_docs.yml │ │ │ ├── publish_project-ghrelease.yml │ │ │ ├── publish_project.yml │ │ │ ├── publish_site.yml │ │ │ ├── test_project-ios.yml │ │ │ ├── test_project-mac.yml │ │ │ ├── test_project-win.yml │ │ │ └── test_projects.yml │ │ ├── clear_audiounit_caches.command │ │ ├── create_bundle.bat │ │ ├── find_and_replace.py │ │ ├── iplug_lldb_xcode.py │ │ ├── parse_config.py │ │ ├── parse_iostr.py │ │ ├── select_host.py │ │ ├── server.py │ │ ├── setup_iplug_lldb_xcode.sh │ │ ├── validate_audiounit.sh │ │ └── win_reg │ │ │ ├── README.md │ │ │ ├── set_vst2_WOW6432Node_registry_path.reg │ │ │ └── set_vst2_registry_path.reg │ ├── Tests │ │ ├── IGraphicsStressTest │ │ │ ├── .vscode │ │ │ │ └── c_cpp_properties.json │ │ │ ├── IGraphicsStressTest.RPP │ │ │ ├── IGraphicsStressTest.code-workspace │ │ │ ├── IGraphicsStressTest.cpp │ │ │ ├── IGraphicsStressTest.h │ │ │ ├── IGraphicsStressTest.sln │ │ │ ├── IGraphicsStressTest.xcworkspace │ │ │ │ ├── .xcodesamplecode.plist │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ ├── README.md │ │ │ ├── config.h │ │ │ ├── config │ │ │ │ ├── IGraphicsStressTest-ios.xcconfig │ │ │ │ ├── IGraphicsStressTest-mac.xcconfig │ │ │ │ ├── IGraphicsStressTest-web.mk │ │ │ │ └── IGraphicsStressTest-win.props │ │ │ ├── installer │ │ │ │ ├── IGraphicsStressTest-installer-bg.png │ │ │ │ ├── IGraphicsStressTest.iss │ │ │ │ ├── IGraphicsStressTest.pkgproj │ │ │ │ ├── changelog.txt │ │ │ │ ├── intro.rtf │ │ │ │ ├── known-issues.txt │ │ │ │ ├── license.rtf │ │ │ │ ├── readme-osx.rtf │ │ │ │ └── readme-win.rtf │ │ │ ├── manual │ │ │ │ ├── IGraphicsStressTest manual.pdf │ │ │ │ └── IGraphicsStressTest manual.tex │ │ │ ├── projects │ │ │ │ ├── IGraphicsStressTest-aax.vcxproj │ │ │ │ ├── IGraphicsStressTest-aax.vcxproj.filters │ │ │ │ ├── IGraphicsStressTest-app.vcxproj │ │ │ │ ├── IGraphicsStressTest-app.vcxproj.filters │ │ │ │ ├── IGraphicsStressTest-app.vcxproj.user │ │ │ │ ├── IGraphicsStressTest-iOS.entitlements │ │ │ │ ├── IGraphicsStressTest-iOS.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── iOS-APP with AUv3.xcscheme │ │ │ │ │ │ ├── iOS-AUv3.xcscheme │ │ │ │ │ │ └── iOS-AUv3Framework.xcscheme │ │ │ │ ├── IGraphicsStressTest-macOS.entitlements │ │ │ │ ├── IGraphicsStressTest-macOS.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── All macOS.xcscheme │ │ │ │ │ │ ├── VST3 Controller Library.xcscheme │ │ │ │ │ │ ├── macOS-AAX.xcscheme │ │ │ │ │ │ ├── macOS-APP with AUv3.xcscheme │ │ │ │ │ │ ├── macOS-APP.xcscheme │ │ │ │ │ │ ├── macOS-AUv2.xcscheme │ │ │ │ │ │ ├── macOS-AUv3.xcscheme │ │ │ │ │ │ ├── macOS-AUv3Framework.xcscheme │ │ │ │ │ │ ├── macOS-VST2.xcscheme │ │ │ │ │ │ ├── macOS-VST3 (Distributed).xcscheme │ │ │ │ │ │ └── macOS-VST3.xcscheme │ │ │ │ ├── IGraphicsStressTest-vst2.vcxproj │ │ │ │ ├── IGraphicsStressTest-vst2.vcxproj.filters │ │ │ │ ├── IGraphicsStressTest-vst2.vcxproj.user │ │ │ │ ├── IGraphicsStressTest-vst3.vcxproj │ │ │ │ ├── IGraphicsStressTest-vst3.vcxproj.filters │ │ │ │ ├── IGraphicsStressTest-vst3.vcxproj.user │ │ │ │ ├── IGraphicsStressTest-wam-controller.mk │ │ │ │ └── IGraphicsStressTest-wam-processor.mk │ │ │ ├── resources │ │ │ │ ├── AUv3Framework.h │ │ │ │ ├── IGraphicsStressTest-AAX-Info.plist │ │ │ │ ├── IGraphicsStressTest-AU-Info.plist │ │ │ │ ├── IGraphicsStressTest-Pages.xml │ │ │ │ ├── IGraphicsStressTest-VST2-Info.plist │ │ │ │ ├── IGraphicsStressTest-VST3-Info.plist │ │ │ │ ├── IGraphicsStressTest-iOS-AUv3-Info.plist │ │ │ │ ├── IGraphicsStressTest-iOS-AUv3Framework-Info.plist │ │ │ │ ├── IGraphicsStressTest-iOS-Info.plist │ │ │ │ ├── IGraphicsStressTest-iOS-MainInterface.storyboard │ │ │ │ ├── IGraphicsStressTest-iOS-launchScreen.storyboard │ │ │ │ ├── IGraphicsStressTest-iOS.storyboard │ │ │ │ ├── IGraphicsStressTest-macOS-AUv3-Info.plist │ │ │ │ ├── IGraphicsStressTest-macOS-AUv3Framework-Info.plist │ │ │ │ ├── IGraphicsStressTest-macOS-Info.plist │ │ │ │ ├── IGraphicsStressTest-macOS-MainMenu.xib │ │ │ │ ├── IGraphicsStressTest.icns │ │ │ │ ├── IGraphicsStressTest.ico │ │ │ │ ├── IPlugAUViewController.xib │ │ │ │ ├── Images.xcassets │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── IGraphicsStressTestiOSAppIcon.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Icon.png │ │ │ │ │ │ ├── icon_20pt.png │ │ │ │ │ │ ├── icon_20pt@2x.png │ │ │ │ │ │ ├── icon_20pt@3x.png │ │ │ │ │ │ ├── icon_29pt.png │ │ │ │ │ │ ├── icon_29pt@2x.png │ │ │ │ │ │ ├── icon_29pt@3x.png │ │ │ │ │ │ ├── icon_40pt.png │ │ │ │ │ │ ├── icon_40pt@2x.png │ │ │ │ │ │ ├── icon_40pt@3x.png │ │ │ │ │ │ ├── icon_60pt@2x.png │ │ │ │ │ │ ├── icon_60pt@3x.png │ │ │ │ │ │ ├── icon_76pt.png │ │ │ │ │ │ ├── icon_76pt@2x.png │ │ │ │ │ │ └── icon_83.5@2x.png │ │ │ │ ├── fonts │ │ │ │ │ └── Roboto-Regular.ttf │ │ │ │ ├── img │ │ │ │ │ ├── 23.svg │ │ │ │ │ ├── smiley.png │ │ │ │ │ └── smiley@2x.png │ │ │ │ ├── main.rc │ │ │ │ ├── main.rc_mac_dlg │ │ │ │ ├── main.rc_mac_menu │ │ │ │ └── resource.h │ │ │ └── scripts │ │ │ │ ├── make_zip.py │ │ │ │ ├── makedist-mac.sh │ │ │ │ ├── makedist-web.sh │ │ │ │ ├── makedist-win.bat │ │ │ │ ├── postbuild-win.bat │ │ │ │ ├── prebuild-win.bat │ │ │ │ ├── prepare_resources-ios.py │ │ │ │ ├── prepare_resources-mac.py │ │ │ │ ├── prepare_resources-win.py │ │ │ │ ├── update_installer_version.py │ │ │ │ └── update_version.py │ │ ├── IGraphicsTest │ │ │ ├── .vscode │ │ │ │ └── c_cpp_properties.json │ │ │ ├── IGraphicsTest.RPP │ │ │ ├── IGraphicsTest.code-workspace │ │ │ ├── IGraphicsTest.cpp │ │ │ ├── IGraphicsTest.h │ │ │ ├── IGraphicsTest.sln │ │ │ ├── IGraphicsTest.xcworkspace │ │ │ │ ├── .xcodesamplecode.plist │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ ├── README.md │ │ │ ├── config.h │ │ │ ├── config │ │ │ │ ├── IGraphicsTest-ios.xcconfig │ │ │ │ ├── IGraphicsTest-mac.xcconfig │ │ │ │ ├── IGraphicsTest-web.mk │ │ │ │ └── IGraphicsTest-win.props │ │ │ ├── installer │ │ │ │ ├── IGraphicsTest-installer-bg.png │ │ │ │ ├── IGraphicsTest.iss │ │ │ │ ├── IGraphicsTest.pkgproj │ │ │ │ ├── changelog.txt │ │ │ │ ├── intro.rtf │ │ │ │ ├── known-issues.txt │ │ │ │ ├── license.rtf │ │ │ │ ├── readme-osx.rtf │ │ │ │ └── readme-win.rtf │ │ │ ├── manual │ │ │ │ ├── IGraphicsTest manual.pdf │ │ │ │ └── IGraphicsTest manual.tex │ │ │ ├── projects │ │ │ │ ├── IGraphicsTest-aax.vcxproj │ │ │ │ ├── IGraphicsTest-aax.vcxproj.filters │ │ │ │ ├── IGraphicsTest-app.vcxproj │ │ │ │ ├── IGraphicsTest-app.vcxproj.filters │ │ │ │ ├── IGraphicsTest-app.vcxproj.user │ │ │ │ ├── IGraphicsTest-iOS.entitlements │ │ │ │ ├── IGraphicsTest-iOS.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── iOS-APP with AUv3.xcscheme │ │ │ │ │ │ ├── iOS-AUv3.xcscheme │ │ │ │ │ │ └── iOS-AUv3Framework.xcscheme │ │ │ │ ├── IGraphicsTest-macOS.entitlements │ │ │ │ ├── IGraphicsTest-macOS.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── All macOS.xcscheme │ │ │ │ │ │ ├── VST3 Controller Library.xcscheme │ │ │ │ │ │ ├── macOS-AAX.xcscheme │ │ │ │ │ │ ├── macOS-APP with AUv3.xcscheme │ │ │ │ │ │ ├── macOS-APP.xcscheme │ │ │ │ │ │ ├── macOS-AUv2.xcscheme │ │ │ │ │ │ ├── macOS-AUv3.xcscheme │ │ │ │ │ │ ├── macOS-AUv3Framework.xcscheme │ │ │ │ │ │ ├── macOS-VST2.xcscheme │ │ │ │ │ │ ├── macOS-VST3 (Distributed).xcscheme │ │ │ │ │ │ └── macOS-VST3.xcscheme │ │ │ │ ├── IGraphicsTest-vst2.vcxproj │ │ │ │ ├── IGraphicsTest-vst2.vcxproj.filters │ │ │ │ ├── IGraphicsTest-vst2.vcxproj.user │ │ │ │ ├── IGraphicsTest-vst3.vcxproj │ │ │ │ ├── IGraphicsTest-vst3.vcxproj.filters │ │ │ │ ├── IGraphicsTest-vst3.vcxproj.user │ │ │ │ ├── IGraphicsTest-wam-controller.mk │ │ │ │ └── IGraphicsTest-wam-processor.mk │ │ │ ├── resources │ │ │ │ ├── AUv3Framework.h │ │ │ │ ├── IGraphicsTest-AAX-Info.plist │ │ │ │ ├── IGraphicsTest-AU-Info.plist │ │ │ │ ├── IGraphicsTest-Pages.xml │ │ │ │ ├── IGraphicsTest-VST2-Info.plist │ │ │ │ ├── IGraphicsTest-VST3-Info.plist │ │ │ │ ├── IGraphicsTest-iOS-AUv3-Info.plist │ │ │ │ ├── IGraphicsTest-iOS-AUv3Framework-Info.plist │ │ │ │ ├── IGraphicsTest-iOS-Info.plist │ │ │ │ ├── IGraphicsTest-iOS-MainInterface.storyboard │ │ │ │ ├── IGraphicsTest-iOS-launchScreen.storyboard │ │ │ │ ├── IGraphicsTest-iOS.storyboard │ │ │ │ ├── IGraphicsTest-macOS-AUv3-Info.plist │ │ │ │ ├── IGraphicsTest-macOS-AUv3Framework-Info.plist │ │ │ │ ├── IGraphicsTest-macOS-Info.plist │ │ │ │ ├── IGraphicsTest-macOS-MainMenu.xib │ │ │ │ ├── IGraphicsTest.icns │ │ │ │ ├── IGraphicsTest.ico │ │ │ │ ├── IPlugAUViewController.xib │ │ │ │ ├── Images.xcassets │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── IGraphicsTestiOSAppIcon.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Icon.png │ │ │ │ │ │ ├── icon_20pt.png │ │ │ │ │ │ ├── icon_20pt@2x.png │ │ │ │ │ │ ├── icon_20pt@3x.png │ │ │ │ │ │ ├── icon_29pt.png │ │ │ │ │ │ ├── icon_29pt@2x.png │ │ │ │ │ │ ├── icon_29pt@3x.png │ │ │ │ │ │ ├── icon_40pt.png │ │ │ │ │ │ ├── icon_40pt@2x.png │ │ │ │ │ │ ├── icon_40pt@3x.png │ │ │ │ │ │ ├── icon_60pt@2x.png │ │ │ │ │ │ ├── icon_60pt@3x.png │ │ │ │ │ │ ├── icon_76pt.png │ │ │ │ │ │ ├── icon_76pt@2x.png │ │ │ │ │ │ └── icon_83.5@2x.png │ │ │ │ ├── fonts │ │ │ │ │ ├── Montserrat-LightItalic.ttf │ │ │ │ │ └── Roboto-Regular.ttf │ │ │ │ ├── img │ │ │ │ │ ├── 23.svg │ │ │ │ │ ├── dst.png │ │ │ │ │ ├── dst@2x.png │ │ │ │ │ ├── iplug.png │ │ │ │ │ ├── iplug@2x.png │ │ │ │ │ ├── orbs.svg │ │ │ │ │ ├── smiley.png │ │ │ │ │ ├── smiley@2x.png │ │ │ │ │ ├── src.png │ │ │ │ │ └── src@2x.png │ │ │ │ ├── main.rc │ │ │ │ ├── main.rc_mac_dlg │ │ │ │ ├── main.rc_mac_menu │ │ │ │ └── resource.h │ │ │ └── scripts │ │ │ │ ├── make_zip.py │ │ │ │ ├── makedist-mac.sh │ │ │ │ ├── makedist-web.sh │ │ │ │ ├── makedist-win.bat │ │ │ │ ├── postbuild-win.bat │ │ │ │ ├── prebuild-win.bat │ │ │ │ ├── prepare_resources-ios.py │ │ │ │ ├── prepare_resources-mac.py │ │ │ │ ├── prepare_resources-win.py │ │ │ │ ├── update_installer_version.py │ │ │ │ └── update_version.py │ │ ├── MetaParamTest │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ └── c_cpp_properties.json │ │ │ ├── MetaParamTest.RPP │ │ │ ├── MetaParamTest.code-workspace │ │ │ ├── MetaParamTest.cpp │ │ │ ├── MetaParamTest.h │ │ │ ├── MetaParamTest.sln │ │ │ ├── MetaParamTest.xcworkspace │ │ │ │ ├── .xcodesamplecode.plist │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ ├── README.md │ │ │ ├── config.h │ │ │ ├── config │ │ │ │ ├── MetaParamTest-ios.xcconfig │ │ │ │ ├── MetaParamTest-mac.xcconfig │ │ │ │ ├── MetaParamTest-web.mk │ │ │ │ └── MetaParamTest-win.props │ │ │ ├── projects │ │ │ │ ├── MetaParamTest-aax.vcxproj │ │ │ │ ├── MetaParamTest-aax.vcxproj.filters │ │ │ │ ├── MetaParamTest-app.vcxproj │ │ │ │ ├── MetaParamTest-app.vcxproj.filters │ │ │ │ ├── MetaParamTest-app.vcxproj.user │ │ │ │ ├── MetaParamTest-iOS.entitlements │ │ │ │ ├── MetaParamTest-iOS.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── iOS-APP with AUv3.xcscheme │ │ │ │ │ │ ├── iOS-AUv3.xcscheme │ │ │ │ │ │ └── iOS-AUv3Framework.xcscheme │ │ │ │ ├── MetaParamTest-macOS.entitlements │ │ │ │ ├── MetaParamTest-macOS.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── All macOS.xcscheme │ │ │ │ │ │ ├── VST3 Controller Library.xcscheme │ │ │ │ │ │ ├── macOS-AAX.xcscheme │ │ │ │ │ │ ├── macOS-APP with AUv3.xcscheme │ │ │ │ │ │ ├── macOS-APP.xcscheme │ │ │ │ │ │ ├── macOS-AUv2.xcscheme │ │ │ │ │ │ ├── macOS-AUv3.xcscheme │ │ │ │ │ │ ├── macOS-AUv3Framework.xcscheme │ │ │ │ │ │ ├── macOS-VST2.xcscheme │ │ │ │ │ │ ├── macOS-VST3 (Distributed).xcscheme │ │ │ │ │ │ └── macOS-VST3.xcscheme │ │ │ │ ├── MetaParamTest-vst2.vcxproj │ │ │ │ ├── MetaParamTest-vst2.vcxproj.filters │ │ │ │ ├── MetaParamTest-vst2.vcxproj.user │ │ │ │ ├── MetaParamTest-vst3.vcxproj │ │ │ │ ├── MetaParamTest-vst3.vcxproj.filters │ │ │ │ ├── MetaParamTest-vst3.vcxproj.user │ │ │ │ ├── MetaParamTest-wam-controller.mk │ │ │ │ └── MetaParamTest-wam-processor.mk │ │ │ ├── resources │ │ │ │ ├── AUv3Framework.h │ │ │ │ ├── IPlugAUViewController.xib │ │ │ │ ├── Images.xcassets │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── MetaParamTestiOSAppIcon.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Icon.png │ │ │ │ │ │ ├── icon_20pt.png │ │ │ │ │ │ ├── icon_20pt@2x.png │ │ │ │ │ │ ├── icon_20pt@3x.png │ │ │ │ │ │ ├── icon_29pt.png │ │ │ │ │ │ ├── icon_29pt@2x.png │ │ │ │ │ │ ├── icon_29pt@3x.png │ │ │ │ │ │ ├── icon_40pt.png │ │ │ │ │ │ ├── icon_40pt@2x.png │ │ │ │ │ │ ├── icon_40pt@3x.png │ │ │ │ │ │ ├── icon_60pt@2x.png │ │ │ │ │ │ ├── icon_60pt@3x.png │ │ │ │ │ │ ├── icon_76pt.png │ │ │ │ │ │ ├── icon_76pt@2x.png │ │ │ │ │ │ └── icon_83.5@2x.png │ │ │ │ ├── MetaParamTest-AAX-Info.plist │ │ │ │ ├── MetaParamTest-AU-Info.plist │ │ │ │ ├── MetaParamTest-Pages.xml │ │ │ │ ├── MetaParamTest-VST2-Info.plist │ │ │ │ ├── MetaParamTest-VST3-Info.plist │ │ │ │ ├── MetaParamTest-iOS-AUv3-Info.plist │ │ │ │ ├── MetaParamTest-iOS-AUv3Framework-Info.plist │ │ │ │ ├── MetaParamTest-iOS-Info.plist │ │ │ │ ├── MetaParamTest-iOS-MainInterface.storyboard │ │ │ │ ├── MetaParamTest-iOS-launchScreen.storyboard │ │ │ │ ├── MetaParamTest-iOS.storyboard │ │ │ │ ├── MetaParamTest-macOS-AUv3-Info.plist │ │ │ │ ├── MetaParamTest-macOS-AUv3Framework-Info.plist │ │ │ │ ├── MetaParamTest-macOS-Info.plist │ │ │ │ ├── MetaParamTest-macOS-MainMenu.xib │ │ │ │ ├── MetaParamTest.icns │ │ │ │ ├── MetaParamTest.ico │ │ │ │ ├── fonts │ │ │ │ │ └── Roboto-Regular.ttf │ │ │ │ ├── main.rc │ │ │ │ ├── main.rc_mac_dlg │ │ │ │ ├── main.rc_mac_menu │ │ │ │ └── resource.h │ │ │ └── scripts │ │ │ │ ├── make_zip.py │ │ │ │ ├── makedist-mac.sh │ │ │ │ ├── makedist-web.sh │ │ │ │ ├── makedist-win.bat │ │ │ │ ├── postbuild-win.bat │ │ │ │ ├── prebuild-win.bat │ │ │ │ ├── prepare_resources-ios.py │ │ │ │ ├── prepare_resources-mac.py │ │ │ │ ├── prepare_resources-win.py │ │ │ │ ├── update_installer_version.py │ │ │ │ └── update_version.py │ │ └── README.md │ ├── WDL │ │ ├── .gitattributes │ │ ├── MersenneTwister.h │ │ ├── adpcm_decode.h │ │ ├── adpcm_encode.h │ │ ├── assocarray.h │ │ ├── audiobuffercontainer.cpp │ │ ├── audiobuffercontainer.h │ │ ├── besselfilter.cpp │ │ ├── besselfilter.h │ │ ├── bitfield.h │ │ ├── blowfish.c │ │ ├── blowfish.h │ │ ├── chunkalloc.h │ │ ├── circbuf.h │ │ ├── cmath │ │ │ ├── bessel_polynomial.h │ │ │ ├── complex_number.h │ │ │ ├── custom_math.h │ │ │ ├── durand_kerner.h │ │ │ ├── factorial.h │ │ │ ├── horner.h │ │ │ ├── test_bessel.c │ │ │ └── test_eval.c │ │ ├── convoengine.cpp │ │ ├── convoengine.h │ │ ├── db2val.h │ │ ├── denormal.h │ │ ├── des.cpp │ │ ├── des.h │ │ ├── destroycheck.h │ │ ├── diffcalc.h │ │ ├── dirscan.h │ │ ├── eel2 │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── a2i.php │ │ │ ├── a2x64.php │ │ │ ├── asm-nseel-aarch64-gcc.c │ │ │ ├── asm-nseel-arm-gcc.c │ │ │ ├── asm-nseel-ppc-gcc.c │ │ │ ├── asm-nseel-x64-macho.o │ │ │ ├── asm-nseel-x64.obj │ │ │ ├── asm-nseel-x86-gcc.c │ │ │ ├── asm-nseel-x86-msvc.c │ │ │ ├── eel2.l │ │ │ ├── eel2.vim │ │ │ ├── eel2.y │ │ │ ├── eel_atomic.h │ │ │ ├── eel_eval.h │ │ │ ├── eel_fft.h │ │ │ ├── eel_files.h │ │ │ ├── eel_import.h │ │ │ ├── eel_lice.h │ │ │ ├── eel_mdct.h │ │ │ ├── eel_misc.h │ │ │ ├── eel_net.h │ │ │ ├── eel_strings.h │ │ │ ├── eelscript.h │ │ │ ├── gen-lex-yacc │ │ │ ├── glue_aarch64.h │ │ │ ├── glue_arm.h │ │ │ ├── glue_port.h │ │ │ ├── glue_port_new.h │ │ │ ├── glue_ppc.h │ │ │ ├── glue_x86.h │ │ │ ├── glue_x86_64.h │ │ │ ├── loose_eel.cpp │ │ │ ├── loose_eel.dsp │ │ │ ├── loose_eel.dsw │ │ │ ├── loose_eel.sln │ │ │ ├── loose_eel.vcxproj │ │ │ ├── loose_eel.vcxproj.filters │ │ │ ├── makefile.vc │ │ │ ├── ns-eel-addfuncs.h │ │ │ ├── ns-eel-func-ref.h │ │ │ ├── ns-eel-int.h │ │ │ ├── ns-eel.h │ │ │ ├── nseel-caltab.c │ │ │ ├── nseel-cfunc.c │ │ │ ├── nseel-compiler.c │ │ │ ├── nseel-eval.c │ │ │ ├── nseel-lextab.c │ │ │ ├── nseel-ram.c │ │ │ ├── nseel-yylex.c │ │ │ ├── scripts │ │ │ │ ├── circle.eel │ │ │ │ ├── eval_test.eel │ │ │ │ ├── gfx_test.eel │ │ │ │ ├── gfx_test_defer.eel │ │ │ │ ├── httpd.eel │ │ │ │ ├── sinewave_text.eel │ │ │ │ └── space.eel │ │ │ ├── y.tab.c │ │ │ └── y.tab.h │ │ ├── fastqueue.h │ │ ├── ffmpeg.h │ │ ├── fft.c │ │ ├── fft.h │ │ ├── filebrowse.cpp │ │ ├── filebrowse.h │ │ ├── filename.h │ │ ├── fileread.h │ │ ├── filewrite.h │ │ ├── fnv64.h │ │ ├── giflib │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── ChangeLog │ │ │ ├── DEVELOPERS │ │ │ ├── README │ │ │ ├── config.h │ │ │ ├── dgif_lib.c │ │ │ ├── egif_lib.c │ │ │ ├── gif_hash.c │ │ │ ├── gif_hash.h │ │ │ ├── gif_lib.h │ │ │ ├── gif_lib_private.h │ │ │ └── gifalloc.c │ │ ├── gpu │ │ │ ├── gpu.cpp │ │ │ ├── gpu.h │ │ │ └── wglext.h │ │ ├── has_strings.h │ │ ├── heapbuf.h │ │ ├── history.txt │ │ ├── jnetlib │ │ │ ├── Makefile │ │ │ ├── asyncdns.cpp │ │ │ ├── asyncdns.h │ │ │ ├── connection.cpp │ │ │ ├── connection.h │ │ │ ├── httpget.cpp │ │ │ ├── httpget.h │ │ │ ├── httpserv.cpp │ │ │ ├── httpserv.h │ │ │ ├── irc_util.h │ │ │ ├── jnetlib.h │ │ │ ├── listen.cpp │ │ │ ├── listen.h │ │ │ ├── netinc.h │ │ │ ├── test.cpp │ │ │ ├── test.dsp │ │ │ ├── test.dsw │ │ │ ├── testbnc.cpp │ │ │ ├── util.cpp │ │ │ ├── util.h │ │ │ ├── webserver.cpp │ │ │ └── webserver.h │ │ ├── jpeglib │ │ │ ├── README │ │ │ ├── example.c │ │ │ ├── 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 │ │ │ ├── jdatadst.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 │ │ ├── lameencdec.cpp │ │ ├── lameencdec.h │ │ ├── libpng │ │ │ ├── CHANGES │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── png.c │ │ │ ├── png.h │ │ │ ├── pngconf.h │ │ │ ├── pngdebug.h │ │ │ ├── pngerror.c │ │ │ ├── pngget.c │ │ │ ├── pnginfo.h │ │ │ ├── pnglibconf.h │ │ │ ├── pnglibconf.h.prebuilt │ │ │ ├── pngmem.c │ │ │ ├── pngpread.c │ │ │ ├── pngpriv.h │ │ │ ├── pngread.c │ │ │ ├── pngrio.c │ │ │ ├── pngrtran.c │ │ │ ├── pngrutil.c │ │ │ ├── pngset.c │ │ │ ├── pngstruct.h │ │ │ ├── pngtest.c │ │ │ ├── pngtrans.c │ │ │ ├── pngwio.c │ │ │ ├── pngwrite.c │ │ │ ├── pngwtran.c │ │ │ └── pngwutil.c │ │ ├── lice │ │ │ ├── curverasterbuffer.h │ │ │ ├── glew │ │ │ │ ├── include │ │ │ │ │ └── GL │ │ │ │ │ │ ├── WGLEXT.H │ │ │ │ │ │ ├── glew.h │ │ │ │ │ │ ├── glxew.h │ │ │ │ │ │ └── wglew.h │ │ │ │ └── src │ │ │ │ │ ├── glew.c │ │ │ │ │ ├── glewinfo.c │ │ │ │ │ └── visualinfo.c │ │ │ ├── lice.cpp │ │ │ ├── lice.h │ │ │ ├── lice_arc.cpp │ │ │ ├── lice_bezier.h │ │ │ ├── lice_bmp.cpp │ │ │ ├── lice_colorspace.cpp │ │ │ ├── lice_combine.h │ │ │ ├── lice_extended.h │ │ │ ├── lice_gif.cpp │ │ │ ├── lice_gif_write.cpp │ │ │ ├── lice_gl_ctx.cpp │ │ │ ├── lice_gl_ctx.h │ │ │ ├── lice_glbitmap.cpp │ │ │ ├── lice_glbitmap.h │ │ │ ├── lice_ico.cpp │ │ │ ├── lice_image.cpp │ │ │ ├── lice_import.h │ │ │ ├── lice_jpg.cpp │ │ │ ├── lice_jpg_write.cpp │ │ │ ├── lice_lcf.cpp │ │ │ ├── lice_lcf.h │ │ │ ├── lice_line.cpp │ │ │ ├── lice_lvg.cpp │ │ │ ├── lice_palette.cpp │ │ │ ├── lice_pcx.cpp │ │ │ ├── lice_png.cpp │ │ │ ├── lice_png_write.cpp │ │ │ ├── lice_svg.cpp │ │ │ ├── lice_texgen.cpp │ │ │ ├── lice_text.cpp │ │ │ ├── lice_text.h │ │ │ ├── lice_textnew.cpp │ │ │ └── test │ │ │ │ └── main.cpp │ │ ├── lineparse.h │ │ ├── md5.c │ │ ├── md5.h │ │ ├── mergesort.h │ │ ├── mp3write.h │ │ ├── mutex.h │ │ ├── nsv │ │ │ ├── nsvbs.h │ │ │ ├── nsvlib.cpp │ │ │ └── nsvlib.h │ │ ├── pcmfmtcvt.h │ │ ├── plush2 │ │ │ ├── pl_cam.cpp │ │ │ ├── pl_make.cpp │ │ │ ├── pl_math.cpp │ │ │ ├── pl_obj.cpp │ │ │ ├── pl_pf_tex.h │ │ │ ├── pl_putface.cpp │ │ │ ├── pl_read_3ds.cpp │ │ │ ├── pl_read_cob.cpp │ │ │ ├── pl_read_jaw.cpp │ │ │ ├── pl_spline.cpp │ │ │ └── plush.h │ │ ├── poollist.h │ │ ├── projectcontext.cpp │ │ ├── projectcontext.h │ │ ├── ptrlist.h │ │ ├── ptrlist_indexed.h │ │ ├── queue.h │ │ ├── reminder.h │ │ ├── resample.cpp │ │ ├── resample.h │ │ ├── rfb_client.cpp │ │ ├── rfb_client.h │ │ ├── rng.cpp │ │ ├── rng.h │ │ ├── rpool.h │ │ ├── sc_bounce │ │ │ ├── index.html │ │ │ ├── info.php │ │ │ ├── stream-config.php │ │ │ └── stream.php │ │ ├── scalafile.h │ │ ├── scsrc.cpp │ │ ├── scsrc.h │ │ ├── setthreadname.h │ │ ├── sha.cpp │ │ ├── sha.h │ │ ├── sharedpool.h │ │ ├── shm_connection.cpp │ │ ├── shm_connection.h │ │ ├── shm_msgreply.cpp │ │ ├── shm_msgreply.h │ │ ├── simple_pitchshift.h │ │ ├── simple_pitchshift2.h │ │ ├── sinewavegen.h │ │ ├── stringpool.h │ │ ├── swell │ │ │ ├── Makefile │ │ │ ├── commctrl.h │ │ │ ├── libSwell.so │ │ │ ├── mac_resgen.php │ │ │ ├── sample_project │ │ │ │ ├── test_UTF16LE.rc │ │ │ │ └── test_UTF8_LF.rc │ │ │ ├── shlobj.h │ │ │ ├── swell-appstub-generic.cpp │ │ │ ├── swell-appstub.mm │ │ │ ├── swell-dlg-generic.cpp │ │ │ ├── swell-dlg.mm │ │ │ ├── swell-dlggen.h │ │ │ ├── swell-functions.h │ │ │ ├── swell-gdi-generic.cpp │ │ │ ├── swell-gdi-internalpool.h │ │ │ ├── swell-gdi-lice.cpp │ │ │ ├── swell-gdi.mm │ │ │ ├── swell-generic-gdk.cpp │ │ │ ├── swell-generic-headless.cpp │ │ │ ├── swell-ini.cpp │ │ │ ├── swell-internal.h │ │ │ ├── swell-kb-generic.cpp │ │ │ ├── swell-kb.mm │ │ │ ├── swell-menu-generic.cpp │ │ │ ├── swell-menu.mm │ │ │ ├── swell-menugen.h │ │ │ ├── swell-misc-generic.cpp │ │ │ ├── swell-misc.mm │ │ │ ├── swell-miscdlg-generic.cpp │ │ │ ├── swell-miscdlg.mm │ │ │ ├── swell-modstub-generic.cpp │ │ │ ├── swell-modstub.mm │ │ │ ├── swell-types.h │ │ │ ├── swell-wnd-generic.cpp │ │ │ ├── swell-wnd.mm │ │ │ ├── swell.cpp │ │ │ ├── swell.h │ │ │ ├── swellappmain.h │ │ │ ├── swellappmain.mm │ │ │ ├── test.cpp │ │ │ └── windows.h │ │ ├── time_precise.h │ │ ├── timing.c │ │ ├── timing.h │ │ ├── tinyxml │ │ │ ├── libxml_tinyxml.cpp │ │ │ ├── libxml_tinyxml.h │ │ │ ├── svgtiny_colors.c │ │ │ ├── tinystr.cpp │ │ │ ├── tinystr.h │ │ │ ├── tinyxml.cpp │ │ │ ├── tinyxml.h │ │ │ ├── tinyxmlerror.cpp │ │ │ └── tinyxmlparser.cpp │ │ ├── verbengine.h │ │ ├── vorbisencdec.h │ │ ├── wavwrite.h │ │ ├── wdl_base64.h │ │ ├── wdlatomic.h │ │ ├── wdlcstring.h │ │ ├── wdlendian.h │ │ ├── wdlstring.h │ │ ├── wdltypes.h │ │ ├── wdlutf8.h │ │ ├── win32_curses │ │ │ ├── curses.h │ │ │ ├── curses_editor.cpp │ │ │ ├── curses_editor.h │ │ │ ├── curses_win32.cpp │ │ │ ├── eel_edit.cpp │ │ │ ├── eel_edit.h │ │ │ └── test.cpp │ │ ├── win32_helpers.h │ │ ├── win32_hidpi.h │ │ ├── win32_printf.h │ │ ├── win32_utf8.c │ │ ├── win32_utf8.h │ │ ├── win7filedialog.cpp │ │ ├── win7filedialog.h │ │ ├── wingui │ │ │ ├── dlgitemborder.h │ │ │ ├── membitmap.h │ │ │ ├── richeditctrl.h │ │ │ ├── scrollbar │ │ │ │ ├── coolscroll.cpp │ │ │ │ └── coolscroll.h │ │ │ ├── virtwnd-controls.h │ │ │ ├── virtwnd-iaccessible.cpp │ │ │ ├── virtwnd-iconbutton.cpp │ │ │ ├── virtwnd-listbox.cpp │ │ │ ├── virtwnd-nsaccessibility.mm │ │ │ ├── virtwnd-skin.h │ │ │ ├── virtwnd-slider.cpp │ │ │ ├── virtwnd.cpp │ │ │ ├── virtwnd.h │ │ │ ├── wndsize.cpp │ │ │ └── wndsize.h │ │ ├── xmlparse.h │ │ ├── xmlparse_test.cpp │ │ ├── xsrand.h │ │ └── zlib │ │ │ ├── README │ │ │ ├── adler32.c │ │ │ ├── compress.c │ │ │ ├── crc32.c │ │ │ ├── crc32.h │ │ │ ├── deflate.c │ │ │ ├── deflate.h │ │ │ ├── gzclose.c │ │ │ ├── gzguts.h │ │ │ ├── gzlib.c │ │ │ ├── gzread.c │ │ │ ├── gzwrite.c │ │ │ ├── infback.c │ │ │ ├── inffast.c │ │ │ ├── inffast.h │ │ │ ├── inffixed.h │ │ │ ├── inflate.c │ │ │ ├── inflate.h │ │ │ ├── inftrees.c │ │ │ ├── inftrees.h │ │ │ ├── ioapi.c │ │ │ ├── ioapi.h │ │ │ ├── trees.c │ │ │ ├── trees.h │ │ │ ├── uncompr.c │ │ │ ├── unzip.c │ │ │ ├── unzip.h │ │ │ ├── zconf.h │ │ │ ├── zip.c │ │ │ ├── zip.h │ │ │ ├── zlib.h │ │ │ ├── zlib_import.h │ │ │ ├── zutil.c │ │ │ └── zutil.h │ ├── azure-pipelines.yml │ ├── common-ios.xcconfig │ ├── common-mac.xcconfig │ ├── common-web.mk │ ├── common-win.props │ ├── iPlug2.code-workspace │ └── lua │ │ ├── configgen.lua │ │ ├── iplug2.lua │ │ ├── semver.lua │ │ └── util.lua ├── liblsdj │ ├── .github │ │ └── workflows │ │ │ ├── build_and_test.yml │ │ │ └── deploy_tools.yml │ ├── .gitignore │ ├── .gitmodules │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── common │ │ ├── common.cpp │ │ ├── common.hpp │ │ ├── song_processor.cpp │ │ └── song_processor.hpp │ ├── dependency │ │ ├── ghc │ │ │ ├── LICENSE.txt │ │ │ ├── filesystem.hpp │ │ │ ├── fs_fwd.hpp │ │ │ ├── fs_impl.hpp │ │ │ ├── fs_std.hpp │ │ │ ├── fs_std_fwd.hpp │ │ │ └── fs_std_impl.hpp │ │ └── popl │ │ │ ├── LICENSE.txt │ │ │ └── popl.hpp │ ├── liblsdj │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── lsdj │ │ │ │ ├── allocator.h │ │ │ │ ├── chain.h │ │ │ │ ├── channel.h │ │ │ │ ├── command.h │ │ │ │ ├── compression.h │ │ │ │ ├── error.h │ │ │ │ ├── groove.h │ │ │ │ ├── instrument.h │ │ │ │ ├── panning.h │ │ │ │ ├── phrase.h │ │ │ │ ├── project.h │ │ │ │ ├── sav.h │ │ │ │ ├── song.h │ │ │ │ ├── speech.h │ │ │ │ ├── synth.h │ │ │ │ ├── table.h │ │ │ │ ├── version.h │ │ │ │ ├── vio.h │ │ │ │ └── wave.h │ │ ├── src │ │ │ ├── allocator.c │ │ │ ├── bytes.c │ │ │ ├── bytes.h │ │ │ ├── chain.c │ │ │ ├── compression.c │ │ │ ├── defaults.h │ │ │ ├── error.c │ │ │ ├── groove.c │ │ │ ├── instrument.c │ │ │ ├── instrument_kit.c │ │ │ ├── instrument_noise.c │ │ │ ├── instrument_pulse.c │ │ │ ├── instrument_wave.c │ │ │ ├── phrase.c │ │ │ ├── project.c │ │ │ ├── sav.c │ │ │ ├── song.c │ │ │ ├── song_empty.c │ │ │ ├── song_offsets.h │ │ │ ├── speech.c │ │ │ ├── synth.c │ │ │ ├── table.c │ │ │ ├── vio.c │ │ │ └── wave.c │ │ └── test │ │ │ ├── CMakeLists.txt │ │ │ ├── file.cpp │ │ │ ├── file.hpp │ │ │ ├── format.cpp │ │ │ ├── main.cpp │ │ │ ├── project.cpp │ │ │ ├── sav.cpp │ │ │ ├── song.cpp │ │ │ └── vio.cpp │ ├── lsdj_clean │ │ ├── CMakeLists.txt │ │ ├── clean_processor.cpp │ │ ├── clean_processor.hpp │ │ └── main.cpp │ ├── lsdj_mono │ │ ├── CMakeLists.txt │ │ ├── main.cpp │ │ ├── mono_processor.cpp │ │ └── mono_processor.hpp │ ├── lsdj_wavetable_import │ │ ├── CMakeLists.txt │ │ ├── main.cpp │ │ ├── wavetable_importer.cpp │ │ └── wavetable_importer.hpp │ ├── lsdsng_export │ │ ├── CMakeLists.txt │ │ ├── exporter.cpp │ │ ├── exporter.hpp │ │ └── main.cpp │ ├── lsdsng_import │ │ ├── CMakeLists.txt │ │ ├── importer.cpp │ │ ├── importer.hpp │ │ └── main.cpp │ └── resources │ │ ├── CREDITS.txt │ │ ├── lsdsng │ │ └── happy_birthday.lsdsng │ │ ├── raw │ │ └── happy_birthday.raw │ │ └── sav │ │ ├── all.sav │ │ ├── happy_birthday.sav │ │ ├── lsdj499.sav │ │ ├── lsdj620.sav │ │ ├── lsdj668.sav │ │ ├── lsdj671.sav │ │ ├── lsdj690.sav │ │ ├── lsdj732.sav │ │ ├── lsdj790.sav │ │ ├── lsdj798.sav │ │ ├── lsdj834.sav │ │ └── lsdj888.sav ├── lua-5.3.5 │ ├── Makefile │ ├── README │ ├── doc │ │ ├── contents.html │ │ ├── index.css │ │ ├── logo.gif │ │ ├── lua.1 │ │ ├── lua.css │ │ ├── luac.1 │ │ ├── manual.css │ │ ├── manual.html │ │ ├── osi-certified-72x60.png │ │ └── readme.html │ └── src │ │ ├── Makefile │ │ ├── lapi.c │ │ ├── lapi.h │ │ ├── lauxlib.c │ │ ├── lauxlib.h │ │ ├── lbaselib.c │ │ ├── lbitlib.c │ │ ├── lcode.c │ │ ├── lcode.h │ │ ├── lcorolib.c │ │ ├── lctype.c │ │ ├── lctype.h │ │ ├── ldblib.c │ │ ├── ldebug.c │ │ ├── ldebug.h │ │ ├── ldo.c │ │ ├── ldo.h │ │ ├── ldump.c │ │ ├── lfunc.c │ │ ├── lfunc.h │ │ ├── lgc.c │ │ ├── lgc.h │ │ ├── linit.c │ │ ├── liolib.c │ │ ├── llex.c │ │ ├── llex.h │ │ ├── llimits.h │ │ ├── lmathlib.c │ │ ├── lmem.c │ │ ├── lmem.h │ │ ├── loadlib.c │ │ ├── lobject.c │ │ ├── lobject.h │ │ ├── lopcodes.c │ │ ├── lopcodes.h │ │ ├── loslib.c │ │ ├── lparser.c │ │ ├── lparser.h │ │ ├── lprefix.h │ │ ├── lstate.c │ │ ├── lstate.h │ │ ├── lstring.c │ │ ├── lstring.h │ │ ├── lstrlib.c │ │ ├── ltable.c │ │ ├── ltable.h │ │ ├── ltablib.c │ │ ├── ltm.c │ │ ├── ltm.h │ │ ├── lua.c │ │ ├── lua.h │ │ ├── lua.hpp │ │ ├── luac.c │ │ ├── luaconf.h │ │ ├── lualib.h │ │ ├── lundump.c │ │ ├── lundump.h │ │ ├── lutf8lib.c │ │ ├── lvm.c │ │ ├── lvm.h │ │ ├── lzio.c │ │ └── lzio.h ├── minizip-ng │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── codeql-analysis.yml │ │ │ ├── fuzz.yml │ │ │ └── main.yml │ ├── CMakeLists.txt │ ├── INDEX.md │ ├── LICENSE │ ├── README.md │ ├── doc │ │ ├── README.md │ │ ├── mz_compress_level.md │ │ ├── mz_compress_method.md │ │ ├── mz_encoding.md │ │ ├── mz_error.md │ │ ├── mz_extrafield.md │ │ ├── mz_hash.md │ │ ├── mz_host_system.md │ │ ├── mz_open_mode.md │ │ ├── mz_os.md │ │ ├── mz_seek.md │ │ ├── mz_zip.md │ │ ├── mz_zip64.md │ │ ├── mz_zip_file.md │ │ ├── mz_zip_rw.md │ │ └── zip │ │ │ ├── appnote.iz.txt │ │ │ ├── appnote.txt │ │ │ ├── extra.fld.txt │ │ │ └── winzip_aes.md │ ├── lib │ │ ├── bzip2 │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── CHANGES │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── Makefile-libbz2_so │ │ │ ├── README │ │ │ ├── README.COMPILATION.PROBLEMS │ │ │ ├── README.XML.STUFF │ │ │ ├── blocksort.c │ │ │ ├── bz-common.xsl │ │ │ ├── bz-fo.xsl │ │ │ ├── bz-html.xsl │ │ │ ├── bzdiff │ │ │ ├── bzdiff.1 │ │ │ ├── bzgrep │ │ │ ├── bzgrep.1 │ │ │ ├── bzip.css │ │ │ ├── bzip2.1 │ │ │ ├── bzip2.c │ │ │ ├── bzip2recover.c │ │ │ ├── bzlib.c │ │ │ ├── bzlib.h │ │ │ ├── bzlib_private.h │ │ │ ├── bzmore │ │ │ ├── bzmore.1 │ │ │ ├── compress.c │ │ │ ├── crctable.c │ │ │ ├── decompress.c │ │ │ ├── dlltest.c │ │ │ ├── dlltest.dsp │ │ │ ├── entities.xml │ │ │ ├── format.pl │ │ │ ├── huffman.c │ │ │ ├── libbz2.def │ │ │ ├── libbz2.dsp │ │ │ ├── makefile.msc │ │ │ ├── manual.xml │ │ │ ├── mk251.c │ │ │ ├── prepare-release.sh │ │ │ ├── randtable.c │ │ │ ├── release-update.sh │ │ │ ├── sample1.bz2 │ │ │ ├── sample1.ref │ │ │ ├── sample2.bz2 │ │ │ ├── sample2.ref │ │ │ ├── sample3.bz2 │ │ │ ├── sample3.ref │ │ │ ├── spewG.c │ │ │ ├── unzcrash.c │ │ │ ├── words0 │ │ │ ├── words1 │ │ │ ├── words2 │ │ │ ├── words3 │ │ │ └── xmlproc.sh │ │ ├── liblzma │ │ │ ├── .gitignore │ │ │ ├── AUTHORS │ │ │ ├── CMakeLists.txt │ │ │ ├── COPYING │ │ │ ├── COPYING.GPLv2 │ │ │ ├── COPYING.GPLv3 │ │ │ ├── COPYING.LGPLv2.1 │ │ │ ├── ChangeLog │ │ │ ├── Doxyfile.in │ │ │ ├── INSTALL │ │ │ ├── INSTALL.generic │ │ │ ├── Makefile.am │ │ │ ├── NEWS │ │ │ ├── PACKAGERS │ │ │ ├── README │ │ │ ├── THANKS │ │ │ ├── TODO │ │ │ ├── autogen.sh │ │ │ ├── cmake │ │ │ │ ├── tuklib_common.cmake │ │ │ │ ├── tuklib_cpucores.cmake │ │ │ │ ├── tuklib_integer.cmake │ │ │ │ ├── tuklib_mbstr.cmake │ │ │ │ ├── tuklib_physmem.cmake │ │ │ │ └── tuklib_progname.cmake │ │ │ ├── configure.ac │ │ │ ├── debug │ │ │ │ ├── Makefile.am │ │ │ │ ├── README │ │ │ │ ├── crc32.c │ │ │ │ ├── full_flush.c │ │ │ │ ├── hex2bin.c │ │ │ │ ├── known_sizes.c │ │ │ │ ├── memusage.c │ │ │ │ ├── repeat.c │ │ │ │ ├── sync_flush.c │ │ │ │ └── translation.bash │ │ │ ├── doc │ │ │ │ ├── examples │ │ │ │ │ ├── 00_README.txt │ │ │ │ │ ├── 01_compress_easy.c │ │ │ │ │ ├── 02_decompress.c │ │ │ │ │ ├── 03_compress_custom.c │ │ │ │ │ ├── 04_compress_easy_mt.c │ │ │ │ │ ├── 11_file_info.c │ │ │ │ │ └── Makefile │ │ │ │ ├── examples_old │ │ │ │ │ ├── xz_pipe_comp.c │ │ │ │ │ └── xz_pipe_decomp.c │ │ │ │ ├── faq.txt │ │ │ │ ├── history.txt │ │ │ │ ├── lzma-file-format.txt │ │ │ │ └── xz-file-format.txt │ │ │ ├── dos │ │ │ │ ├── INSTALL.txt │ │ │ │ ├── Makefile │ │ │ │ ├── README.txt │ │ │ │ └── config.h │ │ │ ├── extra │ │ │ │ ├── 7z2lzma │ │ │ │ │ └── 7z2lzma.bash │ │ │ │ └── scanlzma │ │ │ │ │ └── scanlzma.c │ │ │ ├── lib │ │ │ │ ├── Makefile.am │ │ │ │ ├── getopt.c │ │ │ │ ├── getopt.in.h │ │ │ │ ├── getopt1.c │ │ │ │ └── getopt_int.h │ │ │ ├── m4 │ │ │ │ ├── .gitignore │ │ │ │ ├── ax_check_capsicum.m4 │ │ │ │ ├── ax_pthread.m4 │ │ │ │ ├── getopt.m4 │ │ │ │ ├── posix-shell.m4 │ │ │ │ ├── tuklib_common.m4 │ │ │ │ ├── tuklib_cpucores.m4 │ │ │ │ ├── tuklib_integer.m4 │ │ │ │ ├── tuklib_mbstr.m4 │ │ │ │ ├── tuklib_physmem.m4 │ │ │ │ ├── tuklib_progname.m4 │ │ │ │ └── visibility.m4 │ │ │ ├── macosx │ │ │ │ └── build.sh │ │ │ ├── po │ │ │ │ ├── .gitignore │ │ │ │ ├── LINGUAS │ │ │ │ ├── Makevars │ │ │ │ ├── POTFILES.in │ │ │ │ ├── cs.po │ │ │ │ ├── de.po │ │ │ │ ├── fr.po │ │ │ │ ├── it.po │ │ │ │ ├── pl.po │ │ │ │ └── vi.po │ │ │ ├── po4a │ │ │ │ ├── .gitignore │ │ │ │ ├── de.po │ │ │ │ ├── po4a.conf │ │ │ │ └── update-po │ │ │ ├── src │ │ │ │ ├── Makefile.am │ │ │ │ ├── common │ │ │ │ │ ├── common_w32res.rc │ │ │ │ │ ├── mythread.h │ │ │ │ │ ├── sysdefs.h │ │ │ │ │ ├── tuklib_common.h │ │ │ │ │ ├── tuklib_config.h │ │ │ │ │ ├── tuklib_cpucores.c │ │ │ │ │ ├── tuklib_cpucores.h │ │ │ │ │ ├── tuklib_exit.c │ │ │ │ │ ├── tuklib_exit.h │ │ │ │ │ ├── tuklib_gettext.h │ │ │ │ │ ├── tuklib_integer.h │ │ │ │ │ ├── tuklib_mbstr.h │ │ │ │ │ ├── tuklib_mbstr_fw.c │ │ │ │ │ ├── tuklib_mbstr_width.c │ │ │ │ │ ├── tuklib_open_stdxxx.c │ │ │ │ │ ├── tuklib_open_stdxxx.h │ │ │ │ │ ├── tuklib_physmem.c │ │ │ │ │ ├── tuklib_physmem.h │ │ │ │ │ ├── tuklib_progname.c │ │ │ │ │ └── tuklib_progname.h │ │ │ │ ├── liblzma │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── api │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── lzma.h │ │ │ │ │ │ └── lzma │ │ │ │ │ │ │ ├── base.h │ │ │ │ │ │ │ ├── bcj.h │ │ │ │ │ │ │ ├── block.h │ │ │ │ │ │ │ ├── check.h │ │ │ │ │ │ │ ├── container.h │ │ │ │ │ │ │ ├── delta.h │ │ │ │ │ │ │ ├── filter.h │ │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ │ ├── index.h │ │ │ │ │ │ │ ├── index_hash.h │ │ │ │ │ │ │ ├── lzma12.h │ │ │ │ │ │ │ ├── stream_flags.h │ │ │ │ │ │ │ ├── version.h │ │ │ │ │ │ │ └── vli.h │ │ │ │ │ ├── check │ │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ │ ├── check.c │ │ │ │ │ │ ├── check.h │ │ │ │ │ │ ├── crc32_fast.c │ │ │ │ │ │ ├── crc32_small.c │ │ │ │ │ │ ├── crc32_table.c │ │ │ │ │ │ ├── crc32_table_be.h │ │ │ │ │ │ ├── crc32_table_le.h │ │ │ │ │ │ ├── crc32_tablegen.c │ │ │ │ │ │ ├── crc32_x86.S │ │ │ │ │ │ ├── crc64_fast.c │ │ │ │ │ │ ├── crc64_small.c │ │ │ │ │ │ ├── crc64_table.c │ │ │ │ │ │ ├── crc64_table_be.h │ │ │ │ │ │ ├── crc64_table_le.h │ │ │ │ │ │ ├── crc64_tablegen.c │ │ │ │ │ │ ├── crc64_x86.S │ │ │ │ │ │ ├── crc_macros.h │ │ │ │ │ │ └── sha256.c │ │ │ │ │ ├── common │ │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ │ ├── alone_decoder.c │ │ │ │ │ │ ├── alone_decoder.h │ │ │ │ │ │ ├── alone_encoder.c │ │ │ │ │ │ ├── auto_decoder.c │ │ │ │ │ │ ├── block_buffer_decoder.c │ │ │ │ │ │ ├── block_buffer_encoder.c │ │ │ │ │ │ ├── block_buffer_encoder.h │ │ │ │ │ │ ├── block_decoder.c │ │ │ │ │ │ ├── block_decoder.h │ │ │ │ │ │ ├── block_encoder.c │ │ │ │ │ │ ├── block_encoder.h │ │ │ │ │ │ ├── block_header_decoder.c │ │ │ │ │ │ ├── block_header_encoder.c │ │ │ │ │ │ ├── block_util.c │ │ │ │ │ │ ├── common.c │ │ │ │ │ │ ├── common.h │ │ │ │ │ │ ├── easy_buffer_encoder.c │ │ │ │ │ │ ├── easy_decoder_memusage.c │ │ │ │ │ │ ├── easy_encoder.c │ │ │ │ │ │ ├── easy_encoder_memusage.c │ │ │ │ │ │ ├── easy_preset.c │ │ │ │ │ │ ├── easy_preset.h │ │ │ │ │ │ ├── erofs_decoder.c │ │ │ │ │ │ ├── erofs_encoder.c │ │ │ │ │ │ ├── file_info.c │ │ │ │ │ │ ├── filter_buffer_decoder.c │ │ │ │ │ │ ├── filter_buffer_encoder.c │ │ │ │ │ │ ├── filter_common.c │ │ │ │ │ │ ├── filter_common.h │ │ │ │ │ │ ├── filter_decoder.c │ │ │ │ │ │ ├── filter_decoder.h │ │ │ │ │ │ ├── filter_encoder.c │ │ │ │ │ │ ├── filter_encoder.h │ │ │ │ │ │ ├── filter_flags_decoder.c │ │ │ │ │ │ ├── filter_flags_encoder.c │ │ │ │ │ │ ├── hardware_cputhreads.c │ │ │ │ │ │ ├── hardware_physmem.c │ │ │ │ │ │ ├── index.c │ │ │ │ │ │ ├── index.h │ │ │ │ │ │ ├── index_decoder.c │ │ │ │ │ │ ├── index_decoder.h │ │ │ │ │ │ ├── index_encoder.c │ │ │ │ │ │ ├── index_encoder.h │ │ │ │ │ │ ├── index_hash.c │ │ │ │ │ │ ├── memcmplen.h │ │ │ │ │ │ ├── outqueue.c │ │ │ │ │ │ ├── outqueue.h │ │ │ │ │ │ ├── stream_buffer_decoder.c │ │ │ │ │ │ ├── stream_buffer_encoder.c │ │ │ │ │ │ ├── stream_decoder.c │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ ├── stream_encoder.c │ │ │ │ │ │ ├── stream_encoder_mt.c │ │ │ │ │ │ ├── stream_flags_common.c │ │ │ │ │ │ ├── stream_flags_common.h │ │ │ │ │ │ ├── stream_flags_decoder.c │ │ │ │ │ │ ├── stream_flags_encoder.c │ │ │ │ │ │ ├── vli_decoder.c │ │ │ │ │ │ ├── vli_encoder.c │ │ │ │ │ │ └── vli_size.c │ │ │ │ │ ├── delta │ │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ │ ├── delta_common.c │ │ │ │ │ │ ├── delta_common.h │ │ │ │ │ │ ├── delta_decoder.c │ │ │ │ │ │ ├── delta_decoder.h │ │ │ │ │ │ ├── delta_encoder.c │ │ │ │ │ │ ├── delta_encoder.h │ │ │ │ │ │ └── delta_private.h │ │ │ │ │ ├── liblzma.map │ │ │ │ │ ├── liblzma.pc.in │ │ │ │ │ ├── liblzma_w32res.rc │ │ │ │ │ ├── lz │ │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ │ ├── lz_decoder.c │ │ │ │ │ │ ├── lz_decoder.h │ │ │ │ │ │ ├── lz_encoder.c │ │ │ │ │ │ ├── lz_encoder.h │ │ │ │ │ │ ├── lz_encoder_hash.h │ │ │ │ │ │ ├── lz_encoder_hash_table.h │ │ │ │ │ │ └── lz_encoder_mf.c │ │ │ │ │ ├── lzma │ │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ │ ├── fastpos.h │ │ │ │ │ │ ├── fastpos_table.c │ │ │ │ │ │ ├── fastpos_tablegen.c │ │ │ │ │ │ ├── lzma2_decoder.c │ │ │ │ │ │ ├── lzma2_decoder.h │ │ │ │ │ │ ├── lzma2_encoder.c │ │ │ │ │ │ ├── lzma2_encoder.h │ │ │ │ │ │ ├── lzma_common.h │ │ │ │ │ │ ├── lzma_decoder.c │ │ │ │ │ │ ├── lzma_decoder.h │ │ │ │ │ │ ├── lzma_encoder.c │ │ │ │ │ │ ├── lzma_encoder.h │ │ │ │ │ │ ├── lzma_encoder_optimum_fast.c │ │ │ │ │ │ ├── lzma_encoder_optimum_normal.c │ │ │ │ │ │ ├── lzma_encoder_presets.c │ │ │ │ │ │ └── lzma_encoder_private.h │ │ │ │ │ ├── rangecoder │ │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ │ ├── price.h │ │ │ │ │ │ ├── price_table.c │ │ │ │ │ │ ├── price_tablegen.c │ │ │ │ │ │ ├── range_common.h │ │ │ │ │ │ ├── range_decoder.h │ │ │ │ │ │ └── range_encoder.h │ │ │ │ │ ├── simple │ │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ │ ├── arm.c │ │ │ │ │ │ ├── armthumb.c │ │ │ │ │ │ ├── ia64.c │ │ │ │ │ │ ├── powerpc.c │ │ │ │ │ │ ├── simple_coder.c │ │ │ │ │ │ ├── simple_coder.h │ │ │ │ │ │ ├── simple_decoder.c │ │ │ │ │ │ ├── simple_decoder.h │ │ │ │ │ │ ├── simple_encoder.c │ │ │ │ │ │ ├── simple_encoder.h │ │ │ │ │ │ ├── simple_private.h │ │ │ │ │ │ ├── sparc.c │ │ │ │ │ │ └── x86.c │ │ │ │ │ └── validate_map.sh │ │ │ │ ├── lzmainfo │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── lzmainfo.1 │ │ │ │ │ ├── lzmainfo.c │ │ │ │ │ └── lzmainfo_w32res.rc │ │ │ │ ├── scripts │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── xzdiff.1 │ │ │ │ │ ├── xzdiff.in │ │ │ │ │ ├── xzgrep.1 │ │ │ │ │ ├── xzgrep.in │ │ │ │ │ ├── xzless.1 │ │ │ │ │ ├── xzless.in │ │ │ │ │ ├── xzmore.1 │ │ │ │ │ └── xzmore.in │ │ │ │ ├── xz │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── args.c │ │ │ │ │ ├── args.h │ │ │ │ │ ├── coder.c │ │ │ │ │ ├── coder.h │ │ │ │ │ ├── file_io.c │ │ │ │ │ ├── file_io.h │ │ │ │ │ ├── hardware.c │ │ │ │ │ ├── hardware.h │ │ │ │ │ ├── list.c │ │ │ │ │ ├── list.h │ │ │ │ │ ├── main.c │ │ │ │ │ ├── main.h │ │ │ │ │ ├── message.c │ │ │ │ │ ├── message.h │ │ │ │ │ ├── mytime.c │ │ │ │ │ ├── mytime.h │ │ │ │ │ ├── options.c │ │ │ │ │ ├── options.h │ │ │ │ │ ├── private.h │ │ │ │ │ ├── signals.c │ │ │ │ │ ├── signals.h │ │ │ │ │ ├── suffix.c │ │ │ │ │ ├── suffix.h │ │ │ │ │ ├── util.c │ │ │ │ │ ├── util.h │ │ │ │ │ ├── xz.1 │ │ │ │ │ └── xz_w32res.rc │ │ │ │ └── xzdec │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── lzmadec_w32res.rc │ │ │ │ │ ├── xzdec.1 │ │ │ │ │ ├── xzdec.c │ │ │ │ │ └── xzdec_w32res.rc │ │ │ ├── tests │ │ │ │ ├── Makefile.am │ │ │ │ ├── bcj_test.c │ │ │ │ ├── compress_prepared_bcj_sparc │ │ │ │ ├── compress_prepared_bcj_x86 │ │ │ │ ├── create_compress_files.c │ │ │ │ ├── files │ │ │ │ │ ├── README │ │ │ │ │ ├── bad-0-backward_size.xz │ │ │ │ │ ├── bad-0-empty-truncated.xz │ │ │ │ │ ├── bad-0-footer_magic.xz │ │ │ │ │ ├── bad-0-header_magic.xz │ │ │ │ │ ├── bad-0-nonempty_index.xz │ │ │ │ │ ├── bad-0cat-alone.xz │ │ │ │ │ ├── bad-0cat-header_magic.xz │ │ │ │ │ ├── bad-0catpad-empty.xz │ │ │ │ │ ├── bad-0pad-empty.xz │ │ │ │ │ ├── bad-1-block_header-1.xz │ │ │ │ │ ├── bad-1-block_header-2.xz │ │ │ │ │ ├── bad-1-block_header-3.xz │ │ │ │ │ ├── bad-1-block_header-4.xz │ │ │ │ │ ├── bad-1-block_header-5.xz │ │ │ │ │ ├── bad-1-block_header-6.xz │ │ │ │ │ ├── bad-1-check-crc32-2.xz │ │ │ │ │ ├── bad-1-check-crc32.xz │ │ │ │ │ ├── bad-1-check-crc64.xz │ │ │ │ │ ├── bad-1-check-sha256.xz │ │ │ │ │ ├── bad-1-lzma2-1.xz │ │ │ │ │ ├── bad-1-lzma2-10.xz │ │ │ │ │ ├── bad-1-lzma2-2.xz │ │ │ │ │ ├── bad-1-lzma2-3.xz │ │ │ │ │ ├── bad-1-lzma2-4.xz │ │ │ │ │ ├── bad-1-lzma2-5.xz │ │ │ │ │ ├── bad-1-lzma2-6.xz │ │ │ │ │ ├── bad-1-lzma2-7.xz │ │ │ │ │ ├── bad-1-lzma2-8.xz │ │ │ │ │ ├── bad-1-lzma2-9.xz │ │ │ │ │ ├── bad-1-stream_flags-1.xz │ │ │ │ │ ├── bad-1-stream_flags-2.xz │ │ │ │ │ ├── bad-1-stream_flags-3.xz │ │ │ │ │ ├── bad-1-vli-1.xz │ │ │ │ │ ├── bad-1-vli-2.xz │ │ │ │ │ ├── bad-2-compressed_data_padding.xz │ │ │ │ │ ├── bad-2-index-1.xz │ │ │ │ │ ├── bad-2-index-2.xz │ │ │ │ │ ├── bad-2-index-3.xz │ │ │ │ │ ├── bad-2-index-4.xz │ │ │ │ │ ├── bad-2-index-5.xz │ │ │ │ │ ├── good-0-empty.xz │ │ │ │ │ ├── good-0cat-empty.xz │ │ │ │ │ ├── good-0catpad-empty.xz │ │ │ │ │ ├── good-0pad-empty.xz │ │ │ │ │ ├── good-1-3delta-lzma2.xz │ │ │ │ │ ├── good-1-block_header-1.xz │ │ │ │ │ ├── good-1-block_header-2.xz │ │ │ │ │ ├── good-1-block_header-3.xz │ │ │ │ │ ├── good-1-check-crc32.xz │ │ │ │ │ ├── good-1-check-crc64.xz │ │ │ │ │ ├── good-1-check-none.xz │ │ │ │ │ ├── good-1-check-sha256.xz │ │ │ │ │ ├── good-1-delta-lzma2.tiff.xz │ │ │ │ │ ├── good-1-lzma2-1.xz │ │ │ │ │ ├── good-1-lzma2-2.xz │ │ │ │ │ ├── good-1-lzma2-3.xz │ │ │ │ │ ├── good-1-lzma2-4.xz │ │ │ │ │ ├── good-1-lzma2-5.xz │ │ │ │ │ ├── good-1-sparc-lzma2.xz │ │ │ │ │ ├── good-1-x86-lzma2.xz │ │ │ │ │ ├── good-2-lzma2.xz │ │ │ │ │ ├── unsupported-block_header.xz │ │ │ │ │ ├── unsupported-check.xz │ │ │ │ │ ├── unsupported-filter_flags-1.xz │ │ │ │ │ ├── unsupported-filter_flags-2.xz │ │ │ │ │ └── unsupported-filter_flags-3.xz │ │ │ │ ├── ossfuzz │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── config │ │ │ │ │ │ ├── fuzz.dict │ │ │ │ │ │ └── fuzz.options │ │ │ │ │ └── fuzz.c │ │ │ │ ├── test_bcj_exact_size.c │ │ │ │ ├── test_block_header.c │ │ │ │ ├── test_check.c │ │ │ │ ├── test_compress.sh │ │ │ │ ├── test_files.sh │ │ │ │ ├── test_filter_flags.c │ │ │ │ ├── test_index.c │ │ │ │ ├── test_scripts.sh │ │ │ │ ├── test_stream_flags.c │ │ │ │ ├── tests.h │ │ │ │ └── xzgrep_expected_output │ │ │ └── windows │ │ │ │ ├── INSTALL-MSVC.txt │ │ │ │ ├── INSTALL-MinGW.txt │ │ │ │ ├── README-Windows.txt │ │ │ │ ├── build.bash │ │ │ │ ├── vs2013 │ │ │ │ ├── config.h │ │ │ │ ├── liblzma.vcxproj │ │ │ │ ├── liblzma_dll.vcxproj │ │ │ │ └── xz_win.sln │ │ │ │ ├── vs2017 │ │ │ │ ├── config.h │ │ │ │ ├── liblzma.vcxproj │ │ │ │ ├── liblzma_dll.vcxproj │ │ │ │ └── xz_win.sln │ │ │ │ └── vs2019 │ │ │ │ ├── config.h │ │ │ │ ├── liblzma.vcxproj │ │ │ │ ├── liblzma_dll.vcxproj │ │ │ │ └── xz_win.sln │ │ ├── zlib-ng │ │ │ ├── .gitattributes │ │ │ ├── .github │ │ │ │ └── workflows │ │ │ │ │ ├── analyze.yml │ │ │ │ │ ├── cmake.yml │ │ │ │ │ ├── configure.yml │ │ │ │ │ ├── fuzz.yml │ │ │ │ │ ├── libpng.yml │ │ │ │ │ ├── nmake.yml │ │ │ │ │ ├── pkgcheck.yml │ │ │ │ │ └── release.yml │ │ │ ├── .gitignore │ │ │ ├── .shellcheckrc │ │ │ ├── CMakeLists.txt │ │ │ ├── FAQ.zlib │ │ │ ├── INDEX.md │ │ │ ├── LICENSE.md │ │ │ ├── Makefile.in │ │ │ ├── PORTING.md │ │ │ ├── README.md │ │ │ ├── adler32.c │ │ │ ├── adler32_p.h │ │ │ ├── arch │ │ │ │ ├── .gitignore │ │ │ │ ├── arm │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── adler32_neon.c │ │ │ │ │ ├── arm.h │ │ │ │ │ ├── armfeature.c │ │ │ │ │ ├── chunkset_neon.c │ │ │ │ │ ├── crc32_acle.c │ │ │ │ │ ├── ctzl.h │ │ │ │ │ ├── insert_string_acle.c │ │ │ │ │ └── slide_neon.c │ │ │ │ ├── generic │ │ │ │ │ └── Makefile.in │ │ │ │ ├── power │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── adler32_power8.c │ │ │ │ │ ├── power.c │ │ │ │ │ ├── power.h │ │ │ │ │ └── slide_hash_power8.c │ │ │ │ ├── s390 │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── README.md │ │ │ │ │ ├── dfltcc_common.c │ │ │ │ │ ├── dfltcc_common.h │ │ │ │ │ ├── dfltcc_deflate.c │ │ │ │ │ ├── dfltcc_deflate.h │ │ │ │ │ ├── dfltcc_detail.h │ │ │ │ │ ├── dfltcc_inflate.c │ │ │ │ │ └── dfltcc_inflate.h │ │ │ │ └── x86 │ │ │ │ │ ├── INDEX.md │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── adler32_avx.c │ │ │ │ │ ├── adler32_ssse3.c │ │ │ │ │ ├── chunkset_avx.c │ │ │ │ │ ├── chunkset_sse.c │ │ │ │ │ ├── compare258_avx.c │ │ │ │ │ ├── compare258_sse.c │ │ │ │ │ ├── crc_folding.c │ │ │ │ │ ├── crc_folding.h │ │ │ │ │ ├── insert_string_sse.c │ │ │ │ │ ├── slide_avx.c │ │ │ │ │ ├── slide_sse.c │ │ │ │ │ ├── x86.c │ │ │ │ │ └── x86.h │ │ │ ├── chunkset.c │ │ │ ├── chunkset_tpl.h │ │ │ ├── cmake │ │ │ │ ├── detect-arch.c │ │ │ │ ├── detect-arch.cmake │ │ │ │ ├── detect-coverage.cmake │ │ │ │ ├── detect-install-dirs.cmake │ │ │ │ ├── detect-sanitizer.cmake │ │ │ │ ├── run-and-compare.cmake │ │ │ │ ├── run-and-redirect.cmake │ │ │ │ ├── test-compress.cmake │ │ │ │ ├── test-tools.cmake │ │ │ │ ├── toolchain-aarch64.cmake │ │ │ │ ├── toolchain-arm.cmake │ │ │ │ ├── toolchain-mingw-i686.cmake │ │ │ │ ├── toolchain-mingw-x86_64.cmake │ │ │ │ ├── toolchain-powerpc.cmake │ │ │ │ ├── toolchain-powerpc64.cmake │ │ │ │ ├── toolchain-powerpc64le.cmake │ │ │ │ ├── toolchain-s390x.cmake │ │ │ │ └── toolchain-sparc64.cmake │ │ │ ├── compare258.c │ │ │ ├── compress.c │ │ │ ├── configure │ │ │ ├── crc32.c │ │ │ ├── crc32_comb.c │ │ │ ├── crc32_comb_tbl.h │ │ │ ├── crc32_p.h │ │ │ ├── crc32_tbl.h │ │ │ ├── deflate.c │ │ │ ├── deflate.h │ │ │ ├── deflate_fast.c │ │ │ ├── deflate_medium.c │ │ │ ├── deflate_p.h │ │ │ ├── deflate_quick.c │ │ │ ├── deflate_slow.c │ │ │ ├── doc │ │ │ │ ├── algorithm.txt │ │ │ │ ├── rfc1950.txt │ │ │ │ ├── rfc1951.txt │ │ │ │ ├── rfc1952.txt │ │ │ │ └── txtvsbin.txt │ │ │ ├── fallback_builtins.h │ │ │ ├── functable.c │ │ │ ├── functable.h │ │ │ ├── gzguts.h │ │ │ ├── gzlib.c │ │ │ ├── gzread.c │ │ │ ├── gzwrite.c │ │ │ ├── infback.c │ │ │ ├── inffast.c │ │ │ ├── inffast.h │ │ │ ├── inffixed_tbl.h │ │ │ ├── inflate.c │ │ │ ├── inflate.h │ │ │ ├── inflate_p.h │ │ │ ├── inftrees.c │ │ │ ├── inftrees.h │ │ │ ├── insert_string.c │ │ │ ├── insert_string_tpl.h │ │ │ ├── match_tpl.h │ │ │ ├── test │ │ │ │ ├── .gitignore │ │ │ │ ├── CVE-2002-0059 │ │ │ │ │ └── test.gz │ │ │ │ ├── CVE-2003-0107.c │ │ │ │ ├── CVE-2004-0797 │ │ │ │ │ └── test.gz │ │ │ │ ├── CVE-2005-1849 │ │ │ │ │ └── test.gz │ │ │ │ ├── CVE-2005-2096 │ │ │ │ │ └── test.gz │ │ │ │ ├── GH-361 │ │ │ │ │ └── test.txt │ │ │ │ ├── GH-364 │ │ │ │ │ └── test.bin │ │ │ │ ├── GH-382 │ │ │ │ │ └── defneg3.dat │ │ │ │ ├── GH-751 │ │ │ │ │ └── test.txt │ │ │ │ ├── Makefile.in │ │ │ │ ├── README.md │ │ │ │ ├── abi │ │ │ │ │ ├── ignore │ │ │ │ │ ├── zlib-v1.2.11-arm-linux-gnueabihf.abi │ │ │ │ │ └── zlib-v1.2.11-x86_64-linux-gnu.abi │ │ │ │ ├── abicheck.md │ │ │ │ ├── abicheck.sh │ │ │ │ ├── adler32_test.c │ │ │ │ ├── data │ │ │ │ │ ├── fireworks.jpg │ │ │ │ │ ├── lcet10.txt │ │ │ │ │ └── paper-100k.pdf │ │ │ │ ├── deflate_quick_bi_valid.c │ │ │ │ ├── deflate_quick_block_open.c │ │ │ │ ├── example.c │ │ │ │ ├── fuzz │ │ │ │ │ ├── checksum_fuzzer.c │ │ │ │ │ ├── compress_fuzzer.c │ │ │ │ │ ├── example_dict_fuzzer.c │ │ │ │ │ ├── example_flush_fuzzer.c │ │ │ │ │ ├── example_large_fuzzer.c │ │ │ │ │ ├── example_small_fuzzer.c │ │ │ │ │ ├── minigzip_fuzzer.c │ │ │ │ │ └── standalone_fuzz_target_runner.c │ │ │ │ ├── hash_head_0.c │ │ │ │ ├── infcover.c │ │ │ │ ├── minideflate.c │ │ │ │ ├── minigzip.c │ │ │ │ ├── pkgcheck.sh │ │ │ │ ├── switchlevels.c │ │ │ │ └── testCVEinputs.sh │ │ │ ├── tools │ │ │ │ ├── codecov-upload.sh │ │ │ │ ├── config.sub │ │ │ │ ├── makecrct.c │ │ │ │ ├── makefixed.c │ │ │ │ └── maketrees.c │ │ │ ├── trees.c │ │ │ ├── trees.h │ │ │ ├── trees_emit.h │ │ │ ├── trees_tbl.h │ │ │ ├── uncompr.c │ │ │ ├── win32 │ │ │ │ ├── DLL_FAQ.txt │ │ │ │ ├── Makefile.a64 │ │ │ │ ├── Makefile.arm │ │ │ │ ├── Makefile.msc │ │ │ │ ├── README-WIN32.txt │ │ │ │ ├── zlib-ng.def │ │ │ │ ├── zlib-ng1.rc │ │ │ │ ├── zlib.def │ │ │ │ ├── zlib1.rc │ │ │ │ └── zlibcompat.def │ │ │ ├── zbuild.h │ │ │ ├── zconf-ng.h.in │ │ │ ├── zconf.h.in │ │ │ ├── zendian.h │ │ │ ├── zlib-ng.h │ │ │ ├── zlib-ng.map │ │ │ ├── zlib.h │ │ │ ├── zlib.map │ │ │ ├── zlib.pc.cmakein │ │ │ ├── zlib.pc.in │ │ │ ├── zutil.c │ │ │ ├── zutil.h │ │ │ └── zutil_p.h │ │ ├── zlib │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── ChangeLog │ │ │ ├── FAQ │ │ │ ├── INDEX │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── adler32.c │ │ │ ├── amiga │ │ │ │ ├── Makefile.pup │ │ │ │ └── Makefile.sas │ │ │ ├── compress.c │ │ │ ├── configure │ │ │ ├── contrib │ │ │ │ ├── README.contrib │ │ │ │ ├── ada │ │ │ │ │ ├── buffer_demo.adb │ │ │ │ │ ├── mtest.adb │ │ │ │ │ ├── read.adb │ │ │ │ │ ├── readme.txt │ │ │ │ │ ├── test.adb │ │ │ │ │ ├── zlib-streams.adb │ │ │ │ │ ├── zlib-streams.ads │ │ │ │ │ ├── zlib-thin.adb │ │ │ │ │ ├── zlib-thin.ads │ │ │ │ │ ├── zlib.adb │ │ │ │ │ ├── zlib.ads │ │ │ │ │ └── zlib.gpr │ │ │ │ ├── amd64 │ │ │ │ │ └── amd64-match.S │ │ │ │ ├── asm686 │ │ │ │ │ ├── README.686 │ │ │ │ │ └── match.S │ │ │ │ ├── blast │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── blast.c │ │ │ │ │ ├── blast.h │ │ │ │ │ ├── test.pk │ │ │ │ │ └── test.txt │ │ │ │ ├── delphi │ │ │ │ │ ├── ZLib.pas │ │ │ │ │ ├── ZLibConst.pas │ │ │ │ │ ├── readme.txt │ │ │ │ │ └── zlibd32.mak │ │ │ │ ├── dotzlib │ │ │ │ │ ├── DotZLib.build │ │ │ │ │ ├── DotZLib.chm │ │ │ │ │ ├── DotZLib.sln │ │ │ │ │ ├── DotZLib │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── ChecksumImpl.cs │ │ │ │ │ │ ├── CircularBuffer.cs │ │ │ │ │ │ ├── CodecBase.cs │ │ │ │ │ │ ├── Deflater.cs │ │ │ │ │ │ ├── DotZLib.cs │ │ │ │ │ │ ├── DotZLib.csproj │ │ │ │ │ │ ├── GZipStream.cs │ │ │ │ │ │ ├── Inflater.cs │ │ │ │ │ │ └── UnitTests.cs │ │ │ │ │ ├── LICENSE_1_0.txt │ │ │ │ │ └── readme.txt │ │ │ │ ├── gcc_gvmat64 │ │ │ │ │ └── gvmat64.S │ │ │ │ ├── infback9 │ │ │ │ │ ├── README │ │ │ │ │ ├── infback9.c │ │ │ │ │ ├── infback9.h │ │ │ │ │ ├── inffix9.h │ │ │ │ │ ├── inflate9.h │ │ │ │ │ ├── inftree9.c │ │ │ │ │ └── inftree9.h │ │ │ │ ├── inflate86 │ │ │ │ │ ├── inffas86.c │ │ │ │ │ └── inffast.S │ │ │ │ ├── iostream │ │ │ │ │ ├── test.cpp │ │ │ │ │ ├── zfstream.cpp │ │ │ │ │ └── zfstream.h │ │ │ │ ├── iostream2 │ │ │ │ │ ├── zstream.h │ │ │ │ │ └── zstream_test.cpp │ │ │ │ ├── iostream3 │ │ │ │ │ ├── README │ │ │ │ │ ├── TODO │ │ │ │ │ ├── test.cc │ │ │ │ │ ├── zfstream.cc │ │ │ │ │ └── zfstream.h │ │ │ │ ├── masmx64 │ │ │ │ │ ├── bld_ml64.bat │ │ │ │ │ ├── gvmat64.asm │ │ │ │ │ ├── inffas8664.c │ │ │ │ │ ├── inffasx64.asm │ │ │ │ │ └── readme.txt │ │ │ │ ├── masmx86 │ │ │ │ │ ├── bld_ml32.bat │ │ │ │ │ ├── inffas32.asm │ │ │ │ │ ├── match686.asm │ │ │ │ │ └── readme.txt │ │ │ │ ├── minizip │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── MiniZip64_Changes.txt │ │ │ │ │ ├── MiniZip64_info.txt │ │ │ │ │ ├── configure.ac │ │ │ │ │ ├── crypt.h │ │ │ │ │ ├── ioapi.c │ │ │ │ │ ├── ioapi.h │ │ │ │ │ ├── iowin32.c │ │ │ │ │ ├── iowin32.h │ │ │ │ │ ├── make_vms.com │ │ │ │ │ ├── miniunz.c │ │ │ │ │ ├── miniunzip.1 │ │ │ │ │ ├── minizip.1 │ │ │ │ │ ├── minizip.c │ │ │ │ │ ├── minizip.pc.in │ │ │ │ │ ├── mztools.c │ │ │ │ │ ├── mztools.h │ │ │ │ │ ├── unzip.c │ │ │ │ │ ├── unzip.h │ │ │ │ │ ├── zip.c │ │ │ │ │ └── zip.h │ │ │ │ ├── pascal │ │ │ │ │ ├── example.pas │ │ │ │ │ ├── readme.txt │ │ │ │ │ ├── zlibd32.mak │ │ │ │ │ └── zlibpas.pas │ │ │ │ ├── puff │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── puff.c │ │ │ │ │ ├── puff.h │ │ │ │ │ ├── pufftest.c │ │ │ │ │ └── zeros.raw │ │ │ │ ├── testzlib │ │ │ │ │ ├── testzlib.c │ │ │ │ │ └── testzlib.txt │ │ │ │ ├── untgz │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.msc │ │ │ │ │ └── untgz.c │ │ │ │ └── vstudio │ │ │ │ │ ├── readme.txt │ │ │ │ │ ├── vc10 │ │ │ │ │ ├── miniunz.vcxproj │ │ │ │ │ ├── miniunz.vcxproj.filters │ │ │ │ │ ├── minizip.vcxproj │ │ │ │ │ ├── minizip.vcxproj.filters │ │ │ │ │ ├── testzlib.vcxproj │ │ │ │ │ ├── testzlib.vcxproj.filters │ │ │ │ │ ├── testzlibdll.vcxproj │ │ │ │ │ ├── testzlibdll.vcxproj.filters │ │ │ │ │ ├── zlib.rc │ │ │ │ │ ├── zlibstat.vcxproj │ │ │ │ │ ├── zlibstat.vcxproj.filters │ │ │ │ │ ├── zlibvc.def │ │ │ │ │ ├── zlibvc.sln │ │ │ │ │ ├── zlibvc.vcxproj │ │ │ │ │ └── zlibvc.vcxproj.filters │ │ │ │ │ ├── vc11 │ │ │ │ │ ├── miniunz.vcxproj │ │ │ │ │ ├── minizip.vcxproj │ │ │ │ │ ├── testzlib.vcxproj │ │ │ │ │ ├── testzlibdll.vcxproj │ │ │ │ │ ├── zlib.rc │ │ │ │ │ ├── zlibstat.vcxproj │ │ │ │ │ ├── zlibvc.def │ │ │ │ │ ├── zlibvc.sln │ │ │ │ │ └── zlibvc.vcxproj │ │ │ │ │ ├── vc12 │ │ │ │ │ ├── miniunz.vcxproj │ │ │ │ │ ├── minizip.vcxproj │ │ │ │ │ ├── testzlib.vcxproj │ │ │ │ │ ├── testzlibdll.vcxproj │ │ │ │ │ ├── zlib.rc │ │ │ │ │ ├── zlibstat.vcxproj │ │ │ │ │ ├── zlibvc.def │ │ │ │ │ ├── zlibvc.sln │ │ │ │ │ └── zlibvc.vcxproj │ │ │ │ │ ├── vc14 │ │ │ │ │ ├── miniunz.vcxproj │ │ │ │ │ ├── minizip.vcxproj │ │ │ │ │ ├── testzlib.vcxproj │ │ │ │ │ ├── testzlibdll.vcxproj │ │ │ │ │ ├── zlib.rc │ │ │ │ │ ├── zlibstat.vcxproj │ │ │ │ │ ├── zlibvc.def │ │ │ │ │ ├── zlibvc.sln │ │ │ │ │ └── zlibvc.vcxproj │ │ │ │ │ └── vc9 │ │ │ │ │ ├── miniunz.vcproj │ │ │ │ │ ├── minizip.vcproj │ │ │ │ │ ├── testzlib.vcproj │ │ │ │ │ ├── testzlibdll.vcproj │ │ │ │ │ ├── zlib.rc │ │ │ │ │ ├── zlibstat.vcproj │ │ │ │ │ ├── zlibvc.def │ │ │ │ │ ├── zlibvc.sln │ │ │ │ │ └── zlibvc.vcproj │ │ │ ├── crc32.c │ │ │ ├── crc32.h │ │ │ ├── deflate.c │ │ │ ├── deflate.h │ │ │ ├── doc │ │ │ │ ├── algorithm.txt │ │ │ │ ├── rfc1950.txt │ │ │ │ ├── rfc1951.txt │ │ │ │ ├── rfc1952.txt │ │ │ │ └── txtvsbin.txt │ │ │ ├── examples │ │ │ │ ├── README.examples │ │ │ │ ├── enough.c │ │ │ │ ├── fitblk.c │ │ │ │ ├── gun.c │ │ │ │ ├── gzappend.c │ │ │ │ ├── gzjoin.c │ │ │ │ ├── gzlog.c │ │ │ │ ├── gzlog.h │ │ │ │ ├── zlib_how.html │ │ │ │ ├── zpipe.c │ │ │ │ └── zran.c │ │ │ ├── gzclose.c │ │ │ ├── gzguts.h │ │ │ ├── gzlib.c │ │ │ ├── gzread.c │ │ │ ├── gzwrite.c │ │ │ ├── infback.c │ │ │ ├── inffast.c │ │ │ ├── inffast.h │ │ │ ├── inffixed.h │ │ │ ├── inflate.c │ │ │ ├── inflate.h │ │ │ ├── inftrees.c │ │ │ ├── inftrees.h │ │ │ ├── make_vms.com │ │ │ ├── msdos │ │ │ │ ├── Makefile.bor │ │ │ │ ├── Makefile.dj2 │ │ │ │ ├── Makefile.emx │ │ │ │ ├── Makefile.msc │ │ │ │ └── Makefile.tc │ │ │ ├── nintendods │ │ │ │ ├── Makefile │ │ │ │ └── README │ │ │ ├── old │ │ │ │ ├── Makefile.emx │ │ │ │ ├── Makefile.riscos │ │ │ │ ├── README │ │ │ │ ├── descrip.mms │ │ │ │ ├── os2 │ │ │ │ │ ├── Makefile.os2 │ │ │ │ │ └── zlib.def │ │ │ │ └── visual-basic.txt │ │ │ ├── os400 │ │ │ │ ├── README400 │ │ │ │ ├── bndsrc │ │ │ │ ├── make.sh │ │ │ │ └── zlib.inc │ │ │ ├── qnx │ │ │ │ └── package.qpg │ │ │ ├── test │ │ │ │ ├── example.c │ │ │ │ ├── infcover.c │ │ │ │ └── minigzip.c │ │ │ ├── treebuild.xml │ │ │ ├── trees.c │ │ │ ├── trees.h │ │ │ ├── uncompr.c │ │ │ ├── watcom │ │ │ │ ├── watcom_f.mak │ │ │ │ └── watcom_l.mak │ │ │ ├── win32 │ │ │ │ ├── DLL_FAQ.txt │ │ │ │ ├── Makefile.bor │ │ │ │ ├── Makefile.gcc │ │ │ │ ├── Makefile.msc │ │ │ │ ├── README-WIN32.txt │ │ │ │ ├── VisualC.txt │ │ │ │ ├── zlib.def │ │ │ │ └── zlib1.rc │ │ │ ├── zconf.h │ │ │ ├── zconf.h.cmakein │ │ │ ├── zconf.h.in │ │ │ ├── zconf.h.included │ │ │ ├── zlib.3 │ │ │ ├── zlib.3.pdf │ │ │ ├── zlib.h │ │ │ ├── zlib.map │ │ │ ├── zlib.pc.cmakein │ │ │ ├── zlib.pc.in │ │ │ ├── zlib2ansi │ │ │ ├── zutil.c │ │ │ └── zutil.h │ │ └── zstd │ │ │ ├── .buckconfig │ │ │ ├── .buckversion │ │ │ ├── .circleci │ │ │ ├── config.yml │ │ │ └── images │ │ │ │ └── primary │ │ │ │ └── Dockerfile │ │ │ ├── .cirrus.yml │ │ │ ├── .gitattributes │ │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ ├── bug_report.md │ │ │ │ └── feature_request.md │ │ │ └── workflows │ │ │ │ ├── generic-dev.yml │ │ │ │ ├── generic-release.yml │ │ │ │ ├── linux-kernel.yml │ │ │ │ └── main.yml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── COPYING │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── TESTING.md │ │ │ ├── appveyor.yml │ │ │ ├── contrib │ │ │ ├── VS2005 │ │ │ │ ├── README.md │ │ │ │ ├── fullbench │ │ │ │ │ └── fullbench.vcproj │ │ │ │ ├── fuzzer │ │ │ │ │ └── fuzzer.vcproj │ │ │ │ ├── zstd.sln │ │ │ │ ├── zstd │ │ │ │ │ └── zstd.vcproj │ │ │ │ └── zstdlib │ │ │ │ │ └── zstdlib.vcproj │ │ │ ├── cleanTabs │ │ │ ├── diagnose_corruption │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ └── check_flipped_bits.c │ │ │ ├── docker │ │ │ │ ├── Dockerfile │ │ │ │ └── README.md │ │ │ ├── freestanding_lib │ │ │ │ └── freestanding.py │ │ │ ├── gen_html │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── gen-zstd-manual.sh │ │ │ │ └── gen_html.cpp │ │ │ ├── largeNbDicts │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ └── largeNbDicts.c │ │ │ ├── linux-kernel │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── btrfs-benchmark.sh │ │ │ │ ├── btrfs-extract-benchmark.sh │ │ │ │ ├── decompress_sources.h │ │ │ │ ├── linux.mk │ │ │ │ ├── linux_zstd.h │ │ │ │ ├── mem.h │ │ │ │ ├── squashfs-benchmark.sh │ │ │ │ ├── test │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── include │ │ │ │ │ │ ├── asm │ │ │ │ │ │ │ └── unaligned.h │ │ │ │ │ │ └── linux │ │ │ │ │ │ │ ├── compiler.h │ │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ │ ├── kernel.h │ │ │ │ │ │ │ ├── limits.h │ │ │ │ │ │ │ ├── math64.h │ │ │ │ │ │ │ ├── module.h │ │ │ │ │ │ │ ├── printk.h │ │ │ │ │ │ │ ├── stddef.h │ │ │ │ │ │ │ ├── swab.h │ │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ │ └── xxhash.h │ │ │ │ │ ├── macro-test.sh │ │ │ │ │ ├── static_test.c │ │ │ │ │ └── test.c │ │ │ │ ├── zstd_compress_module.c │ │ │ │ ├── zstd_decompress_module.c │ │ │ │ └── zstd_deps.h │ │ │ ├── match_finders │ │ │ │ ├── README.md │ │ │ │ ├── zstd_edist.c │ │ │ │ └── zstd_edist.h │ │ │ ├── premake │ │ │ │ ├── premake4.lua │ │ │ │ └── zstd.lua │ │ │ ├── pzstd │ │ │ │ ├── .gitignore │ │ │ │ ├── BUCK │ │ │ │ ├── ErrorHolder.h │ │ │ │ ├── Logging.h │ │ │ │ ├── Makefile │ │ │ │ ├── Options.cpp │ │ │ │ ├── Options.h │ │ │ │ ├── Pzstd.cpp │ │ │ │ ├── Pzstd.h │ │ │ │ ├── README.md │ │ │ │ ├── SkippableFrame.cpp │ │ │ │ ├── SkippableFrame.h │ │ │ │ ├── images │ │ │ │ │ ├── Cspeed.png │ │ │ │ │ └── Dspeed.png │ │ │ │ ├── main.cpp │ │ │ │ ├── test │ │ │ │ │ ├── BUCK │ │ │ │ │ ├── OptionsTest.cpp │ │ │ │ │ ├── PzstdTest.cpp │ │ │ │ │ ├── RoundTrip.h │ │ │ │ │ └── RoundTripTest.cpp │ │ │ │ └── utils │ │ │ │ │ ├── BUCK │ │ │ │ │ ├── Buffer.h │ │ │ │ │ ├── FileSystem.h │ │ │ │ │ ├── Likely.h │ │ │ │ │ ├── Range.h │ │ │ │ │ ├── ResourcePool.h │ │ │ │ │ ├── ScopeGuard.h │ │ │ │ │ ├── ThreadPool.h │ │ │ │ │ ├── WorkQueue.h │ │ │ │ │ └── test │ │ │ │ │ ├── BUCK │ │ │ │ │ ├── BufferTest.cpp │ │ │ │ │ ├── RangeTest.cpp │ │ │ │ │ ├── ResourcePoolTest.cpp │ │ │ │ │ ├── ScopeGuardTest.cpp │ │ │ │ │ ├── ThreadPoolTest.cpp │ │ │ │ │ └── WorkQueueTest.cpp │ │ │ ├── seekable_format │ │ │ │ ├── examples │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── parallel_compression.c │ │ │ │ │ ├── parallel_processing.c │ │ │ │ │ ├── seekable_compression.c │ │ │ │ │ ├── seekable_decompression.c │ │ │ │ │ └── seekable_decompression_mem.c │ │ │ │ ├── tests │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Makefile │ │ │ │ │ └── seekable_tests.c │ │ │ │ ├── zstd_seekable.h │ │ │ │ ├── zstd_seekable_compression_format.md │ │ │ │ ├── zstdseek_compress.c │ │ │ │ └── zstdseek_decompress.c │ │ │ ├── single_file_libs │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── build_decoder_test.sh │ │ │ │ ├── build_library_test.sh │ │ │ │ ├── combine.sh │ │ │ │ ├── create_single_file_decoder.sh │ │ │ │ ├── create_single_file_library.sh │ │ │ │ ├── examples │ │ │ │ │ ├── README.md │ │ │ │ │ ├── emscripten.c │ │ │ │ │ ├── roundtrip.c │ │ │ │ │ ├── shell.html │ │ │ │ │ ├── simple.c │ │ │ │ │ ├── testcard-dxt1.inl │ │ │ │ │ ├── testcard-zstd.inl │ │ │ │ │ └── testcard.png │ │ │ │ ├── zstd-in.c │ │ │ │ └── zstddeclib-in.c │ │ │ └── snap │ │ │ │ └── snapcraft.yaml │ │ │ ├── doc │ │ │ ├── README.md │ │ │ ├── educational_decoder │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── harness.c │ │ │ │ ├── zstd_decompress.c │ │ │ │ └── zstd_decompress.h │ │ │ ├── images │ │ │ │ ├── CSpeed2.png │ │ │ │ ├── DCspeed5.png │ │ │ │ ├── DSpeed3.png │ │ │ │ ├── cdict_v136.png │ │ │ │ ├── dict-cr.png │ │ │ │ ├── dict-cs.png │ │ │ │ ├── dict-ds.png │ │ │ │ ├── zstd_cdict_v1_3_5.png │ │ │ │ └── zstd_logo86.png │ │ │ ├── zstd_compression_format.md │ │ │ └── zstd_manual.html │ │ │ ├── examples │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── common.h │ │ │ ├── dictionary_compression.c │ │ │ ├── dictionary_decompression.c │ │ │ ├── multiple_simple_compression.c │ │ │ ├── multiple_streaming_compression.c │ │ │ ├── simple_compression.c │ │ │ ├── simple_decompression.c │ │ │ ├── streaming_compression.c │ │ │ ├── streaming_compression_thread_pool.c │ │ │ ├── streaming_decompression.c │ │ │ └── streaming_memory_usage.c │ │ │ ├── lib │ │ │ ├── .gitignore │ │ │ ├── BUCK │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── common │ │ │ │ ├── bitstream.h │ │ │ │ ├── compiler.h │ │ │ │ ├── cpu.h │ │ │ │ ├── debug.c │ │ │ │ ├── debug.h │ │ │ │ ├── entropy_common.c │ │ │ │ ├── error_private.c │ │ │ │ ├── error_private.h │ │ │ │ ├── fse.h │ │ │ │ ├── fse_decompress.c │ │ │ │ ├── huf.h │ │ │ │ ├── mem.h │ │ │ │ ├── pool.c │ │ │ │ ├── pool.h │ │ │ │ ├── threading.c │ │ │ │ ├── threading.h │ │ │ │ ├── xxhash.c │ │ │ │ ├── xxhash.h │ │ │ │ ├── zstd_common.c │ │ │ │ ├── zstd_deps.h │ │ │ │ ├── zstd_errors.h │ │ │ │ └── zstd_internal.h │ │ │ ├── compress │ │ │ │ ├── fse_compress.c │ │ │ │ ├── hist.c │ │ │ │ ├── hist.h │ │ │ │ ├── huf_compress.c │ │ │ │ ├── zstd_compress.c │ │ │ │ ├── zstd_compress_internal.h │ │ │ │ ├── zstd_compress_literals.c │ │ │ │ ├── zstd_compress_literals.h │ │ │ │ ├── zstd_compress_sequences.c │ │ │ │ ├── zstd_compress_sequences.h │ │ │ │ ├── zstd_compress_superblock.c │ │ │ │ ├── zstd_compress_superblock.h │ │ │ │ ├── zstd_cwksp.h │ │ │ │ ├── zstd_double_fast.c │ │ │ │ ├── zstd_double_fast.h │ │ │ │ ├── zstd_fast.c │ │ │ │ ├── zstd_fast.h │ │ │ │ ├── zstd_lazy.c │ │ │ │ ├── zstd_lazy.h │ │ │ │ ├── zstd_ldm.c │ │ │ │ ├── zstd_ldm.h │ │ │ │ ├── zstd_opt.c │ │ │ │ ├── zstd_opt.h │ │ │ │ ├── zstdmt_compress.c │ │ │ │ └── zstdmt_compress.h │ │ │ ├── decompress │ │ │ │ ├── huf_decompress.c │ │ │ │ ├── zstd_ddict.c │ │ │ │ ├── zstd_ddict.h │ │ │ │ ├── zstd_decompress.c │ │ │ │ ├── zstd_decompress_block.c │ │ │ │ ├── zstd_decompress_block.h │ │ │ │ └── zstd_decompress_internal.h │ │ │ ├── deprecated │ │ │ │ ├── zbuff.h │ │ │ │ ├── zbuff_common.c │ │ │ │ ├── zbuff_compress.c │ │ │ │ └── zbuff_decompress.c │ │ │ ├── dictBuilder │ │ │ │ ├── cover.c │ │ │ │ ├── cover.h │ │ │ │ ├── divsufsort.c │ │ │ │ ├── divsufsort.h │ │ │ │ ├── fastcover.c │ │ │ │ ├── zdict.c │ │ │ │ └── zdict.h │ │ │ ├── dll │ │ │ │ └── example │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── build_package.bat │ │ │ │ │ ├── fullbench-dll.sln │ │ │ │ │ └── fullbench-dll.vcxproj │ │ │ ├── legacy │ │ │ │ ├── zstd_legacy.h │ │ │ │ ├── zstd_v01.c │ │ │ │ ├── zstd_v01.h │ │ │ │ ├── zstd_v02.c │ │ │ │ ├── zstd_v02.h │ │ │ │ ├── zstd_v03.c │ │ │ │ ├── zstd_v03.h │ │ │ │ ├── zstd_v04.c │ │ │ │ ├── zstd_v04.h │ │ │ │ ├── zstd_v05.c │ │ │ │ ├── zstd_v05.h │ │ │ │ ├── zstd_v06.c │ │ │ │ ├── zstd_v06.h │ │ │ │ ├── zstd_v07.c │ │ │ │ └── zstd_v07.h │ │ │ ├── libzstd.pc.in │ │ │ └── zstd.h │ │ │ ├── programs │ │ │ ├── .gitignore │ │ │ ├── BUCK │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── benchfn.c │ │ │ ├── benchfn.h │ │ │ ├── benchzstd.c │ │ │ ├── benchzstd.h │ │ │ ├── datagen.c │ │ │ ├── datagen.h │ │ │ ├── dibio.c │ │ │ ├── dibio.h │ │ │ ├── fileio.c │ │ │ ├── fileio.h │ │ │ ├── platform.h │ │ │ ├── timefn.c │ │ │ ├── timefn.h │ │ │ ├── util.c │ │ │ ├── util.h │ │ │ ├── windres │ │ │ │ ├── verrsrc.h │ │ │ │ ├── zstd.rc │ │ │ │ ├── zstd32.res │ │ │ │ └── zstd64.res │ │ │ ├── zstd.1 │ │ │ ├── zstd.1.md │ │ │ ├── zstdcli.c │ │ │ ├── zstdgrep │ │ │ ├── zstdgrep.1 │ │ │ ├── zstdgrep.1.md │ │ │ ├── zstdless │ │ │ ├── zstdless.1 │ │ │ └── zstdless.1.md │ │ │ ├── tests │ │ │ ├── .gitignore │ │ │ ├── DEPRECATED-test-zstd-speed.py │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── automated_benchmarking.py │ │ │ ├── bigdict.c │ │ │ ├── checkTag.c │ │ │ ├── datagencli.c │ │ │ ├── decodecorpus.c │ │ │ ├── dict-files │ │ │ │ └── zero-weight-dict │ │ │ ├── fullbench.c │ │ │ ├── fuzz │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── block_decompress.c │ │ │ │ ├── block_round_trip.c │ │ │ │ ├── decompress_dstSize_tooSmall.c │ │ │ │ ├── dictionary_decompress.c │ │ │ │ ├── dictionary_loader.c │ │ │ │ ├── dictionary_round_trip.c │ │ │ │ ├── dictionary_stream_round_trip.c │ │ │ │ ├── fse_read_ncount.c │ │ │ │ ├── fuzz.h │ │ │ │ ├── fuzz.py │ │ │ │ ├── fuzz_data_producer.c │ │ │ │ ├── fuzz_data_producer.h │ │ │ │ ├── fuzz_helpers.c │ │ │ │ ├── fuzz_helpers.h │ │ │ │ ├── raw_dictionary_round_trip.c │ │ │ │ ├── regression_driver.c │ │ │ │ ├── sequence_compression_api.c │ │ │ │ ├── simple_compress.c │ │ │ │ ├── simple_decompress.c │ │ │ │ ├── simple_round_trip.c │ │ │ │ ├── stream_decompress.c │ │ │ │ ├── stream_round_trip.c │ │ │ │ ├── zstd_frame_info.c │ │ │ │ ├── zstd_helpers.c │ │ │ │ └── zstd_helpers.h │ │ │ ├── fuzzer.c │ │ │ ├── golden-compression │ │ │ │ ├── http │ │ │ │ └── huffman-compressed-larger │ │ │ ├── golden-dictionaries │ │ │ │ └── http-dict-missing-symbols │ │ │ ├── gzip │ │ │ │ ├── Makefile │ │ │ │ ├── gzip-env.sh │ │ │ │ ├── helin-segv.sh │ │ │ │ ├── help-version.sh │ │ │ │ ├── hufts-segv.gz │ │ │ │ ├── hufts.sh │ │ │ │ ├── init.cfg │ │ │ │ ├── init.sh │ │ │ │ ├── keep.sh │ │ │ │ ├── list.sh │ │ │ │ ├── memcpy-abuse.sh │ │ │ │ ├── mixed.sh │ │ │ │ ├── null-suffix-clobber.sh │ │ │ │ ├── stdin.sh │ │ │ │ ├── test-driver.sh │ │ │ │ ├── trailing-nul.sh │ │ │ │ ├── unpack-invalid.sh │ │ │ │ ├── z-suffix.sh │ │ │ │ ├── zdiff.sh │ │ │ │ ├── zgrep-context.sh │ │ │ │ ├── zgrep-f.sh │ │ │ │ ├── zgrep-signal.sh │ │ │ │ └── znew-k.sh │ │ │ ├── invalidDictionaries.c │ │ │ ├── legacy.c │ │ │ ├── libzstd_partial_builds.sh │ │ │ ├── longmatch.c │ │ │ ├── paramgrill.c │ │ │ ├── playTests.sh │ │ │ ├── poolTests.c │ │ │ ├── rateLimiter.py │ │ │ ├── regression │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── config.c │ │ │ │ ├── config.h │ │ │ │ ├── data.c │ │ │ │ ├── data.h │ │ │ │ ├── levels.h │ │ │ │ ├── method.c │ │ │ │ ├── method.h │ │ │ │ ├── result.c │ │ │ │ ├── result.h │ │ │ │ ├── results.csv │ │ │ │ └── test.c │ │ │ ├── roundTripCrash.c │ │ │ ├── seqgen.c │ │ │ ├── seqgen.h │ │ │ ├── test-license.py │ │ │ ├── test-zstd-versions.py │ │ │ ├── zbufftest.c │ │ │ └── zstreamtest.c │ │ │ └── zlibWrapper │ │ │ ├── .gitignore │ │ │ ├── BUCK │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── examples │ │ │ ├── example.c │ │ │ ├── example_original.c │ │ │ ├── fitblk.c │ │ │ ├── fitblk_original.c │ │ │ ├── minigzip.c │ │ │ └── zwrapbench.c │ │ │ ├── gzclose.c │ │ │ ├── gzcompatibility.h │ │ │ ├── gzguts.h │ │ │ ├── gzlib.c │ │ │ ├── gzread.c │ │ │ ├── gzwrite.c │ │ │ ├── zstd_zlibwrapper.c │ │ │ └── zstd_zlibwrapper.h │ ├── minigzip.c │ ├── minizip.c │ ├── minizip.pc.cmakein │ ├── mz.h │ ├── mz_compat.c │ ├── mz_compat.h │ ├── mz_crypt.c │ ├── mz_crypt.h │ ├── mz_crypt_apple.c │ ├── mz_crypt_openssl.c │ ├── mz_crypt_win32.c │ ├── mz_os.c │ ├── mz_os.h │ ├── mz_os_posix.c │ ├── mz_os_win32.c │ ├── mz_strm.c │ ├── mz_strm.h │ ├── mz_strm_buf.c │ ├── mz_strm_buf.h │ ├── mz_strm_bzip.c │ ├── mz_strm_bzip.h │ ├── mz_strm_libcomp.c │ ├── mz_strm_libcomp.h │ ├── mz_strm_lzma.c │ ├── mz_strm_lzma.h │ ├── mz_strm_mem.c │ ├── mz_strm_mem.h │ ├── mz_strm_os.h │ ├── mz_strm_os_posix.c │ ├── mz_strm_os_win32.c │ ├── mz_strm_pkcrypt.c │ ├── mz_strm_pkcrypt.h │ ├── mz_strm_split.c │ ├── mz_strm_split.h │ ├── mz_strm_wzaes.c │ ├── mz_strm_wzaes.h │ ├── mz_strm_zlib.c │ ├── mz_strm_zlib.h │ ├── mz_strm_zstd.c │ ├── mz_strm_zstd.h │ ├── mz_zip.c │ ├── mz_zip.h │ ├── mz_zip_rw.c │ ├── mz_zip_rw.h │ ├── test │ │ ├── empty.txt │ │ ├── fuzz │ │ │ ├── standalone.c │ │ │ ├── unzip_fuzzer.c │ │ │ ├── unzip_fuzzer.dict │ │ │ └── zip_fuzzer.c │ │ ├── random.bin │ │ ├── single.txt │ │ ├── test.c │ │ ├── test.h │ │ ├── test.p12 │ │ ├── test.pem │ │ └── uniform.bin │ ├── unzip.h │ └── zip.h ├── semver │ └── semver.hpp ├── simplefilewatcher │ ├── License.txt │ ├── MakeScripts.bat │ ├── ReadMe.md │ ├── SimpleDemo.cpp │ ├── include │ │ └── FileWatcher │ │ │ ├── FileWatcher.h │ │ │ ├── FileWatcherImpl.h │ │ │ ├── FileWatcherLinux.h │ │ │ ├── FileWatcherOSX.h │ │ │ └── FileWatcherWin32.h │ ├── premake5.lua │ └── source │ │ ├── FileWatcher.cpp │ │ ├── FileWatcherLinux.cpp │ │ ├── FileWatcherOSX.cpp │ │ └── FileWatcherWin32.cpp ├── sol │ ├── config.hpp │ ├── forward.hpp │ └── sol.hpp ├── spdlog │ ├── .clang-format │ ├── .clang-tidy │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── INSTALL │ ├── LICENSE │ ├── README.md │ ├── appveyor.yml │ ├── bench │ │ ├── CMakeLists.txt │ │ ├── async_bench.cpp │ │ ├── bench.cpp │ │ ├── formatter-bench.cpp │ │ ├── latency.cpp │ │ └── utils.h │ ├── cmake │ │ ├── ide.cmake │ │ ├── pch.h.in │ │ ├── spdlog.pc.in │ │ ├── spdlogCPack.cmake │ │ ├── spdlogConfig.cmake.in │ │ ├── utils.cmake │ │ └── version.rc.in │ ├── example │ │ ├── CMakeLists.txt │ │ └── example.cpp │ ├── include │ │ └── spdlog │ │ │ ├── async.h │ │ │ ├── async_logger-inl.h │ │ │ ├── async_logger.h │ │ │ ├── cfg │ │ │ ├── argv.h │ │ │ ├── env.h │ │ │ ├── helpers-inl.h │ │ │ └── helpers.h │ │ │ ├── common-inl.h │ │ │ ├── common.h │ │ │ ├── details │ │ │ ├── backtracer-inl.h │ │ │ ├── backtracer.h │ │ │ ├── circular_q.h │ │ │ ├── console_globals.h │ │ │ ├── file_helper-inl.h │ │ │ ├── file_helper.h │ │ │ ├── fmt_helper.h │ │ │ ├── log_msg-inl.h │ │ │ ├── log_msg.h │ │ │ ├── log_msg_buffer-inl.h │ │ │ ├── log_msg_buffer.h │ │ │ ├── mpmc_blocking_q.h │ │ │ ├── null_mutex.h │ │ │ ├── os-inl.h │ │ │ ├── os.h │ │ │ ├── periodic_worker-inl.h │ │ │ ├── periodic_worker.h │ │ │ ├── registry-inl.h │ │ │ ├── registry.h │ │ │ ├── synchronous_factory.h │ │ │ ├── tcp_client-windows.h │ │ │ ├── tcp_client.h │ │ │ ├── thread_pool-inl.h │ │ │ ├── thread_pool.h │ │ │ └── windows_include.h │ │ │ ├── fmt │ │ │ ├── bin_to_hex.h │ │ │ ├── bundled │ │ │ │ ├── LICENSE.rst │ │ │ │ ├── chrono.h │ │ │ │ ├── color.h │ │ │ │ ├── compile.h │ │ │ │ ├── core.h │ │ │ │ ├── format-inl.h │ │ │ │ ├── format.h │ │ │ │ ├── locale.h │ │ │ │ ├── os.h │ │ │ │ ├── ostream.h │ │ │ │ ├── posix.h │ │ │ │ ├── printf.h │ │ │ │ └── ranges.h │ │ │ ├── chrono.h │ │ │ ├── fmt.h │ │ │ └── ostr.h │ │ │ ├── formatter.h │ │ │ ├── fwd.h │ │ │ ├── logger-inl.h │ │ │ ├── logger.h │ │ │ ├── pattern_formatter-inl.h │ │ │ ├── pattern_formatter.h │ │ │ ├── sinks │ │ │ ├── android_sink.h │ │ │ ├── ansicolor_sink-inl.h │ │ │ ├── ansicolor_sink.h │ │ │ ├── base_sink-inl.h │ │ │ ├── base_sink.h │ │ │ ├── basic_file_sink-inl.h │ │ │ ├── basic_file_sink.h │ │ │ ├── daily_file_sink.h │ │ │ ├── dist_sink.h │ │ │ ├── dup_filter_sink.h │ │ │ ├── msvc_sink.h │ │ │ ├── null_sink.h │ │ │ ├── ostream_sink.h │ │ │ ├── ringbuffer_sink.h │ │ │ ├── rotating_file_sink-inl.h │ │ │ ├── rotating_file_sink.h │ │ │ ├── sink-inl.h │ │ │ ├── sink.h │ │ │ ├── stdout_color_sinks-inl.h │ │ │ ├── stdout_color_sinks.h │ │ │ ├── stdout_sinks-inl.h │ │ │ ├── stdout_sinks.h │ │ │ ├── syslog_sink.h │ │ │ ├── systemd_sink.h │ │ │ ├── tcp_sink.h │ │ │ ├── win_eventlog_sink.h │ │ │ ├── wincolor_sink-inl.h │ │ │ └── wincolor_sink.h │ │ │ ├── spdlog-inl.h │ │ │ ├── spdlog.h │ │ │ ├── stopwatch.h │ │ │ ├── tweakme.h │ │ │ └── version.h │ ├── logos │ │ └── jetbrains-variant-4.svg │ ├── scripts │ │ ├── extract_version.py │ │ └── format.sh │ ├── src │ │ ├── async.cpp │ │ ├── cfg.cpp │ │ ├── color_sinks.cpp │ │ ├── file_sinks.cpp │ │ ├── fmt.cpp │ │ ├── spdlog.cpp │ │ └── stdout_sinks.cpp │ └── tests │ │ ├── CMakeLists.txt │ │ ├── catch.hpp │ │ ├── catch.license │ │ ├── includes.h │ │ ├── main.cpp │ │ ├── test_async.cpp │ │ ├── test_backtrace.cpp │ │ ├── test_cfg.cpp │ │ ├── test_create_dir.cpp │ │ ├── test_daily_logger.cpp │ │ ├── test_dup_filter.cpp │ │ ├── test_errors.cpp │ │ ├── test_eventlog.cpp │ │ ├── test_file_helper.cpp │ │ ├── test_file_logging.cpp │ │ ├── test_fmt_helper.cpp │ │ ├── test_macros.cpp │ │ ├── test_misc.cpp │ │ ├── test_mpmc_q.cpp │ │ ├── test_pattern_formatter.cpp │ │ ├── test_registry.cpp │ │ ├── test_sink.h │ │ ├── test_stdout_api.cpp │ │ ├── test_stopwatch.cpp │ │ ├── test_systemd.cpp │ │ ├── test_time_point.cpp │ │ ├── utils.cpp │ │ └── utils.h └── xxhash │ ├── xxhash.c │ └── xxhash.h └── web.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/README.md -------------------------------------------------------------------------------- /RetroPlug.RPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/RetroPlug.RPP -------------------------------------------------------------------------------- /RetroPlug.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/RetroPlug.code-workspace -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/appveyor.yml -------------------------------------------------------------------------------- /ci/dep.7z.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/ci/dep.7z.enc -------------------------------------------------------------------------------- /config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/config.lua -------------------------------------------------------------------------------- /config/RetroPlug-ios.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/config/RetroPlug-ios.xcconfig -------------------------------------------------------------------------------- /config/RetroPlug-mac.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/config/RetroPlug-mac.xcconfig -------------------------------------------------------------------------------- /config/RetroPlug-web.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/config/RetroPlug-web.mk -------------------------------------------------------------------------------- /config/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/config/config.h -------------------------------------------------------------------------------- /config/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/config/version.h -------------------------------------------------------------------------------- /configure-mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/configure-mac.sh -------------------------------------------------------------------------------- /configure.bat: -------------------------------------------------------------------------------- 1 | premake5 vs2019 -------------------------------------------------------------------------------- /deploy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/deploy.bat -------------------------------------------------------------------------------- /installer/RetroPlug-installer-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/installer/RetroPlug-installer-bg.png -------------------------------------------------------------------------------- /installer/RetroPlug.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/installer/RetroPlug.iss -------------------------------------------------------------------------------- /installer/RetroPlug.pkgproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/installer/RetroPlug.pkgproj -------------------------------------------------------------------------------- /installer/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/installer/changelog.txt -------------------------------------------------------------------------------- /installer/intro.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/installer/intro.rtf -------------------------------------------------------------------------------- /installer/known-issues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/installer/known-issues.txt -------------------------------------------------------------------------------- /installer/license.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/installer/license.rtf -------------------------------------------------------------------------------- /installer/readme-osx.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/installer/readme-osx.rtf -------------------------------------------------------------------------------- /installer/readme-win.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/installer/readme-win.rtf -------------------------------------------------------------------------------- /manual/RetroPlug manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/manual/RetroPlug manual.pdf -------------------------------------------------------------------------------- /manual/RetroPlug manual.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/manual/RetroPlug manual.tex -------------------------------------------------------------------------------- /premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/premake5.lua -------------------------------------------------------------------------------- /projects/RetroPlug-iOS.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/projects/RetroPlug-iOS.entitlements -------------------------------------------------------------------------------- /projects/RetroPlug-macOS.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/projects/RetroPlug-macOS.entitlements -------------------------------------------------------------------------------- /projects/RetroPlug-wam-controller.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/projects/RetroPlug-wam-controller.mk -------------------------------------------------------------------------------- /projects/RetroPlug-wam-processor.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/projects/RetroPlug-wam-processor.mk -------------------------------------------------------------------------------- /resources/IPlugViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/resources/IPlugViewController.xib -------------------------------------------------------------------------------- /resources/RetroPlug-AAX-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/resources/RetroPlug-AAX-Info.plist -------------------------------------------------------------------------------- /resources/RetroPlug-AU-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/resources/RetroPlug-AU-Info.plist -------------------------------------------------------------------------------- /resources/RetroPlug-Pages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/resources/RetroPlug-Pages.xml -------------------------------------------------------------------------------- /resources/RetroPlug-VST2-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/resources/RetroPlug-VST2-Info.plist -------------------------------------------------------------------------------- /resources/RetroPlug-VST3-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/resources/RetroPlug-VST3-Info.plist -------------------------------------------------------------------------------- /resources/RetroPlug-iOS-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/resources/RetroPlug-iOS-Info.plist -------------------------------------------------------------------------------- /resources/RetroPlug-iOS.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/resources/RetroPlug-iOS.storyboard -------------------------------------------------------------------------------- /resources/RetroPlug-macOS-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/resources/RetroPlug-macOS-Info.plist -------------------------------------------------------------------------------- /resources/RetroPlug-macOS-MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/resources/RetroPlug-macOS-MainMenu.xib -------------------------------------------------------------------------------- /resources/RetroPlug.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/resources/RetroPlug.icns -------------------------------------------------------------------------------- /resources/RetroPlug.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/resources/RetroPlug.ico -------------------------------------------------------------------------------- /resources/config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/resources/config.lua -------------------------------------------------------------------------------- /resources/fonts/Early-GameBoy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/resources/fonts/Early-GameBoy.ttf -------------------------------------------------------------------------------- /resources/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/resources/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /resources/main.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/resources/main.aps -------------------------------------------------------------------------------- /resources/main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/resources/main.rc -------------------------------------------------------------------------------- /resources/main.rc_mac_dlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/resources/main.rc_mac_dlg -------------------------------------------------------------------------------- /resources/main.rc_mac_menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/resources/main.rc_mac_menu -------------------------------------------------------------------------------- /resources/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/resources/resource.h -------------------------------------------------------------------------------- /scripts/configure.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/scripts/configure.lua -------------------------------------------------------------------------------- /scripts/gainput.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/scripts/gainput.lua -------------------------------------------------------------------------------- /scripts/liblsdj.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/scripts/liblsdj.lua -------------------------------------------------------------------------------- /scripts/lua.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/scripts/lua.lua -------------------------------------------------------------------------------- /scripts/minizip.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/scripts/minizip.lua -------------------------------------------------------------------------------- /scripts/sameboy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/scripts/sameboy.lua -------------------------------------------------------------------------------- /scripts/simplefilewatcher.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/scripts/simplefilewatcher.lua -------------------------------------------------------------------------------- /scripts/util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/scripts/util.lua -------------------------------------------------------------------------------- /src/compiler.config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/compiler.config.lua -------------------------------------------------------------------------------- /src/compiler/blockingconcurrentqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/compiler/blockingconcurrentqueue.h -------------------------------------------------------------------------------- /src/compiler/concurrentqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/compiler/concurrentqueue.h -------------------------------------------------------------------------------- /src/compiler/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/compiler/fs.h -------------------------------------------------------------------------------- /src/compiler/lightweightsemaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/compiler/lightweightsemaphore.h -------------------------------------------------------------------------------- /src/compiler/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/compiler/logger.h -------------------------------------------------------------------------------- /src/compiler/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/compiler/main.cpp -------------------------------------------------------------------------------- /src/compiler/templates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/compiler/templates.h -------------------------------------------------------------------------------- /src/compiler/threadpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/compiler/threadpool.h -------------------------------------------------------------------------------- /src/compiler/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/compiler/util.h -------------------------------------------------------------------------------- /src/compiler/xxh3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/compiler/xxh3.h -------------------------------------------------------------------------------- /src/compiler/xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/compiler/xxhash.c -------------------------------------------------------------------------------- /src/compiler/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/compiler/xxhash.h -------------------------------------------------------------------------------- /src/config/0.3/config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/config/0.3/config.lua -------------------------------------------------------------------------------- /src/config/0.3/input/aquellex.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/config/0.3/input/aquellex.lua -------------------------------------------------------------------------------- /src/config/0.3/input/bryface.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/config/0.3/input/bryface.lua -------------------------------------------------------------------------------- /src/config/0.3/input/default.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/config/0.3/input/default.lua -------------------------------------------------------------------------------- /src/config/0.3/input/defmech.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/config/0.3/input/defmech.lua -------------------------------------------------------------------------------- /src/plugin/audio/RetroPlugInstrument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/plugin/audio/RetroPlugInstrument.h -------------------------------------------------------------------------------- /src/plugin/view/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/plugin/view/Menu.cpp -------------------------------------------------------------------------------- /src/plugin/view/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/plugin/view/Menu.h -------------------------------------------------------------------------------- /src/plugin/view/RetroPlugView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/plugin/view/RetroPlugView.cpp -------------------------------------------------------------------------------- /src/plugin/view/RetroPlugView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/plugin/view/RetroPlugView.h -------------------------------------------------------------------------------- /src/plugin/view/SystemView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/plugin/view/SystemView.cpp -------------------------------------------------------------------------------- /src/plugin/view/SystemView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/plugin/view/SystemView.h -------------------------------------------------------------------------------- /src/plugs/SameBoyPlug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/plugs/SameBoyPlug.cpp -------------------------------------------------------------------------------- /src/plugs/SameBoyPlug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/plugs/SameBoyPlug.h -------------------------------------------------------------------------------- /src/retroplug/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/Buttons.h -------------------------------------------------------------------------------- /src/retroplug/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/Constants.h -------------------------------------------------------------------------------- /src/retroplug/Messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/Messages.h -------------------------------------------------------------------------------- /src/retroplug/RetroPlugWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/RetroPlugWrap.cpp -------------------------------------------------------------------------------- /src/retroplug/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/Types.h -------------------------------------------------------------------------------- /src/retroplug/audio/AudioController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/audio/AudioController.h -------------------------------------------------------------------------------- /src/retroplug/luawrapper/Chrono.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/luawrapper/Chrono.cpp -------------------------------------------------------------------------------- /src/retroplug/luawrapper/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/luawrapper/Common.cpp -------------------------------------------------------------------------------- /src/retroplug/luawrapper/LibLsdj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/luawrapper/LibLsdj.cpp -------------------------------------------------------------------------------- /src/retroplug/luawrapper/LuaHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/luawrapper/LuaHelpers.h -------------------------------------------------------------------------------- /src/retroplug/luawrapper/RetroPlug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/luawrapper/RetroPlug.cpp -------------------------------------------------------------------------------- /src/retroplug/luawrapper/Wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/luawrapper/Wrappers.h -------------------------------------------------------------------------------- /src/retroplug/luawrapper/Zipp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/luawrapper/Zipp.cpp -------------------------------------------------------------------------------- /src/retroplug/messaging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/messaging.h -------------------------------------------------------------------------------- /src/retroplug/micromsg/atomicops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/micromsg/atomicops.h -------------------------------------------------------------------------------- /src/retroplug/micromsg/caller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/micromsg/caller.h -------------------------------------------------------------------------------- /src/retroplug/micromsg/envelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/micromsg/envelope.h -------------------------------------------------------------------------------- /src/retroplug/micromsg/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/micromsg/error.h -------------------------------------------------------------------------------- /src/retroplug/micromsg/fixedstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/micromsg/fixedstack.h -------------------------------------------------------------------------------- /src/retroplug/micromsg/fixedstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/micromsg/fixedstring.h -------------------------------------------------------------------------------- /src/retroplug/micromsg/lookups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/micromsg/lookups.h -------------------------------------------------------------------------------- /src/retroplug/micromsg/magic_enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/micromsg/magic_enum.hpp -------------------------------------------------------------------------------- /src/retroplug/micromsg/mmassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/micromsg/mmassert.h -------------------------------------------------------------------------------- /src/retroplug/micromsg/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/micromsg/node.h -------------------------------------------------------------------------------- /src/retroplug/micromsg/nodemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/micromsg/nodemanager.h -------------------------------------------------------------------------------- /src/retroplug/micromsg/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/micromsg/platform.h -------------------------------------------------------------------------------- /src/retroplug/micromsg/request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/micromsg/request.h -------------------------------------------------------------------------------- /src/retroplug/micromsg/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/micromsg/types.h -------------------------------------------------------------------------------- /src/retroplug/micromsg2/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/micromsg2/api.h -------------------------------------------------------------------------------- /src/retroplug/micromsg2/api2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/micromsg2/api2.h -------------------------------------------------------------------------------- /src/retroplug/micromsg2/api3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/micromsg2/api3.h -------------------------------------------------------------------------------- /src/retroplug/model/ButtonStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/model/ButtonStream.h -------------------------------------------------------------------------------- /src/retroplug/model/FileManager.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/retroplug/model/FileManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/model/FileManager.h -------------------------------------------------------------------------------- /src/retroplug/model/Project.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/model/Project.h -------------------------------------------------------------------------------- /src/retroplug/model/RetroPlug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/model/RetroPlug.h -------------------------------------------------------------------------------- /src/retroplug/platform/Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/platform/Error.h -------------------------------------------------------------------------------- /src/retroplug/platform/FileDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/platform/FileDialog.cpp -------------------------------------------------------------------------------- /src/retroplug/platform/FileDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/platform/FileDialog.h -------------------------------------------------------------------------------- /src/retroplug/platform/Keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/platform/Keys.h -------------------------------------------------------------------------------- /src/retroplug/platform/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/platform/Logger.h -------------------------------------------------------------------------------- /src/retroplug/platform/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/platform/Menu.cpp -------------------------------------------------------------------------------- /src/retroplug/platform/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/platform/Menu.h -------------------------------------------------------------------------------- /src/retroplug/platform/Os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/platform/Os.h -------------------------------------------------------------------------------- /src/retroplug/platform/Path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/platform/Path.cpp -------------------------------------------------------------------------------- /src/retroplug/platform/Path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/platform/Path.h -------------------------------------------------------------------------------- /src/retroplug/platform/Path.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/platform/Path.mm -------------------------------------------------------------------------------- /src/retroplug/platform/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/platform/Platform.h -------------------------------------------------------------------------------- /src/retroplug/platform/Shell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/platform/Shell.cpp -------------------------------------------------------------------------------- /src/retroplug/platform/Shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/platform/Shell.h -------------------------------------------------------------------------------- /src/retroplug/platform/Shell.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/platform/Shell.mm -------------------------------------------------------------------------------- /src/retroplug/platform/ViewWrapper.cpp: -------------------------------------------------------------------------------- 1 | #include "ViewWrapper.h" 2 | -------------------------------------------------------------------------------- /src/retroplug/platform/ViewWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/platform/ViewWrapper.h -------------------------------------------------------------------------------- /src/retroplug/processing/ProcessingContext.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/retroplug/scripts/audio/System.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/scripts/audio/System.lua -------------------------------------------------------------------------------- /src/retroplug/scripts/audio/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/scripts/audio/main.lua -------------------------------------------------------------------------------- /src/retroplug/scripts/common/Error.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/scripts/common/Error.lua -------------------------------------------------------------------------------- /src/retroplug/scripts/common/Menu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/scripts/common/Menu.lua -------------------------------------------------------------------------------- /src/retroplug/scripts/common/Print.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/scripts/common/Print.lua -------------------------------------------------------------------------------- /src/retroplug/scripts/common/class.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/scripts/common/class.lua -------------------------------------------------------------------------------- /src/retroplug/scripts/common/const.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/scripts/common/const.lua -------------------------------------------------------------------------------- /src/retroplug/scripts/common/log.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/scripts/common/log.lua -------------------------------------------------------------------------------- /src/retroplug/scripts/common/midi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/scripts/common/midi.lua -------------------------------------------------------------------------------- /src/retroplug/scripts/common/timer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/scripts/common/timer.lua -------------------------------------------------------------------------------- /src/retroplug/scripts/common/util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/scripts/common/util.lua -------------------------------------------------------------------------------- /src/retroplug/scripts/ui/Globals.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/scripts/ui/Globals.lua -------------------------------------------------------------------------------- /src/retroplug/scripts/ui/KeyFilter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/scripts/ui/KeyFilter.lua -------------------------------------------------------------------------------- /src/retroplug/scripts/ui/MainMenu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/scripts/ui/MainMenu.lua -------------------------------------------------------------------------------- /src/retroplug/scripts/ui/Model.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/scripts/ui/Model.lua -------------------------------------------------------------------------------- /src/retroplug/scripts/ui/Project.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/scripts/ui/Project.lua -------------------------------------------------------------------------------- /src/retroplug/scripts/ui/System.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/scripts/ui/System.lua -------------------------------------------------------------------------------- /src/retroplug/scripts/ui/View.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/scripts/ui/View.lua -------------------------------------------------------------------------------- /src/retroplug/scripts/ui/component.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/scripts/ui/component.lua -------------------------------------------------------------------------------- /src/retroplug/scripts/ui/dialog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/scripts/ui/dialog.lua -------------------------------------------------------------------------------- /src/retroplug/scripts/ui/filters.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/scripts/ui/filters.lua -------------------------------------------------------------------------------- /src/retroplug/scripts/ui/fs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/scripts/ui/fs.lua -------------------------------------------------------------------------------- /src/retroplug/scripts/ui/json.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/scripts/ui/json.lua -------------------------------------------------------------------------------- /src/retroplug/scripts/ui/lsdj/lsdjfull.lua: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/retroplug/scripts/ui/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/scripts/ui/main.lua -------------------------------------------------------------------------------- /src/retroplug/scripts/ui/project/deserialize.lua: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/retroplug/scripts/ui/project/legacy.lua: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/retroplug/scripts/ui/project/version.lua: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/retroplug/scripts/ui/util/file.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/scripts/ui/util/file.lua -------------------------------------------------------------------------------- /src/retroplug/scripts/ui/util/menu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/scripts/ui/util/menu.lua -------------------------------------------------------------------------------- /src/retroplug/util/DataBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/util/DataBuffer.h -------------------------------------------------------------------------------- /src/retroplug/util/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/util/File.cpp -------------------------------------------------------------------------------- /src/retroplug/util/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/util/File.h -------------------------------------------------------------------------------- /src/retroplug/util/Paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/util/Paths.h -------------------------------------------------------------------------------- /src/retroplug/util/RomWatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/util/RomWatcher.h -------------------------------------------------------------------------------- /src/retroplug/util/SampleConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/util/SampleConverter.h -------------------------------------------------------------------------------- /src/retroplug/util/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/util/base64.cpp -------------------------------------------------------------------------------- /src/retroplug/util/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/util/base64.h -------------------------------------------------------------------------------- /src/retroplug/util/base64dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/util/base64dec.h -------------------------------------------------------------------------------- /src/retroplug/util/base64enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/util/base64enc.h -------------------------------------------------------------------------------- /src/retroplug/util/crc32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/util/crc32.cpp -------------------------------------------------------------------------------- /src/retroplug/util/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/util/crc32.h -------------------------------------------------------------------------------- /src/retroplug/util/cxxtimer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/util/cxxtimer.hpp -------------------------------------------------------------------------------- /src/retroplug/util/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/util/fs.h -------------------------------------------------------------------------------- /src/retroplug/util/mathutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/util/mathutil.h -------------------------------------------------------------------------------- /src/retroplug/util/xstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/util/xstring.h -------------------------------------------------------------------------------- /src/retroplug/util/zipp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/src/retroplug/util/zipp.h -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/.gitattributes -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: LIJI32 4 | -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/.gitignore: -------------------------------------------------------------------------------- 1 | build -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/BESS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/BESS.md -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/BootROMs/agb_boot.asm: -------------------------------------------------------------------------------- 1 | AGB EQU 1 2 | include "cgb_boot.asm" -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/BootROMs/cgb0_boot.asm: -------------------------------------------------------------------------------- 1 | CGB0 EQU 1 2 | include "cgb_boot.asm" -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/BootROMs/cgb_boot_fast.asm: -------------------------------------------------------------------------------- 1 | FAST EQU 1 2 | include "cgb_boot.asm" -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/BootROMs/mgb_boot.asm: -------------------------------------------------------------------------------- 1 | MGB EQU 1 2 | include "dmg_boot.asm" -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/BootROMs/pb12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/BootROMs/pb12.c -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/BootROMs/sgb2_boot.asm: -------------------------------------------------------------------------------- 1 | SGB2 EQU 1 2 | include "sgb_boot.asm" -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/CHANGES.md: -------------------------------------------------------------------------------- 1 | See https://sameboy.github.io/changelog/ -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/CONTRIBUTING.md -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Cocoa/CPU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Cocoa/CPU.png -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Cocoa/GBApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Cocoa/GBApp.h -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Cocoa/GBApp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Cocoa/GBApp.m -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Cocoa/GBS.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Cocoa/GBS.xib -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Cocoa/GBS11.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Cocoa/GBS11.xib -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Cocoa/GBView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Cocoa/GBView.h -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Cocoa/GBView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Cocoa/GBView.m -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Cocoa/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Cocoa/Icon.png -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Cocoa/Next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Cocoa/Next.png -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Cocoa/Pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Cocoa/Pause.png -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Cocoa/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Cocoa/Play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Cocoa/Play.png -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Cocoa/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Cocoa/main.m -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Core/apu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Core/apu.c -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Core/apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Core/apu.h -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Core/camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Core/camera.c -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Core/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Core/camera.h -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Core/cheats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Core/cheats.c -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Core/cheats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Core/cheats.h -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Core/debugger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Core/debugger.c -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Core/debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Core/debugger.h -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Core/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Core/defs.h -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Core/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Core/display.c -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Core/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Core/display.h -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Core/gb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Core/gb.c -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Core/gb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Core/gb.h -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Core/joypad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Core/joypad.c -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Core/joypad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Core/joypad.h -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Core/mbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Core/mbc.c -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Core/mbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Core/mbc.h -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Core/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Core/memory.c -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Core/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Core/memory.h -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Core/printer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Core/printer.c -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Core/printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Core/printer.h -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Core/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Core/random.c -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Core/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Core/random.h -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Core/rewind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Core/rewind.c -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Core/rewind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Core/rewind.h -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Core/rumble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Core/rumble.c -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Core/rumble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Core/rumble.h -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Core/sgb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Core/sgb.c -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Core/sgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Core/sgb.h -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Core/sm83_cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Core/sm83_cpu.c -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Core/sm83_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Core/sm83_cpu.h -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Core/timing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Core/timing.c -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Core/timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Core/timing.h -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Core/workboy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Core/workboy.c -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Core/workboy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Core/workboy.h -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/JoyKit/JOYHat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/JoyKit/JOYHat.h -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/JoyKit/JOYHat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/JoyKit/JOYHat.m -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/JoyKit/JoyKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/JoyKit/JoyKit.h -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/LICENSE -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Makefile -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/QuickLook/exports.sym: -------------------------------------------------------------------------------- 1 | _QuickLookGeneratorPluginFactory 2 | -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/README.md -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/SDL/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/SDL/audio.c -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/SDL/audio/sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/SDL/audio/sdl.c -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/SDL/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/SDL/console.c -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/SDL/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/SDL/console.h -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/SDL/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/SDL/font.c -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/SDL/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/SDL/font.h -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/SDL/gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/SDL/gui.c -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/SDL/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/SDL/gui.h -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/SDL/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/SDL/main.c -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/SDL/shader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/SDL/shader.c -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/SDL/shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/SDL/shader.h -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/SDL/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/SDL/utils.c -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/SDL/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/SDL/utils.h -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Shaders/CRT.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Shaders/CRT.fsh -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Shaders/LCD.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Shaders/LCD.fsh -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Tester/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Tester/main.c -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Windows/inttypes.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Windows/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Windows/math.h -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Windows/stdint.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include_next 3 | typedef intptr_t ssize_t; -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/Windows/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/Windows/stdio.h -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/libretro/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_ABI := all 2 | -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/libretro/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy-old/libretro/link.T -------------------------------------------------------------------------------- /thirdparty/SameBoy-old/version.mk: -------------------------------------------------------------------------------- 1 | VERSION := 0.15.4 -------------------------------------------------------------------------------- /thirdparty/SameBoy/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/.gitattributes -------------------------------------------------------------------------------- /thirdparty/SameBoy/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: LIJI32 4 | -------------------------------------------------------------------------------- /thirdparty/SameBoy/.gitignore: -------------------------------------------------------------------------------- 1 | build -------------------------------------------------------------------------------- /thirdparty/SameBoy/BESS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/BESS.md -------------------------------------------------------------------------------- /thirdparty/SameBoy/BootROMs/agb_boot.asm: -------------------------------------------------------------------------------- 1 | AGB EQU 1 2 | include "cgb_boot.asm" -------------------------------------------------------------------------------- /thirdparty/SameBoy/BootROMs/cgb0_boot.asm: -------------------------------------------------------------------------------- 1 | CGB0 EQU 1 2 | include "cgb_boot.asm" -------------------------------------------------------------------------------- /thirdparty/SameBoy/BootROMs/cgb_boot_fast.asm: -------------------------------------------------------------------------------- 1 | FAST EQU 1 2 | include "cgb_boot.asm" -------------------------------------------------------------------------------- /thirdparty/SameBoy/BootROMs/mgb_boot.asm: -------------------------------------------------------------------------------- 1 | MGB EQU 1 2 | include "dmg_boot.asm" -------------------------------------------------------------------------------- /thirdparty/SameBoy/BootROMs/pb12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/BootROMs/pb12.c -------------------------------------------------------------------------------- /thirdparty/SameBoy/BootROMs/sgb2_boot.asm: -------------------------------------------------------------------------------- 1 | SGB2 EQU 1 2 | include "sgb_boot.asm" -------------------------------------------------------------------------------- /thirdparty/SameBoy/CHANGES.md: -------------------------------------------------------------------------------- 1 | See https://sameboy.github.io/changelog/ -------------------------------------------------------------------------------- /thirdparty/SameBoy/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/CONTRIBUTING.md -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/AppIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/AppIcon.icns -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/CPU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/CPU.png -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/CPU@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/CPU@2x.png -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/CPU~solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/CPU~solid.png -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/Display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/Display.png -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/Document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/Document.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/Document.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/Document.m -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/Document.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/Document.xib -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/GBApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/GBApp.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/GBApp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/GBApp.m -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/GBButtons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/GBButtons.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/GBButtons.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/GBButtons.m -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/GBGLShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/GBGLShader.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/GBGLShader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/GBGLShader.m -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/GBImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/GBImageView.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/GBImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/GBImageView.m -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/GBOSDView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/GBOSDView.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/GBOSDView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/GBOSDView.m -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/GBS.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/GBS.xib -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/GBS11.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/GBS11.xib -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/GBSplitView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/GBSplitView.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/GBSplitView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/GBSplitView.m -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/GBView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/GBView.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/GBView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/GBView.m -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/GBViewGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/GBViewGL.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/GBViewGL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/GBViewGL.m -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/GBViewMetal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/GBViewMetal.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/GBViewMetal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/GBViewMetal.m -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/Icon.png -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/Icon@2x.png -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/Info.plist -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/Joypad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/Joypad.png -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/Joypad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/Joypad@2x.png -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/License.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/License.html -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/MainMenu.xib -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/Next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/Next.png -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/Next@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/Next@2x.png -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/Pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/Pause.png -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/Pause@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/Pause@2x.png -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/Play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/Play.png -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/Play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/Play@2x.png -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/Previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/Previous.png -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/Rewind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/Rewind.png -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/Rewind@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/Rewind@2x.png -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/Speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/Speaker.png -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/Updates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/Updates.png -------------------------------------------------------------------------------- /thirdparty/SameBoy/Cocoa/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Cocoa/main.m -------------------------------------------------------------------------------- /thirdparty/SameBoy/Core/apu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Core/apu.c -------------------------------------------------------------------------------- /thirdparty/SameBoy/Core/apu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Core/apu.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/Core/camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Core/camera.c -------------------------------------------------------------------------------- /thirdparty/SameBoy/Core/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Core/camera.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/Core/cheats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Core/cheats.c -------------------------------------------------------------------------------- /thirdparty/SameBoy/Core/cheats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Core/cheats.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/Core/debugger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Core/debugger.c -------------------------------------------------------------------------------- /thirdparty/SameBoy/Core/debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Core/debugger.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/Core/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Core/defs.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/Core/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Core/display.c -------------------------------------------------------------------------------- /thirdparty/SameBoy/Core/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Core/display.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/Core/gb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Core/gb.c -------------------------------------------------------------------------------- /thirdparty/SameBoy/Core/gb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Core/gb.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/Core/joypad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Core/joypad.c -------------------------------------------------------------------------------- /thirdparty/SameBoy/Core/joypad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Core/joypad.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/Core/mbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Core/mbc.c -------------------------------------------------------------------------------- /thirdparty/SameBoy/Core/mbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Core/mbc.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/Core/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Core/memory.c -------------------------------------------------------------------------------- /thirdparty/SameBoy/Core/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Core/memory.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/Core/printer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Core/printer.c -------------------------------------------------------------------------------- /thirdparty/SameBoy/Core/printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Core/printer.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/Core/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Core/random.c -------------------------------------------------------------------------------- /thirdparty/SameBoy/Core/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Core/random.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/Core/rewind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Core/rewind.c -------------------------------------------------------------------------------- /thirdparty/SameBoy/Core/rewind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Core/rewind.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/Core/rumble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Core/rumble.c -------------------------------------------------------------------------------- /thirdparty/SameBoy/Core/rumble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Core/rumble.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/Core/save_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Core/save_state.c -------------------------------------------------------------------------------- /thirdparty/SameBoy/Core/save_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Core/save_state.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/Core/sgb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Core/sgb.c -------------------------------------------------------------------------------- /thirdparty/SameBoy/Core/sgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Core/sgb.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/Core/sm83_cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Core/sm83_cpu.c -------------------------------------------------------------------------------- /thirdparty/SameBoy/Core/sm83_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Core/sm83_cpu.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/Core/symbol_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Core/symbol_hash.c -------------------------------------------------------------------------------- /thirdparty/SameBoy/Core/symbol_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Core/symbol_hash.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/Core/timing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Core/timing.c -------------------------------------------------------------------------------- /thirdparty/SameBoy/Core/timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Core/timing.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/Core/workboy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Core/workboy.c -------------------------------------------------------------------------------- /thirdparty/SameBoy/Core/workboy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Core/workboy.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/HexFiend/HFBTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/HexFiend/HFBTree.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/HexFiend/HFBTree.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/HexFiend/HFBTree.m -------------------------------------------------------------------------------- /thirdparty/SameBoy/HexFiend/HFTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/HexFiend/HFTypes.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/HexFiend/HexFiend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/HexFiend/HexFiend.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/JoyKit/JOYAxes2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/JoyKit/JOYAxes2D.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/JoyKit/JOYAxes2D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/JoyKit/JOYAxes2D.m -------------------------------------------------------------------------------- /thirdparty/SameBoy/JoyKit/JOYAxes3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/JoyKit/JOYAxes3D.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/JoyKit/JOYAxes3D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/JoyKit/JOYAxes3D.m -------------------------------------------------------------------------------- /thirdparty/SameBoy/JoyKit/JOYAxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/JoyKit/JOYAxis.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/JoyKit/JOYAxis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/JoyKit/JOYAxis.m -------------------------------------------------------------------------------- /thirdparty/SameBoy/JoyKit/JOYButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/JoyKit/JOYButton.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/JoyKit/JOYButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/JoyKit/JOYButton.m -------------------------------------------------------------------------------- /thirdparty/SameBoy/JoyKit/JOYElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/JoyKit/JOYElement.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/JoyKit/JOYElement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/JoyKit/JOYElement.m -------------------------------------------------------------------------------- /thirdparty/SameBoy/JoyKit/JOYHat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/JoyKit/JOYHat.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/JoyKit/JOYHat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/JoyKit/JOYHat.m -------------------------------------------------------------------------------- /thirdparty/SameBoy/JoyKit/JOYInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/JoyKit/JOYInput.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/JoyKit/JOYInput.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/JoyKit/JOYInput.m -------------------------------------------------------------------------------- /thirdparty/SameBoy/JoyKit/JoyKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/JoyKit/JoyKit.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/LICENSE -------------------------------------------------------------------------------- /thirdparty/SameBoy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Makefile -------------------------------------------------------------------------------- /thirdparty/SameBoy/Misc/registers.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Misc/registers.sym -------------------------------------------------------------------------------- /thirdparty/SameBoy/OpenDialog/cocoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/OpenDialog/cocoa.m -------------------------------------------------------------------------------- /thirdparty/SameBoy/OpenDialog/gtk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/OpenDialog/gtk.c -------------------------------------------------------------------------------- /thirdparty/SameBoy/QuickLook/exports.sym: -------------------------------------------------------------------------------- 1 | _QuickLookGeneratorPluginFactory 2 | -------------------------------------------------------------------------------- /thirdparty/SameBoy/QuickLook/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/QuickLook/main.c -------------------------------------------------------------------------------- /thirdparty/SameBoy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/README.md -------------------------------------------------------------------------------- /thirdparty/SameBoy/SDL/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/SDL/audio.c -------------------------------------------------------------------------------- /thirdparty/SameBoy/SDL/audio/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/SDL/audio/audio.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/SDL/audio/openal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/SDL/audio/openal.c -------------------------------------------------------------------------------- /thirdparty/SameBoy/SDL/audio/sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/SDL/audio/sdl.c -------------------------------------------------------------------------------- /thirdparty/SameBoy/SDL/audio/xaudio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/SDL/audio/xaudio2.c -------------------------------------------------------------------------------- /thirdparty/SameBoy/SDL/background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/SDL/background.bmp -------------------------------------------------------------------------------- /thirdparty/SameBoy/SDL/configuration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/SDL/configuration.c -------------------------------------------------------------------------------- /thirdparty/SameBoy/SDL/configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/SDL/configuration.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/SDL/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/SDL/console.c -------------------------------------------------------------------------------- /thirdparty/SameBoy/SDL/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/SDL/console.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/SDL/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/SDL/font.c -------------------------------------------------------------------------------- /thirdparty/SameBoy/SDL/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/SDL/font.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/SDL/gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/SDL/gui.c -------------------------------------------------------------------------------- /thirdparty/SameBoy/SDL/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/SDL/gui.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/SDL/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/SDL/main.c -------------------------------------------------------------------------------- /thirdparty/SameBoy/SDL/opengl_compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/SDL/opengl_compat.c -------------------------------------------------------------------------------- /thirdparty/SameBoy/SDL/opengl_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/SDL/opengl_compat.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/SDL/shader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/SDL/shader.c -------------------------------------------------------------------------------- /thirdparty/SameBoy/SDL/shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/SDL/shader.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/SDL/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/SDL/utils.c -------------------------------------------------------------------------------- /thirdparty/SameBoy/SDL/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/SDL/utils.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/Shaders/CRT.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Shaders/CRT.fsh -------------------------------------------------------------------------------- /thirdparty/SameBoy/Shaders/HQ2x.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Shaders/HQ2x.fsh -------------------------------------------------------------------------------- /thirdparty/SameBoy/Shaders/LCD.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Shaders/LCD.fsh -------------------------------------------------------------------------------- /thirdparty/SameBoy/Shaders/MonoLCD.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Shaders/MonoLCD.fsh -------------------------------------------------------------------------------- /thirdparty/SameBoy/Shaders/Scale2x.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Shaders/Scale2x.fsh -------------------------------------------------------------------------------- /thirdparty/SameBoy/Shaders/Scale4x.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Shaders/Scale4x.fsh -------------------------------------------------------------------------------- /thirdparty/SameBoy/Tester/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Tester/main.c -------------------------------------------------------------------------------- /thirdparty/SameBoy/Windows/dirent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Windows/dirent.c -------------------------------------------------------------------------------- /thirdparty/SameBoy/Windows/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Windows/dirent.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/Windows/inttypes.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /thirdparty/SameBoy/Windows/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Windows/math.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/Windows/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Windows/pthread.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/Windows/sameboy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Windows/sameboy.ico -------------------------------------------------------------------------------- /thirdparty/SameBoy/Windows/stdint.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include_next 3 | typedef intptr_t ssize_t; -------------------------------------------------------------------------------- /thirdparty/SameBoy/Windows/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Windows/stdio.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/Windows/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Windows/stdlib.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/Windows/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Windows/string.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/Windows/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/Windows/unistd.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/build-faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/build-faq.md -------------------------------------------------------------------------------- /thirdparty/SameBoy/libretro/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/libretro/Makefile -------------------------------------------------------------------------------- /thirdparty/SameBoy/libretro/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_ABI := all 2 | -------------------------------------------------------------------------------- /thirdparty/SameBoy/libretro/libretro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/libretro/libretro.c -------------------------------------------------------------------------------- /thirdparty/SameBoy/libretro/libretro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/libretro/libretro.h -------------------------------------------------------------------------------- /thirdparty/SameBoy/libretro/link.T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/SameBoy/libretro/link.T -------------------------------------------------------------------------------- /thirdparty/SameBoy/version.mk: -------------------------------------------------------------------------------- 1 | VERSION := 0.15.7 -------------------------------------------------------------------------------- /thirdparty/bin2h/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/bin2h/main.cpp -------------------------------------------------------------------------------- /thirdparty/gainput/.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/gainput/.appveyor.yml -------------------------------------------------------------------------------- /thirdparty/gainput/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/gainput/.gitignore -------------------------------------------------------------------------------- /thirdparty/gainput/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/gainput/.travis.yml -------------------------------------------------------------------------------- /thirdparty/gainput/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/gainput/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/gainput/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/gainput/Doxyfile -------------------------------------------------------------------------------- /thirdparty/gainput/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/gainput/LICENSE -------------------------------------------------------------------------------- /thirdparty/gainput/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/gainput/README.md -------------------------------------------------------------------------------- /thirdparty/gainput/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/gainput/build.gradle -------------------------------------------------------------------------------- /thirdparty/gainput/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/gainput/lib/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/gainput/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/gainput/test/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/gainput/test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/gainput/test/test.cpp -------------------------------------------------------------------------------- /thirdparty/ghc/filesystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/ghc/filesystem.hpp -------------------------------------------------------------------------------- /thirdparty/iPlug2/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/.editorconfig -------------------------------------------------------------------------------- /thirdparty/iPlug2/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/.gitattributes -------------------------------------------------------------------------------- /thirdparty/iPlug2/.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/.github/FUNDING.yml -------------------------------------------------------------------------------- /thirdparty/iPlug2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/.gitignore -------------------------------------------------------------------------------- /thirdparty/iPlug2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/.travis.yml -------------------------------------------------------------------------------- /thirdparty/iPlug2/Dependencies/IPlug/RTAudio/tests/Debug/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/iPlug2/Dependencies/IPlug/RTAudio/tests/Release/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/iPlug2/Dependencies/IPlug/RTAudio/tests/Windows/Debug/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/iPlug2/Dependencies/IPlug/RTAudio/tests/Windows/Release/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/iPlug2/Dependencies/IPlug/RTMidi/tests/Debug/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/iPlug2/Dependencies/IPlug/RTMidi/tests/Release/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/iPlug2/Examples/IPlugControls/IPlugControls.xcworkspace/.xcodesamplecode.plist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/iPlug2/Examples/IPlugDrumSynth/IPlugDrumSynth.xcworkspace/.xcodesamplecode.plist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/iPlug2/Examples/IPlugEffect/IPlugEffect.xcworkspace/.xcodesamplecode.plist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/iPlug2/Examples/IPlugFaustDSP/IPlugFaustDSP.xcworkspace/.xcodesamplecode.plist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/iPlug2/Examples/IPlugInstrument/IPlugInstrument.xcworkspace/.xcodesamplecode.plist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/iPlug2/Examples/IPlugMidiEffect/IPlugMidiEffect.xcworkspace/.xcodesamplecode.plist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/iPlug2/Examples/IPlugReaperExtension/resources/main.rc_mac_menu: -------------------------------------------------------------------------------- 1 | 2 | //EOF 3 | 4 | -------------------------------------------------------------------------------- /thirdparty/iPlug2/Examples/IPlugResponsiveUI/IPlugResponsiveUI.xcworkspace/.xcodesamplecode.plist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/iPlug2/Examples/IPlugSideChain/IPlugSideChain.xcworkspace/.xcodesamplecode.plist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/iPlug2/Examples/IPlugSurroundEffect/IPlugSurroundEffect.xcworkspace/.xcodesamplecode.plist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/iPlug2/Examples/IPlugSwift/IPlugSwift.xcworkspace/.xcodesamplecode.plist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/iPlug2/Examples/IPlugWebUI/IPlugWebUI.xcworkspace/.xcodesamplecode.plist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/iPlug2/Examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/Examples/README.md -------------------------------------------------------------------------------- /thirdparty/iPlug2/IGraphics/Drawing/IGraphicsAGG_src.mm: -------------------------------------------------------------------------------- 1 | #if defined IGRAPHICS_AGG 2 | #include "agg_mac_pmap.mm" 3 | #endif 4 | -------------------------------------------------------------------------------- /thirdparty/iPlug2/IGraphics/IControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/IGraphics/IControl.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/IGraphics/ISender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/IGraphics/ISender.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/IPlug/AAX/IPlugAAX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/IPlug/AAX/IPlugAAX.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/IPlug/APP/IPlugAPP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/IPlug/APP/IPlugAPP.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/IPlug/AUv2/IPlugAU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/IPlug/AUv2/IPlugAU.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/IPlug/AUv2/IPlugAU.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/IPlug/AUv2/IPlugAU.r -------------------------------------------------------------------------------- /thirdparty/iPlug2/IPlug/Extras/LFO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/IPlug/Extras/LFO.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/IPlug/Extras/SVF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/IPlug/Extras/SVF.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/IPlug/IPlugAPIBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/IPlug/IPlugAPIBase.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/IPlug/IPlugLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/IPlug/IPlugLogger.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/IPlug/IPlugMidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/IPlug/IPlugMidi.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/IPlug/IPlugPaths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/IPlug/IPlugPaths.cpp -------------------------------------------------------------------------------- /thirdparty/iPlug2/IPlug/IPlugPaths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/IPlug/IPlugPaths.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/IPlug/IPlugPaths.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/IPlug/IPlugPaths.mm -------------------------------------------------------------------------------- /thirdparty/iPlug2/IPlug/IPlugQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/IPlug/IPlugQueue.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/IPlug/IPlugSWELL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/IPlug/IPlugSWELL.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/IPlug/IPlugStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/IPlug/IPlugStructs.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/IPlug/IPlugTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/IPlug/IPlugTimer.cpp -------------------------------------------------------------------------------- /thirdparty/iPlug2/IPlug/IPlugTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/IPlug/IPlugTimer.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/IPlug/WEB/IPlugWAM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/IPlug/WEB/IPlugWAM.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/IPlug/WEB/IPlugWeb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/IPlug/WEB/IPlugWeb.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/LICENSE.txt -------------------------------------------------------------------------------- /thirdparty/iPlug2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/README.md -------------------------------------------------------------------------------- /thirdparty/iPlug2/Scripts/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/Scripts/server.py -------------------------------------------------------------------------------- /thirdparty/iPlug2/Tests/IGraphicsStressTest/IGraphicsStressTest.xcworkspace/.xcodesamplecode.plist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/iPlug2/Tests/IGraphicsTest/IGraphicsTest.xcworkspace/.xcodesamplecode.plist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/iPlug2/Tests/MetaParamTest/MetaParamTest.xcworkspace/.xcodesamplecode.plist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/iPlug2/Tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/Tests/README.md -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/.gitattributes -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/adpcm_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/adpcm_decode.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/adpcm_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/adpcm_encode.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/assocarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/assocarray.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/besselfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/besselfilter.cpp -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/besselfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/besselfilter.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/bitfield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/bitfield.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/blowfish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/blowfish.c -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/blowfish.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/chunkalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/chunkalloc.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/circbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/circbuf.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/cmath/horner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/cmath/horner.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/convoengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/convoengine.cpp -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/convoengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/convoengine.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/db2val.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/db2val.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/denormal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/denormal.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/des.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/des.cpp -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/des.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/destroycheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/destroycheck.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/diffcalc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/diffcalc.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/dirscan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/dirscan.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/eel2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/eel2/.gitignore -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/eel2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/eel2/Makefile -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/eel2/a2i.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/eel2/a2i.php -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/eel2/a2x64.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/eel2/a2x64.php -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/eel2/eel2.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/eel2/eel2.l -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/eel2/eel2.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/eel2/eel2.vim -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/eel2/eel2.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/eel2/eel2.y -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/eel2/eel_eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/eel2/eel_eval.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/eel2/eel_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/eel2/eel_fft.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/eel2/eel_files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/eel2/eel_files.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/eel2/eel_lice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/eel2/eel_lice.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/eel2/eel_mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/eel2/eel_mdct.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/eel2/eel_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/eel2/eel_misc.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/eel2/eel_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/eel2/eel_net.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/eel2/eelscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/eel2/eelscript.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/eel2/ns-eel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/eel2/ns-eel.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/eel2/nseel-caltab.c: -------------------------------------------------------------------------------- 1 | // no longer used -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/eel2/nseel-lextab.c: -------------------------------------------------------------------------------- 1 | // no longer used -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/eel2/y.tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/eel2/y.tab.c -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/eel2/y.tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/eel2/y.tab.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/fastqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/fastqueue.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/ffmpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/ffmpeg.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/fft.c -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/fft.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/filebrowse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/filebrowse.cpp -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/filebrowse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/filebrowse.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/filename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/filename.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/fileread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/fileread.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/filewrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/filewrite.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/fnv64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/fnv64.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/giflib/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/giflib/AUTHORS -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/giflib/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/giflib/COPYING -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/giflib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/giflib/README -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/gpu/gpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/gpu/gpu.cpp -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/gpu/gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/gpu/gpu.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/gpu/wglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/gpu/wglext.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/has_strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/has_strings.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/heapbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/heapbuf.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/history.txt -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/jnetlib/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/jnetlib/util.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/jpeglib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/jpeglib/README -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/jpeglib/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/jpeglib/jdct.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/lameencdec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/lameencdec.cpp -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/lameencdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/lameencdec.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/libpng/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/libpng/CHANGES -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/libpng/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/libpng/LICENSE -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/libpng/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/libpng/README -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/libpng/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/libpng/png.c -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/libpng/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/libpng/png.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/lice/lice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/lice/lice.cpp -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/lice/lice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/lice/lice.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/lineparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/lineparse.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/md5.c -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/md5.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/mergesort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/mergesort.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/mp3write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/mp3write.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/mutex.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/nsv/nsvbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/nsv/nsvbs.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/nsv/nsvlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/nsv/nsvlib.cpp -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/nsv/nsvlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/nsv/nsvlib.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/pcmfmtcvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/pcmfmtcvt.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/plush2/plush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/plush2/plush.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/poollist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/poollist.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/ptrlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/ptrlist.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/queue.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/reminder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/reminder.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/resample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/resample.cpp -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/resample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/resample.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/rfb_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/rfb_client.cpp -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/rfb_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/rfb_client.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/rng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/rng.cpp -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/rng.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/rpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/rpool.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/scalafile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/scalafile.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/scsrc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/scsrc.cpp -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/scsrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/scsrc.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/sha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/sha.cpp -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/sha.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/sharedpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/sharedpool.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/shm_msgreply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/shm_msgreply.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/sinewavegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/sinewavegen.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/stringpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/stringpool.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/swell/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/swell/Makefile -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/swell/commctrl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/swell/shlobj.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/swell/swell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/swell/swell.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/time_precise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/time_precise.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/timing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/timing.c -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/timing.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/verbengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/verbengine.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/vorbisencdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/vorbisencdec.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/wavwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/wavwrite.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/wdl_base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/wdl_base64.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/wdlatomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/wdlatomic.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/wdlcstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/wdlcstring.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/wdlendian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/wdlendian.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/wdlstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/wdlstring.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/wdltypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/wdltypes.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/wdlutf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/wdlutf8.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/win32_hidpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/win32_hidpi.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/win32_printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/win32_printf.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/win32_utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/win32_utf8.c -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/win32_utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/win32_utf8.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/xmlparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/xmlparse.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/xsrand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/xsrand.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/zlib/README -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/zlib/adler32.c -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/zlib/crc32.c -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/zlib/crc32.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/zlib/deflate.c -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/zlib/deflate.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/zlib/gzclose.c -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/zlib/gzguts.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/zlib/gzlib.c -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/zlib/gzread.c -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/zlib/gzwrite.c -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/zlib/infback.c -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/zlib/inffast.c -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/zlib/inffast.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/zlib/inflate.c -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/zlib/inflate.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/zlib/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/zlib/ioapi.c -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/zlib/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/zlib/ioapi.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/zlib/trees.c -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/zlib/trees.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/zlib/uncompr.c -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/zlib/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/zlib/unzip.c -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/zlib/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/zlib/unzip.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/zlib/zconf.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/zlib/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/zlib/zip.c -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/zlib/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/zlib/zip.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/zlib/zlib.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/zlib/zutil.c -------------------------------------------------------------------------------- /thirdparty/iPlug2/WDL/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/WDL/zlib/zutil.h -------------------------------------------------------------------------------- /thirdparty/iPlug2/common-web.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/common-web.mk -------------------------------------------------------------------------------- /thirdparty/iPlug2/common-win.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/common-win.props -------------------------------------------------------------------------------- /thirdparty/iPlug2/lua/configgen.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/lua/configgen.lua -------------------------------------------------------------------------------- /thirdparty/iPlug2/lua/iplug2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/lua/iplug2.lua -------------------------------------------------------------------------------- /thirdparty/iPlug2/lua/semver.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/lua/semver.lua -------------------------------------------------------------------------------- /thirdparty/iPlug2/lua/util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/iPlug2/lua/util.lua -------------------------------------------------------------------------------- /thirdparty/liblsdj/.gitignore: -------------------------------------------------------------------------------- 1 | **/build 2 | **/xcode 3 | *.DS_Store -------------------------------------------------------------------------------- /thirdparty/liblsdj/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/liblsdj/.gitmodules -------------------------------------------------------------------------------- /thirdparty/liblsdj/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/liblsdj/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/liblsdj/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/liblsdj/LICENSE -------------------------------------------------------------------------------- /thirdparty/liblsdj/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/liblsdj/README.md -------------------------------------------------------------------------------- /thirdparty/liblsdj/common/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/liblsdj/common/common.cpp -------------------------------------------------------------------------------- /thirdparty/liblsdj/common/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/liblsdj/common/common.hpp -------------------------------------------------------------------------------- /thirdparty/liblsdj/liblsdj/src/sav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/liblsdj/liblsdj/src/sav.c -------------------------------------------------------------------------------- /thirdparty/liblsdj/liblsdj/src/vio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/liblsdj/liblsdj/src/vio.c -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/Makefile -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/README -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/doc/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/doc/index.css -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/doc/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/doc/logo.gif -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/doc/lua.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/doc/lua.1 -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/doc/lua.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/doc/lua.css -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/doc/luac.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/doc/luac.1 -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/doc/manual.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/doc/manual.css -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/doc/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/doc/manual.html -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/doc/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/doc/readme.html -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/Makefile -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/lapi.c -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/lapi.h -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/lauxlib.c -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/lauxlib.h -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/lbaselib.c -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/lbitlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/lbitlib.c -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/lcode.c -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/lcode.h -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/lcorolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/lcorolib.c -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/lctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/lctype.c -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/lctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/lctype.h -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/ldblib.c -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/ldebug.c -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/ldebug.h -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/ldo.c -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/ldo.h -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/ldump.c -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/lfunc.c -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/lfunc.h -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/lgc.c -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/lgc.h -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/linit.c -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/liolib.c -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/llex.c -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/llex.h -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/llimits.h -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/lmathlib.c -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/lmem.c -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/lmem.h -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/loadlib.c -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/lobject.c -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/lobject.h -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/lopcodes.c -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/lopcodes.h -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/loslib.c -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/lparser.c -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/lparser.h -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/lprefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/lprefix.h -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/lstate.c -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/lstate.h -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/lstring.c -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/lstring.h -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/lstrlib.c -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/ltable.c -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/ltable.h -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/ltablib.c -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/ltm.c -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/ltm.h -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/lua.c -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/lua.h -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/lua.hpp -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/luac.c -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/luaconf.h -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/lualib.h -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/lundump.c -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/lundump.h -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/lutf8lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/lutf8lib.c -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/lvm.c -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/lvm.h -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/lzio.c -------------------------------------------------------------------------------- /thirdparty/lua-5.3.5/src/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/lua-5.3.5/src/lzio.h -------------------------------------------------------------------------------- /thirdparty/minizip-ng/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: nmoinvaz 2 | -------------------------------------------------------------------------------- /thirdparty/minizip-ng/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/minizip-ng/INDEX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/INDEX.md -------------------------------------------------------------------------------- /thirdparty/minizip-ng/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/LICENSE -------------------------------------------------------------------------------- /thirdparty/minizip-ng/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/README.md -------------------------------------------------------------------------------- /thirdparty/minizip-ng/doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/doc/README.md -------------------------------------------------------------------------------- /thirdparty/minizip-ng/doc/mz_hash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/doc/mz_hash.md -------------------------------------------------------------------------------- /thirdparty/minizip-ng/doc/mz_os.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/doc/mz_os.md -------------------------------------------------------------------------------- /thirdparty/minizip-ng/doc/mz_seek.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/doc/mz_seek.md -------------------------------------------------------------------------------- /thirdparty/minizip-ng/doc/mz_zip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/doc/mz_zip.md -------------------------------------------------------------------------------- /thirdparty/minizip-ng/lib/bzip2/.gitattributes: -------------------------------------------------------------------------------- 1 | *.ref binary 2 | -------------------------------------------------------------------------------- /thirdparty/minizip-ng/lib/liblzma/po/LINGUAS: -------------------------------------------------------------------------------- 1 | cs 2 | de 3 | fr 4 | it 5 | pl 6 | vi 7 | -------------------------------------------------------------------------------- /thirdparty/minizip-ng/lib/liblzma/po4a/.gitignore: -------------------------------------------------------------------------------- 1 | /man 2 | /xz-man.pot 3 | -------------------------------------------------------------------------------- /thirdparty/minizip-ng/lib/liblzma/tests/ossfuzz/config/fuzz.dict: -------------------------------------------------------------------------------- 1 | "\xFD7zXZ\x00" 2 | "YZ" 3 | -------------------------------------------------------------------------------- /thirdparty/minizip-ng/lib/zlib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/lib/zlib/FAQ -------------------------------------------------------------------------------- /thirdparty/minizip-ng/lib/zlib/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/lib/zlib/INDEX -------------------------------------------------------------------------------- /thirdparty/minizip-ng/lib/zstd/contrib/diagnose_corruption/.gitignore: -------------------------------------------------------------------------------- 1 | check_flipped_bits 2 | -------------------------------------------------------------------------------- /thirdparty/minizip-ng/lib/zstd/contrib/pzstd/.gitignore: -------------------------------------------------------------------------------- 1 | # compilation result 2 | pzstd 3 | -------------------------------------------------------------------------------- /thirdparty/minizip-ng/lib/zstd/contrib/seekable_format/tests/.gitignore: -------------------------------------------------------------------------------- 1 | seekable_tests 2 | -------------------------------------------------------------------------------- /thirdparty/minizip-ng/lib/zstd/doc/educational_decoder/.gitignore: -------------------------------------------------------------------------------- 1 | # Build artifacts 2 | harness 3 | -------------------------------------------------------------------------------- /thirdparty/minizip-ng/lib/zstd/programs/zstdless: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | zstdcat "$@" | less 3 | -------------------------------------------------------------------------------- /thirdparty/minizip-ng/lib/zstd/tests/regression/.gitignore: -------------------------------------------------------------------------------- 1 | # regression test artifacts 2 | data-cache 3 | test 4 | -------------------------------------------------------------------------------- /thirdparty/minizip-ng/minigzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/minigzip.c -------------------------------------------------------------------------------- /thirdparty/minizip-ng/minizip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/minizip.c -------------------------------------------------------------------------------- /thirdparty/minizip-ng/mz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/mz.h -------------------------------------------------------------------------------- /thirdparty/minizip-ng/mz_compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/mz_compat.c -------------------------------------------------------------------------------- /thirdparty/minizip-ng/mz_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/mz_compat.h -------------------------------------------------------------------------------- /thirdparty/minizip-ng/mz_crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/mz_crypt.c -------------------------------------------------------------------------------- /thirdparty/minizip-ng/mz_crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/mz_crypt.h -------------------------------------------------------------------------------- /thirdparty/minizip-ng/mz_os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/mz_os.c -------------------------------------------------------------------------------- /thirdparty/minizip-ng/mz_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/mz_os.h -------------------------------------------------------------------------------- /thirdparty/minizip-ng/mz_os_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/mz_os_posix.c -------------------------------------------------------------------------------- /thirdparty/minizip-ng/mz_os_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/mz_os_win32.c -------------------------------------------------------------------------------- /thirdparty/minizip-ng/mz_strm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/mz_strm.c -------------------------------------------------------------------------------- /thirdparty/minizip-ng/mz_strm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/mz_strm.h -------------------------------------------------------------------------------- /thirdparty/minizip-ng/mz_strm_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/mz_strm_buf.c -------------------------------------------------------------------------------- /thirdparty/minizip-ng/mz_strm_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/mz_strm_buf.h -------------------------------------------------------------------------------- /thirdparty/minizip-ng/mz_strm_bzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/mz_strm_bzip.c -------------------------------------------------------------------------------- /thirdparty/minizip-ng/mz_strm_bzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/mz_strm_bzip.h -------------------------------------------------------------------------------- /thirdparty/minizip-ng/mz_strm_lzma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/mz_strm_lzma.c -------------------------------------------------------------------------------- /thirdparty/minizip-ng/mz_strm_lzma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/mz_strm_lzma.h -------------------------------------------------------------------------------- /thirdparty/minizip-ng/mz_strm_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/mz_strm_mem.c -------------------------------------------------------------------------------- /thirdparty/minizip-ng/mz_strm_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/mz_strm_mem.h -------------------------------------------------------------------------------- /thirdparty/minizip-ng/mz_strm_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/mz_strm_os.h -------------------------------------------------------------------------------- /thirdparty/minizip-ng/mz_strm_zlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/mz_strm_zlib.c -------------------------------------------------------------------------------- /thirdparty/minizip-ng/mz_strm_zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/mz_strm_zlib.h -------------------------------------------------------------------------------- /thirdparty/minizip-ng/mz_strm_zstd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/mz_strm_zstd.c -------------------------------------------------------------------------------- /thirdparty/minizip-ng/mz_strm_zstd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/mz_strm_zstd.h -------------------------------------------------------------------------------- /thirdparty/minizip-ng/mz_zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/mz_zip.c -------------------------------------------------------------------------------- /thirdparty/minizip-ng/mz_zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/mz_zip.h -------------------------------------------------------------------------------- /thirdparty/minizip-ng/mz_zip_rw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/mz_zip_rw.c -------------------------------------------------------------------------------- /thirdparty/minizip-ng/mz_zip_rw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/mz_zip_rw.h -------------------------------------------------------------------------------- /thirdparty/minizip-ng/test/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/minizip-ng/test/single.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /thirdparty/minizip-ng/test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/test/test.c -------------------------------------------------------------------------------- /thirdparty/minizip-ng/test/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/test/test.h -------------------------------------------------------------------------------- /thirdparty/minizip-ng/test/test.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/test/test.p12 -------------------------------------------------------------------------------- /thirdparty/minizip-ng/test/test.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/test/test.pem -------------------------------------------------------------------------------- /thirdparty/minizip-ng/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/unzip.h -------------------------------------------------------------------------------- /thirdparty/minizip-ng/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/minizip-ng/zip.h -------------------------------------------------------------------------------- /thirdparty/semver/semver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/semver/semver.hpp -------------------------------------------------------------------------------- /thirdparty/sol/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/sol/config.hpp -------------------------------------------------------------------------------- /thirdparty/sol/forward.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/sol/forward.hpp -------------------------------------------------------------------------------- /thirdparty/sol/sol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/sol/sol.hpp -------------------------------------------------------------------------------- /thirdparty/spdlog/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/spdlog/.clang-format -------------------------------------------------------------------------------- /thirdparty/spdlog/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/spdlog/.clang-tidy -------------------------------------------------------------------------------- /thirdparty/spdlog/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=false 2 | -------------------------------------------------------------------------------- /thirdparty/spdlog/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/spdlog/.gitignore -------------------------------------------------------------------------------- /thirdparty/spdlog/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/spdlog/.travis.yml -------------------------------------------------------------------------------- /thirdparty/spdlog/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/spdlog/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/spdlog/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/spdlog/INSTALL -------------------------------------------------------------------------------- /thirdparty/spdlog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/spdlog/LICENSE -------------------------------------------------------------------------------- /thirdparty/spdlog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/spdlog/README.md -------------------------------------------------------------------------------- /thirdparty/spdlog/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/spdlog/appveyor.yml -------------------------------------------------------------------------------- /thirdparty/spdlog/bench/bench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/spdlog/bench/bench.cpp -------------------------------------------------------------------------------- /thirdparty/spdlog/bench/latency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/spdlog/bench/latency.cpp -------------------------------------------------------------------------------- /thirdparty/spdlog/bench/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/spdlog/bench/utils.h -------------------------------------------------------------------------------- /thirdparty/spdlog/cmake/ide.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/spdlog/cmake/ide.cmake -------------------------------------------------------------------------------- /thirdparty/spdlog/cmake/pch.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/spdlog/cmake/pch.h.in -------------------------------------------------------------------------------- /thirdparty/spdlog/cmake/spdlog.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/spdlog/cmake/spdlog.pc.in -------------------------------------------------------------------------------- /thirdparty/spdlog/cmake/utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/spdlog/cmake/utils.cmake -------------------------------------------------------------------------------- /thirdparty/spdlog/scripts/format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/spdlog/scripts/format.sh -------------------------------------------------------------------------------- /thirdparty/spdlog/src/async.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/spdlog/src/async.cpp -------------------------------------------------------------------------------- /thirdparty/spdlog/src/cfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/spdlog/src/cfg.cpp -------------------------------------------------------------------------------- /thirdparty/spdlog/src/file_sinks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/spdlog/src/file_sinks.cpp -------------------------------------------------------------------------------- /thirdparty/spdlog/src/fmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/spdlog/src/fmt.cpp -------------------------------------------------------------------------------- /thirdparty/spdlog/src/spdlog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/spdlog/src/spdlog.cpp -------------------------------------------------------------------------------- /thirdparty/spdlog/tests/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/spdlog/tests/catch.hpp -------------------------------------------------------------------------------- /thirdparty/spdlog/tests/includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/spdlog/tests/includes.h -------------------------------------------------------------------------------- /thirdparty/spdlog/tests/main.cpp: -------------------------------------------------------------------------------- 1 | #define CATCH_CONFIG_MAIN 2 | #include "catch.hpp" -------------------------------------------------------------------------------- /thirdparty/spdlog/tests/test_cfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/spdlog/tests/test_cfg.cpp -------------------------------------------------------------------------------- /thirdparty/spdlog/tests/test_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/spdlog/tests/test_sink.h -------------------------------------------------------------------------------- /thirdparty/spdlog/tests/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/spdlog/tests/utils.cpp -------------------------------------------------------------------------------- /thirdparty/spdlog/tests/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/spdlog/tests/utils.h -------------------------------------------------------------------------------- /thirdparty/xxhash/xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/xxhash/xxhash.c -------------------------------------------------------------------------------- /thirdparty/xxhash/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/thirdparty/xxhash/xxhash.h -------------------------------------------------------------------------------- /web.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommitytom/RetroPlug/HEAD/web.sh --------------------------------------------------------------------------------