├── .gitignore ├── MetalDemo.xcodeproj └── project.pbxproj └── MetalDemo ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj ├── LaunchScreen.xib └── Main.storyboard ├── Images.xcassets └── AppIcon.appiconset │ ├── Contents.json │ ├── Icon@2x.png │ ├── Icon@2x~ipad.png │ ├── Icon@3x.png │ └── Icon~ipad.png ├── Info.plist ├── METLViewController.h ├── METLViewController.m ├── Shaders.metal └── main.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/metal-demo-objcio/HEAD/.gitignore -------------------------------------------------------------------------------- /MetalDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/metal-demo-objcio/HEAD/MetalDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MetalDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/metal-demo-objcio/HEAD/MetalDemo/AppDelegate.h -------------------------------------------------------------------------------- /MetalDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/metal-demo-objcio/HEAD/MetalDemo/AppDelegate.m -------------------------------------------------------------------------------- /MetalDemo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/metal-demo-objcio/HEAD/MetalDemo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /MetalDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/metal-demo-objcio/HEAD/MetalDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /MetalDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/metal-demo-objcio/HEAD/MetalDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /MetalDemo/Images.xcassets/AppIcon.appiconset/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/metal-demo-objcio/HEAD/MetalDemo/Images.xcassets/AppIcon.appiconset/Icon@2x.png -------------------------------------------------------------------------------- /MetalDemo/Images.xcassets/AppIcon.appiconset/Icon@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/metal-demo-objcio/HEAD/MetalDemo/Images.xcassets/AppIcon.appiconset/Icon@2x~ipad.png -------------------------------------------------------------------------------- /MetalDemo/Images.xcassets/AppIcon.appiconset/Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/metal-demo-objcio/HEAD/MetalDemo/Images.xcassets/AppIcon.appiconset/Icon@3x.png -------------------------------------------------------------------------------- /MetalDemo/Images.xcassets/AppIcon.appiconset/Icon~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/metal-demo-objcio/HEAD/MetalDemo/Images.xcassets/AppIcon.appiconset/Icon~ipad.png -------------------------------------------------------------------------------- /MetalDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/metal-demo-objcio/HEAD/MetalDemo/Info.plist -------------------------------------------------------------------------------- /MetalDemo/METLViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/metal-demo-objcio/HEAD/MetalDemo/METLViewController.h -------------------------------------------------------------------------------- /MetalDemo/METLViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/metal-demo-objcio/HEAD/MetalDemo/METLViewController.m -------------------------------------------------------------------------------- /MetalDemo/Shaders.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/metal-demo-objcio/HEAD/MetalDemo/Shaders.metal -------------------------------------------------------------------------------- /MetalDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/metal-demo-objcio/HEAD/MetalDemo/main.m --------------------------------------------------------------------------------