├── .gitignore ├── LICENSE ├── README.md ├── VRDemo.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── VRDemo ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── Shader.fsh ├── Shader.vsh ├── VRPlayer │ ├── EsGenSphere.c │ ├── EsGenSphere.h │ ├── VKGLTexture.swift │ ├── VRDemo-Bridging-Header.h │ ├── VRGLKView.swift │ ├── VRPlayer.swift │ └── VRProgram.swift ├── ViewController.swift └── demo.m4v ├── VRDemoTests ├── Info.plist └── VRDemoTests.swift ├── VRDemoUITests ├── Info.plist └── VRDemoUITests.swift └── demo.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huanhoo/VRDemo-Swift/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huanhoo/VRDemo-Swift/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huanhoo/VRDemo-Swift/HEAD/README.md -------------------------------------------------------------------------------- /VRDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huanhoo/VRDemo-Swift/HEAD/VRDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /VRDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huanhoo/VRDemo-Swift/HEAD/VRDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /VRDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huanhoo/VRDemo-Swift/HEAD/VRDemo/AppDelegate.swift -------------------------------------------------------------------------------- /VRDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huanhoo/VRDemo-Swift/HEAD/VRDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /VRDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huanhoo/VRDemo-Swift/HEAD/VRDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /VRDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huanhoo/VRDemo-Swift/HEAD/VRDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /VRDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huanhoo/VRDemo-Swift/HEAD/VRDemo/Info.plist -------------------------------------------------------------------------------- /VRDemo/Shader.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huanhoo/VRDemo-Swift/HEAD/VRDemo/Shader.fsh -------------------------------------------------------------------------------- /VRDemo/Shader.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huanhoo/VRDemo-Swift/HEAD/VRDemo/Shader.vsh -------------------------------------------------------------------------------- /VRDemo/VRPlayer/EsGenSphere.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huanhoo/VRDemo-Swift/HEAD/VRDemo/VRPlayer/EsGenSphere.c -------------------------------------------------------------------------------- /VRDemo/VRPlayer/EsGenSphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huanhoo/VRDemo-Swift/HEAD/VRDemo/VRPlayer/EsGenSphere.h -------------------------------------------------------------------------------- /VRDemo/VRPlayer/VKGLTexture.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huanhoo/VRDemo-Swift/HEAD/VRDemo/VRPlayer/VKGLTexture.swift -------------------------------------------------------------------------------- /VRDemo/VRPlayer/VRDemo-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huanhoo/VRDemo-Swift/HEAD/VRDemo/VRPlayer/VRDemo-Bridging-Header.h -------------------------------------------------------------------------------- /VRDemo/VRPlayer/VRGLKView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huanhoo/VRDemo-Swift/HEAD/VRDemo/VRPlayer/VRGLKView.swift -------------------------------------------------------------------------------- /VRDemo/VRPlayer/VRPlayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huanhoo/VRDemo-Swift/HEAD/VRDemo/VRPlayer/VRPlayer.swift -------------------------------------------------------------------------------- /VRDemo/VRPlayer/VRProgram.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huanhoo/VRDemo-Swift/HEAD/VRDemo/VRPlayer/VRProgram.swift -------------------------------------------------------------------------------- /VRDemo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huanhoo/VRDemo-Swift/HEAD/VRDemo/ViewController.swift -------------------------------------------------------------------------------- /VRDemo/demo.m4v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huanhoo/VRDemo-Swift/HEAD/VRDemo/demo.m4v -------------------------------------------------------------------------------- /VRDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huanhoo/VRDemo-Swift/HEAD/VRDemoTests/Info.plist -------------------------------------------------------------------------------- /VRDemoTests/VRDemoTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huanhoo/VRDemo-Swift/HEAD/VRDemoTests/VRDemoTests.swift -------------------------------------------------------------------------------- /VRDemoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huanhoo/VRDemo-Swift/HEAD/VRDemoUITests/Info.plist -------------------------------------------------------------------------------- /VRDemoUITests/VRDemoUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huanhoo/VRDemo-Swift/HEAD/VRDemoUITests/VRDemoUITests.swift -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Huanhoo/VRDemo-Swift/HEAD/demo.gif --------------------------------------------------------------------------------