├── .gitignore ├── .gitmodules ├── .vscode ├── c_cpp_properties.json ├── launch.json ├── settings.json └── tasks.json ├── LICENSE ├── Makefile ├── README.md ├── data └── models ├── deps ├── fast_atof.c └── stb_image.c └── src ├── fragment.shader ├── main.c ├── mesh_fragment.shader ├── mesh_vertex.shader ├── text.c ├── text.h ├── vertex.shader ├── vr.c ├── vr.h ├── vulkan.c └── vulkan.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burito/vr-vulkan/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burito/vr-vulkan/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burito/vr-vulkan/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burito/vr-vulkan/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burito/vr-vulkan/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burito/vr-vulkan/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burito/vr-vulkan/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burito/vr-vulkan/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burito/vr-vulkan/HEAD/README.md -------------------------------------------------------------------------------- /data/models: -------------------------------------------------------------------------------- 1 | ../deps/models -------------------------------------------------------------------------------- /deps/fast_atof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burito/vr-vulkan/HEAD/deps/fast_atof.c -------------------------------------------------------------------------------- /deps/stb_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burito/vr-vulkan/HEAD/deps/stb_image.c -------------------------------------------------------------------------------- /src/fragment.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burito/vr-vulkan/HEAD/src/fragment.shader -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burito/vr-vulkan/HEAD/src/main.c -------------------------------------------------------------------------------- /src/mesh_fragment.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burito/vr-vulkan/HEAD/src/mesh_fragment.shader -------------------------------------------------------------------------------- /src/mesh_vertex.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burito/vr-vulkan/HEAD/src/mesh_vertex.shader -------------------------------------------------------------------------------- /src/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burito/vr-vulkan/HEAD/src/text.c -------------------------------------------------------------------------------- /src/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burito/vr-vulkan/HEAD/src/text.h -------------------------------------------------------------------------------- /src/vertex.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burito/vr-vulkan/HEAD/src/vertex.shader -------------------------------------------------------------------------------- /src/vr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burito/vr-vulkan/HEAD/src/vr.c -------------------------------------------------------------------------------- /src/vr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burito/vr-vulkan/HEAD/src/vr.h -------------------------------------------------------------------------------- /src/vulkan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burito/vr-vulkan/HEAD/src/vulkan.c -------------------------------------------------------------------------------- /src/vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burito/vr-vulkan/HEAD/src/vulkan.h --------------------------------------------------------------------------------