├── OSPlayer ├── XJVRPlayerViewController.h ├── XJVRPlayerViewController.m └── XJVRPlayerViewController.xib ├── OSShader ├── OSOpenGLESViewController.h ├── OSOpenGLESViewController.m ├── OSOpenGLESViewController.xib ├── OSShaderManager.h ├── OSShaderManager.m ├── OSSphere.h ├── ShaderNormal.fsh ├── ShaderNormal.vsh ├── ShaderPanorama.fsh └── ShaderPanorama.vsh ├── OSVRPlayer.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── xujie.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── xujie.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── OSVRPlayer.xcscheme │ └── xcschememanagement.plist ├── OSVRPlayer ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── ViewController.h ├── ViewController.m └── main.m ├── readMe ├── resource ├── 1.mp4 ├── ad.png ├── login.png ├── pause.png └── play.png └── 全景.gif /OSPlayer/XJVRPlayerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJALYN/OSVRPlayer/HEAD/OSPlayer/XJVRPlayerViewController.h -------------------------------------------------------------------------------- /OSPlayer/XJVRPlayerViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJALYN/OSVRPlayer/HEAD/OSPlayer/XJVRPlayerViewController.m -------------------------------------------------------------------------------- /OSPlayer/XJVRPlayerViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJALYN/OSVRPlayer/HEAD/OSPlayer/XJVRPlayerViewController.xib -------------------------------------------------------------------------------- /OSShader/OSOpenGLESViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJALYN/OSVRPlayer/HEAD/OSShader/OSOpenGLESViewController.h -------------------------------------------------------------------------------- /OSShader/OSOpenGLESViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJALYN/OSVRPlayer/HEAD/OSShader/OSOpenGLESViewController.m -------------------------------------------------------------------------------- /OSShader/OSOpenGLESViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJALYN/OSVRPlayer/HEAD/OSShader/OSOpenGLESViewController.xib -------------------------------------------------------------------------------- /OSShader/OSShaderManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJALYN/OSVRPlayer/HEAD/OSShader/OSShaderManager.h -------------------------------------------------------------------------------- /OSShader/OSShaderManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJALYN/OSVRPlayer/HEAD/OSShader/OSShaderManager.m -------------------------------------------------------------------------------- /OSShader/OSSphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJALYN/OSVRPlayer/HEAD/OSShader/OSSphere.h -------------------------------------------------------------------------------- /OSShader/ShaderNormal.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJALYN/OSVRPlayer/HEAD/OSShader/ShaderNormal.fsh -------------------------------------------------------------------------------- /OSShader/ShaderNormal.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJALYN/OSVRPlayer/HEAD/OSShader/ShaderNormal.vsh -------------------------------------------------------------------------------- /OSShader/ShaderPanorama.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJALYN/OSVRPlayer/HEAD/OSShader/ShaderPanorama.fsh -------------------------------------------------------------------------------- /OSShader/ShaderPanorama.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJALYN/OSVRPlayer/HEAD/OSShader/ShaderPanorama.vsh -------------------------------------------------------------------------------- /OSVRPlayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJALYN/OSVRPlayer/HEAD/OSVRPlayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /OSVRPlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJALYN/OSVRPlayer/HEAD/OSVRPlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /OSVRPlayer.xcodeproj/project.xcworkspace/xcuserdata/xujie.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJALYN/OSVRPlayer/HEAD/OSVRPlayer.xcodeproj/project.xcworkspace/xcuserdata/xujie.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /OSVRPlayer.xcodeproj/xcuserdata/xujie.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJALYN/OSVRPlayer/HEAD/OSVRPlayer.xcodeproj/xcuserdata/xujie.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /OSVRPlayer.xcodeproj/xcuserdata/xujie.xcuserdatad/xcschemes/OSVRPlayer.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJALYN/OSVRPlayer/HEAD/OSVRPlayer.xcodeproj/xcuserdata/xujie.xcuserdatad/xcschemes/OSVRPlayer.xcscheme -------------------------------------------------------------------------------- /OSVRPlayer.xcodeproj/xcuserdata/xujie.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJALYN/OSVRPlayer/HEAD/OSVRPlayer.xcodeproj/xcuserdata/xujie.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /OSVRPlayer/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJALYN/OSVRPlayer/HEAD/OSVRPlayer/AppDelegate.h -------------------------------------------------------------------------------- /OSVRPlayer/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJALYN/OSVRPlayer/HEAD/OSVRPlayer/AppDelegate.m -------------------------------------------------------------------------------- /OSVRPlayer/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJALYN/OSVRPlayer/HEAD/OSVRPlayer/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /OSVRPlayer/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJALYN/OSVRPlayer/HEAD/OSVRPlayer/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /OSVRPlayer/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJALYN/OSVRPlayer/HEAD/OSVRPlayer/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /OSVRPlayer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJALYN/OSVRPlayer/HEAD/OSVRPlayer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /OSVRPlayer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJALYN/OSVRPlayer/HEAD/OSVRPlayer/Info.plist -------------------------------------------------------------------------------- /OSVRPlayer/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJALYN/OSVRPlayer/HEAD/OSVRPlayer/ViewController.h -------------------------------------------------------------------------------- /OSVRPlayer/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJALYN/OSVRPlayer/HEAD/OSVRPlayer/ViewController.m -------------------------------------------------------------------------------- /OSVRPlayer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJALYN/OSVRPlayer/HEAD/OSVRPlayer/main.m -------------------------------------------------------------------------------- /readMe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJALYN/OSVRPlayer/HEAD/readMe -------------------------------------------------------------------------------- /resource/1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJALYN/OSVRPlayer/HEAD/resource/1.mp4 -------------------------------------------------------------------------------- /resource/ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJALYN/OSVRPlayer/HEAD/resource/ad.png -------------------------------------------------------------------------------- /resource/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJALYN/OSVRPlayer/HEAD/resource/login.png -------------------------------------------------------------------------------- /resource/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJALYN/OSVRPlayer/HEAD/resource/pause.png -------------------------------------------------------------------------------- /resource/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJALYN/OSVRPlayer/HEAD/resource/play.png -------------------------------------------------------------------------------- /全景.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XJALYN/OSVRPlayer/HEAD/全景.gif --------------------------------------------------------------------------------