├── .vscode └── tasks.json ├── LICENSE ├── Makefile ├── README.md ├── demo.c ├── meta_quest ├── AndroidManifest.xml ├── Makefile ├── README.md ├── Sources │ ├── assets │ │ └── asset.txt │ └── res │ │ ├── mipmap │ │ └── icon.png │ │ └── values │ │ └── strings.xml ├── android_native_app_glue.c ├── android_native_app_glue.h └── libopenxr_loader.so ├── minimal.c ├── openxr ├── openxr.h ├── openxr_loader.lib ├── openxr_platform.h └── openxr_platform_defines.h ├── openxr_loader.dll ├── os_generic.h ├── rawdraw_sf.h ├── tsopenxr.h └── winbuild.bat /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/tsopenxr/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/tsopenxr/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/tsopenxr/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/tsopenxr/HEAD/README.md -------------------------------------------------------------------------------- /demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/tsopenxr/HEAD/demo.c -------------------------------------------------------------------------------- /meta_quest/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/tsopenxr/HEAD/meta_quest/AndroidManifest.xml -------------------------------------------------------------------------------- /meta_quest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/tsopenxr/HEAD/meta_quest/Makefile -------------------------------------------------------------------------------- /meta_quest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/tsopenxr/HEAD/meta_quest/README.md -------------------------------------------------------------------------------- /meta_quest/Sources/assets/asset.txt: -------------------------------------------------------------------------------- 1 | Test asset file 2 | -------------------------------------------------------------------------------- /meta_quest/Sources/res/mipmap/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/tsopenxr/HEAD/meta_quest/Sources/res/mipmap/icon.png -------------------------------------------------------------------------------- /meta_quest/Sources/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/tsopenxr/HEAD/meta_quest/Sources/res/values/strings.xml -------------------------------------------------------------------------------- /meta_quest/android_native_app_glue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/tsopenxr/HEAD/meta_quest/android_native_app_glue.c -------------------------------------------------------------------------------- /meta_quest/android_native_app_glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/tsopenxr/HEAD/meta_quest/android_native_app_glue.h -------------------------------------------------------------------------------- /meta_quest/libopenxr_loader.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/tsopenxr/HEAD/meta_quest/libopenxr_loader.so -------------------------------------------------------------------------------- /minimal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/tsopenxr/HEAD/minimal.c -------------------------------------------------------------------------------- /openxr/openxr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/tsopenxr/HEAD/openxr/openxr.h -------------------------------------------------------------------------------- /openxr/openxr_loader.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/tsopenxr/HEAD/openxr/openxr_loader.lib -------------------------------------------------------------------------------- /openxr/openxr_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/tsopenxr/HEAD/openxr/openxr_platform.h -------------------------------------------------------------------------------- /openxr/openxr_platform_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/tsopenxr/HEAD/openxr/openxr_platform_defines.h -------------------------------------------------------------------------------- /openxr_loader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/tsopenxr/HEAD/openxr_loader.dll -------------------------------------------------------------------------------- /os_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/tsopenxr/HEAD/os_generic.h -------------------------------------------------------------------------------- /rawdraw_sf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/tsopenxr/HEAD/rawdraw_sf.h -------------------------------------------------------------------------------- /tsopenxr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/tsopenxr/HEAD/tsopenxr.h -------------------------------------------------------------------------------- /winbuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlohr/tsopenxr/HEAD/winbuild.bat --------------------------------------------------------------------------------