├── AUGraph.png ├── README.md ├── SynthMixDemo.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── SynthMixDemo ├── Base.lproj │ └── Main.storyboard ├── GUGS_Fluid_v1_44.sf2 ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ └── SynthMixDemo5.png │ └── LaunchImage.launchimage │ │ └── Contents.json ├── SCAppDelegate.h ├── SCAppDelegate.m ├── SCAudioController.h ├── SCAudioController.m ├── SCSynthMixerViewController.h ├── SCSynthMixerViewController.m ├── SynthMixDemo-Info.plist ├── SynthMixDemo-Prefix.pch ├── en.lproj │ └── InfoPlist.strings ├── main.m ├── off.png └── on.png └── SynthMixDemoTests ├── SynthMixDemoTests-Info.plist ├── SynthMixDemoTests.m └── en.lproj └── InfoPlist.strings /AUGraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scussen/synthmixerdemo/HEAD/AUGraph.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scussen/synthmixerdemo/HEAD/README.md -------------------------------------------------------------------------------- /SynthMixDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scussen/synthmixerdemo/HEAD/SynthMixDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SynthMixDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scussen/synthmixerdemo/HEAD/SynthMixDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SynthMixDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scussen/synthmixerdemo/HEAD/SynthMixDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SynthMixDemo/GUGS_Fluid_v1_44.sf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scussen/synthmixerdemo/HEAD/SynthMixDemo/GUGS_Fluid_v1_44.sf2 -------------------------------------------------------------------------------- /SynthMixDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scussen/synthmixerdemo/HEAD/SynthMixDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SynthMixDemo/Images.xcassets/AppIcon.appiconset/SynthMixDemo5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scussen/synthmixerdemo/HEAD/SynthMixDemo/Images.xcassets/AppIcon.appiconset/SynthMixDemo5.png -------------------------------------------------------------------------------- /SynthMixDemo/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scussen/synthmixerdemo/HEAD/SynthMixDemo/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /SynthMixDemo/SCAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scussen/synthmixerdemo/HEAD/SynthMixDemo/SCAppDelegate.h -------------------------------------------------------------------------------- /SynthMixDemo/SCAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scussen/synthmixerdemo/HEAD/SynthMixDemo/SCAppDelegate.m -------------------------------------------------------------------------------- /SynthMixDemo/SCAudioController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scussen/synthmixerdemo/HEAD/SynthMixDemo/SCAudioController.h -------------------------------------------------------------------------------- /SynthMixDemo/SCAudioController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scussen/synthmixerdemo/HEAD/SynthMixDemo/SCAudioController.m -------------------------------------------------------------------------------- /SynthMixDemo/SCSynthMixerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scussen/synthmixerdemo/HEAD/SynthMixDemo/SCSynthMixerViewController.h -------------------------------------------------------------------------------- /SynthMixDemo/SCSynthMixerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scussen/synthmixerdemo/HEAD/SynthMixDemo/SCSynthMixerViewController.m -------------------------------------------------------------------------------- /SynthMixDemo/SynthMixDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scussen/synthmixerdemo/HEAD/SynthMixDemo/SynthMixDemo-Info.plist -------------------------------------------------------------------------------- /SynthMixDemo/SynthMixDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scussen/synthmixerdemo/HEAD/SynthMixDemo/SynthMixDemo-Prefix.pch -------------------------------------------------------------------------------- /SynthMixDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /SynthMixDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scussen/synthmixerdemo/HEAD/SynthMixDemo/main.m -------------------------------------------------------------------------------- /SynthMixDemo/off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scussen/synthmixerdemo/HEAD/SynthMixDemo/off.png -------------------------------------------------------------------------------- /SynthMixDemo/on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scussen/synthmixerdemo/HEAD/SynthMixDemo/on.png -------------------------------------------------------------------------------- /SynthMixDemoTests/SynthMixDemoTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scussen/synthmixerdemo/HEAD/SynthMixDemoTests/SynthMixDemoTests-Info.plist -------------------------------------------------------------------------------- /SynthMixDemoTests/SynthMixDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scussen/synthmixerdemo/HEAD/SynthMixDemoTests/SynthMixDemoTests.m -------------------------------------------------------------------------------- /SynthMixDemoTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | --------------------------------------------------------------------------------