├── .gitignore ├── LICENSE ├── LeapOVRPassthrough.sln ├── LeapOVRPassthrough ├── GraphicsManager.cpp ├── GraphicsManager.h ├── LeapHandler.cpp ├── LeapHandler.h ├── LeapOVRPassthrough.cpp ├── LeapOVRPassthrough.rc ├── LeapOVRPassthrough.vcxproj ├── LeapOVRPassthrough.vcxproj.filters ├── OVROverlayController.cpp ├── OVROverlayController.h ├── ReadMe.txt ├── assets │ ├── icon.ico │ ├── icon.png │ └── manifest.vrmanifest ├── include │ ├── GL │ │ ├── eglew.h │ │ ├── glcorearb.h │ │ ├── glew.h │ │ ├── glext.h │ │ ├── glxew.h │ │ ├── glxext.h │ │ ├── wglew.h │ │ └── wglext.h │ ├── GLFW │ │ ├── glfw3.h │ │ └── glfw3native.h │ ├── KHR │ │ └── khrplatform.h │ ├── LeapC.h │ ├── lodepng.h │ └── openvr.h ├── lib │ └── x64 │ │ ├── LeapC.dll │ │ ├── LeapC.lib │ │ ├── glew32.dll │ │ ├── glew32.lib │ │ ├── glfw3.dll │ │ ├── glfw3dll.lib │ │ ├── openvr_api.dll │ │ ├── openvr_api.lib │ │ └── openvr_api.pdb ├── lodepng.cpp ├── resource.h ├── targetver.h ├── utils.cpp └── utils.h ├── README.md └── other ├── Icon.psd ├── git_logo.png └── git_logo.psd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LICENSE -------------------------------------------------------------------------------- /LeapOVRPassthrough.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough.sln -------------------------------------------------------------------------------- /LeapOVRPassthrough/GraphicsManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/GraphicsManager.cpp -------------------------------------------------------------------------------- /LeapOVRPassthrough/GraphicsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/GraphicsManager.h -------------------------------------------------------------------------------- /LeapOVRPassthrough/LeapHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/LeapHandler.cpp -------------------------------------------------------------------------------- /LeapOVRPassthrough/LeapHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/LeapHandler.h -------------------------------------------------------------------------------- /LeapOVRPassthrough/LeapOVRPassthrough.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/LeapOVRPassthrough.cpp -------------------------------------------------------------------------------- /LeapOVRPassthrough/LeapOVRPassthrough.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/LeapOVRPassthrough.rc -------------------------------------------------------------------------------- /LeapOVRPassthrough/LeapOVRPassthrough.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/LeapOVRPassthrough.vcxproj -------------------------------------------------------------------------------- /LeapOVRPassthrough/LeapOVRPassthrough.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/LeapOVRPassthrough.vcxproj.filters -------------------------------------------------------------------------------- /LeapOVRPassthrough/OVROverlayController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/OVROverlayController.cpp -------------------------------------------------------------------------------- /LeapOVRPassthrough/OVROverlayController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/OVROverlayController.h -------------------------------------------------------------------------------- /LeapOVRPassthrough/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/ReadMe.txt -------------------------------------------------------------------------------- /LeapOVRPassthrough/assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/assets/icon.ico -------------------------------------------------------------------------------- /LeapOVRPassthrough/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/assets/icon.png -------------------------------------------------------------------------------- /LeapOVRPassthrough/assets/manifest.vrmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/assets/manifest.vrmanifest -------------------------------------------------------------------------------- /LeapOVRPassthrough/include/GL/eglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/include/GL/eglew.h -------------------------------------------------------------------------------- /LeapOVRPassthrough/include/GL/glcorearb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/include/GL/glcorearb.h -------------------------------------------------------------------------------- /LeapOVRPassthrough/include/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/include/GL/glew.h -------------------------------------------------------------------------------- /LeapOVRPassthrough/include/GL/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/include/GL/glext.h -------------------------------------------------------------------------------- /LeapOVRPassthrough/include/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/include/GL/glxew.h -------------------------------------------------------------------------------- /LeapOVRPassthrough/include/GL/glxext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/include/GL/glxext.h -------------------------------------------------------------------------------- /LeapOVRPassthrough/include/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/include/GL/wglew.h -------------------------------------------------------------------------------- /LeapOVRPassthrough/include/GL/wglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/include/GL/wglext.h -------------------------------------------------------------------------------- /LeapOVRPassthrough/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /LeapOVRPassthrough/include/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/include/GLFW/glfw3native.h -------------------------------------------------------------------------------- /LeapOVRPassthrough/include/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/include/KHR/khrplatform.h -------------------------------------------------------------------------------- /LeapOVRPassthrough/include/LeapC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/include/LeapC.h -------------------------------------------------------------------------------- /LeapOVRPassthrough/include/lodepng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/include/lodepng.h -------------------------------------------------------------------------------- /LeapOVRPassthrough/include/openvr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/include/openvr.h -------------------------------------------------------------------------------- /LeapOVRPassthrough/lib/x64/LeapC.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/lib/x64/LeapC.dll -------------------------------------------------------------------------------- /LeapOVRPassthrough/lib/x64/LeapC.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/lib/x64/LeapC.lib -------------------------------------------------------------------------------- /LeapOVRPassthrough/lib/x64/glew32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/lib/x64/glew32.dll -------------------------------------------------------------------------------- /LeapOVRPassthrough/lib/x64/glew32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/lib/x64/glew32.lib -------------------------------------------------------------------------------- /LeapOVRPassthrough/lib/x64/glfw3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/lib/x64/glfw3.dll -------------------------------------------------------------------------------- /LeapOVRPassthrough/lib/x64/glfw3dll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/lib/x64/glfw3dll.lib -------------------------------------------------------------------------------- /LeapOVRPassthrough/lib/x64/openvr_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/lib/x64/openvr_api.dll -------------------------------------------------------------------------------- /LeapOVRPassthrough/lib/x64/openvr_api.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/lib/x64/openvr_api.lib -------------------------------------------------------------------------------- /LeapOVRPassthrough/lib/x64/openvr_api.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/lib/x64/openvr_api.pdb -------------------------------------------------------------------------------- /LeapOVRPassthrough/lodepng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/lodepng.cpp -------------------------------------------------------------------------------- /LeapOVRPassthrough/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/resource.h -------------------------------------------------------------------------------- /LeapOVRPassthrough/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/targetver.h -------------------------------------------------------------------------------- /LeapOVRPassthrough/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/utils.cpp -------------------------------------------------------------------------------- /LeapOVRPassthrough/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/LeapOVRPassthrough/utils.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/README.md -------------------------------------------------------------------------------- /other/Icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/other/Icon.psd -------------------------------------------------------------------------------- /other/git_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/other/git_logo.png -------------------------------------------------------------------------------- /other/git_logo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jangxx/LeapOVRPassthrough/HEAD/other/git_logo.psd --------------------------------------------------------------------------------