├── .appveyor.yml ├── .azure-pipelines ├── nuget │ ├── NugetTemplate │ │ ├── OpenXR.Loader.nuspec │ │ └── build │ │ │ └── native │ │ │ ├── OpenXR.Loader.props │ │ │ └── OpenXR.Loader.targets │ └── stage_nuget.ps1 ├── openxr-sdk-source.yml ├── openxr-sdk.yml └── shared │ ├── build_jobs.yml │ ├── build_linux.yml │ ├── build_mingw.yml │ ├── build_msvc.yml │ ├── check_clang_format.yml │ ├── check_file_format.yml │ ├── codespell.yml │ ├── generate_windows_matrix_build.py │ ├── install_vulkan.ps1 │ ├── organize_windows_artifacts.py │ ├── print_windows_artifact_names.py │ └── shared.py ├── .editorconfig ├── .env ├── .git-blame-ignore-revs ├── .gitattributes ├── .github ├── .java-version ├── .java-version.license ├── dependabot.yml ├── scripts │ ├── CMakePresets.json │ ├── CMakePresets.json.license │ ├── generate_windows_matrix_build.py │ ├── install_vulkan.ps1 │ ├── organize_windows_artifacts.py │ └── shared.py └── workflows │ ├── android.yml │ ├── check_clang_format_and_codespell.yml │ ├── macOS.yml │ ├── macos-build.yml │ ├── msvc-build-preset.yml │ ├── pr.yml │ ├── release.yml │ ├── snapshot.yml │ └── windows-matrix.yml ├── .gitignore ├── .mailmap ├── .proclamation.json ├── .proclamation.json.license ├── .reuse └── dep5 ├── BUILDING.md ├── CHANGELOG.SDK.md ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── COPYING.adoc ├── LICENSE ├── LICENSES ├── Apache-2.0.txt ├── BSD-3-Clause.txt ├── BSL-1.0.txt ├── CC-BY-4.0.txt ├── CC0-1.0.txt ├── ISC.txt ├── LicenseRef-Khronos-Free-Use-License-for-Software-and-Documentation.txt ├── LicenseRef-KhronosSpecCopyright-WithNormativeWording-v10.txt ├── LicenseRef-jsoncpp-public-domain.txt ├── MIT.txt ├── OFL-1.1-RFN.txt ├── Unlicense.txt ├── WTFPL.txt └── Zlib.txt ├── README.md ├── changes ├── .markdownlint.yaml ├── README.md ├── registry │ └── README.md ├── sdk │ └── README.md └── template.md ├── checkCodespell ├── external ├── include │ ├── CMakeLists.txt │ └── GL │ │ ├── gl_format.h │ │ ├── glext.h │ │ ├── glext.h.license │ │ ├── wglext.h │ │ └── wglext.h.license └── python │ ├── Jinja2-2.11.3.dist-info │ ├── INSTALLER │ ├── LICENSE.rst │ ├── METADATA │ ├── RECORD │ ├── REQUESTED │ ├── WHEEL │ ├── entry_points.txt │ └── top_level.txt │ ├── MarkupSafe-1.1.1.dist-info │ ├── INSTALLER │ ├── LICENSE.txt │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt │ ├── jinja2 │ ├── __init__.py │ ├── _compat.py │ ├── _identifier.py │ ├── asyncfilters.py │ ├── asyncsupport.py │ ├── bccache.py │ ├── compiler.py │ ├── constants.py │ ├── debug.py │ ├── defaults.py │ ├── environment.py │ ├── exceptions.py │ ├── ext.py │ ├── filters.py │ ├── idtracking.py │ ├── lexer.py │ ├── loaders.py │ ├── meta.py │ ├── nativetypes.py │ ├── nodes.py │ ├── optimizer.py │ ├── parser.py │ ├── runtime.py │ ├── sandbox.py │ ├── tests.py │ ├── utils.py │ └── visitor.py │ ├── markupsafe │ ├── __init__.py │ ├── _compat.py │ ├── _constants.py │ ├── _native.py │ └── _speedups.c │ ├── pyparsing-3.1.2.dist-info │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ └── WHEEL │ └── pyparsing │ ├── __init__.py │ ├── actions.py │ ├── common.py │ ├── core.py │ ├── diagram │ └── __init__.py │ ├── exceptions.py │ ├── helpers.py │ ├── py.typed │ ├── results.py │ ├── testing.py │ ├── unicode.py │ └── util.py ├── github └── sdk │ ├── .github │ └── pull_request_template.md │ └── README.md ├── include ├── CMakeLists.txt ├── generated_header_list.txt ├── generated_header_list.txt.license └── openxr │ ├── CMakeLists.txt │ └── openxr_platform_defines.h ├── maintainer-scripts ├── archive-sdk.sh ├── build-aar.sh ├── build-and-publish-aar-mavencentral.sh ├── build-and-publish-aar-snapshot.sh ├── check-changelog-fragments.sh ├── common.sh └── publish-aar │ ├── build.gradle.kts │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ ├── gradle-wrapper.jar.license │ │ ├── gradle-wrapper.properties │ │ └── gradle-wrapper.properties.license │ ├── gradlew │ ├── gradlew.bat │ ├── gradlew.bat.license │ ├── gradlew.license │ └── settings.gradle ├── open-in-docker.sh ├── openxr-codespell.exclude ├── runClangFormat.sh ├── specification ├── .gitignore ├── Makefile ├── README.md ├── config │ └── attribs.adoc ├── loader │ ├── api_layer.adoc │ ├── appendices.adoc │ ├── application.adoc │ ├── debug.adoc │ ├── design.adoc │ ├── images │ │ ├── app_dispatch_table_call_chain.svg │ │ ├── app_dispatch_table_call_chain.svg.license │ │ ├── call_chain_example.svg │ │ ├── call_chain_example.svg.license │ │ ├── class_diagram.svg │ │ ├── class_diagram.svg.license │ │ ├── high_level_loader.svg │ │ ├── high_level_loader.svg.license │ │ ├── loader_layer_order_calls.svg │ │ ├── loader_layer_order_calls.svg.license │ │ ├── optional_layer_function_impl.svg │ │ ├── optional_layer_function_impl.svg.license │ │ ├── standard_call_chains.svg │ │ └── standard_call_chains.svg.license │ ├── loader.adoc │ ├── overview.adoc │ ├── runtime.adoc │ └── source.adoc ├── registry │ └── xr.xml ├── requirements.txt └── scripts │ ├── __init__.py.docs │ ├── apiconventions.py │ ├── cgenerator.py │ ├── check_spec_links.py │ ├── check_stamp.py │ ├── comment_convert.py │ ├── creflectiongenerator.py │ ├── docgenerator.py │ ├── extdependency.py │ ├── extensionmetadocgenerator.py │ ├── extract_code.py │ ├── findBareNormatives.sh │ ├── genRef.py │ ├── genanchorlinks.rb │ ├── generator.py │ ├── genxr.py │ ├── hostsyncgenerator.py │ ├── indexgenerator.py │ ├── interfacedocgenerator.py │ ├── jinja_helpers.py │ ├── nonbreaking-ext-titles.rb │ ├── parse_dependency.py │ ├── pdf-index-customizer.rb │ ├── pdf_chapter_diff.py │ ├── pygenerator.py │ ├── realign.py │ ├── reflib.py │ ├── reflow.py │ ├── reg.py │ ├── reserve_extensions.py │ ├── rouge-extend-css.rb │ ├── rubygenerator.py │ ├── scriptgenerator.py │ ├── spec-macros.rb │ ├── spec-macros │ └── extension.rb │ ├── spec_tools │ ├── __init__.py │ ├── algo.py │ ├── attributes.py │ ├── base_printer.py │ ├── consistency_tools.py │ ├── console_printer.py │ ├── conventions.py │ ├── data_structures.py │ ├── entity_db.py │ ├── file_process.py │ ├── html_printer.py │ ├── macro_checker.py │ ├── macro_checker_file.py │ ├── main.py │ ├── shared.py │ ├── util.py │ └── validity.py │ ├── template_openxr_reflection.h │ ├── template_openxr_reflection_parent_structs.h │ ├── template_openxr_reflection_structs.h │ ├── test_check_spec_links.py │ ├── test_check_spec_links_api_specific.py │ ├── test_entity_db.py │ ├── update_reservations.py │ ├── update_version.py │ ├── validitygenerator.py │ ├── vuidCounts.py │ ├── xml_consistency.py │ └── xrconventions.py ├── src ├── .clang-format ├── .gitignore ├── CMakeLists.txt ├── api_layers │ ├── CMakeLists.txt │ ├── OpenXR_API_Dump.png │ ├── OpenXR_API_Dump.png.license │ ├── OpenXR_Core_Validation.png │ ├── OpenXR_Core_Validation.png.license │ ├── README.md │ ├── README_api_dump.md │ ├── README_core_validation.md │ ├── XrApiLayer_api_dump.def │ ├── XrApiLayer_api_dump.expsym │ ├── XrApiLayer_api_dump.map │ ├── XrApiLayer_core_validation.def │ ├── XrApiLayer_core_validation.expsym │ ├── XrApiLayer_core_validation.map │ ├── api_dump.cpp │ ├── api_layer_platform_defines.h │ ├── best_practices │ │ ├── CMakeLists.txt │ │ ├── XrApiLayer_best_practices_validation.def │ │ ├── XrApiLayer_best_practices_validation.expsym │ │ ├── XrApiLayer_best_practices_validation.map │ │ ├── best_practices_validation.cpp │ │ ├── layer_utils.cpp │ │ └── layer_utils.h │ ├── core_validation.cpp │ ├── core_validation_html_anchor.png │ ├── core_validation_html_anchor.png.license │ ├── core_validation_message.svg │ ├── core_validation_message.svg.license │ └── validation_utils.h ├── cmake │ ├── FindEGL.cmake │ ├── FindJsonCpp.cmake │ ├── FindMetalTools.cmake │ ├── FindOpenGLES.cmake │ ├── GetGitRevisionDescription.cmake │ ├── GetGitRevisionDescription.cmake.in │ ├── StdFilesystemFlags.cmake │ ├── cmake_uninstall.cmake.in │ ├── fxc_shader.cmake │ ├── glsl_shader.cmake │ ├── make_includable.cmake │ ├── metaconfig.cmake.in │ ├── metaconfig_android.cmake.in │ └── presentation.cmake ├── common │ ├── android_logging.h │ ├── extra_algorithms.h │ ├── filesystem_utils.cpp │ ├── filesystem_utils.hpp │ ├── gfxwrapper_opengl.c │ ├── gfxwrapper_opengl.h │ ├── hex_and_handles.h │ ├── object_info.cpp │ ├── object_info.h │ ├── platform_utils.hpp │ ├── stdfs_conditions.h │ ├── unique_asset.h │ ├── vulkan_debug_object_namer.hpp │ ├── xr_dependencies.h │ └── xr_linear.h ├── common_config.h.in ├── external │ ├── android-jni-wrappers │ │ └── wrap │ │ │ ├── ObjectWrapperBase.h │ │ │ ├── android.content.cpp │ │ │ ├── android.content.h │ │ │ ├── android.content.impl.h │ │ │ ├── android.database.cpp │ │ │ ├── android.database.h │ │ │ ├── android.database.impl.h │ │ │ ├── android.net.cpp │ │ │ ├── android.net.h │ │ │ └── android.net.impl.h │ ├── catch2 │ │ ├── .clang-format │ │ ├── .clang-tidy │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── BUILD.bazel │ │ ├── CMake │ │ │ ├── Catch2Config.cmake.in │ │ │ ├── CatchConfigOptions.cmake │ │ │ ├── CatchMiscFunctions.cmake │ │ │ ├── FindGcov.cmake │ │ │ ├── FindLcov.cmake │ │ │ ├── Findcodecov.cmake │ │ │ ├── catch2-with-main.pc.in │ │ │ ├── catch2.pc.in │ │ │ └── llvm-cov-wrapper │ │ ├── CMakeLists.txt │ │ ├── CMakePresets.json │ │ ├── CODE_OF_CONDUCT.md │ │ ├── Doxyfile │ │ ├── LICENSE.txt │ │ ├── MODULE.bazel │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── WORKSPACE.bazel │ │ ├── appveyor.yml │ │ ├── codecov.yml │ │ ├── conanfile.py │ │ ├── data │ │ │ └── artwork │ │ │ │ ├── catch2-c-logo.png │ │ │ │ ├── catch2-hand-logo.png │ │ │ │ ├── catch2-logo-small-with-background.png │ │ │ │ └── catch2-logo-small.png │ │ ├── docs │ │ │ ├── Readme.md │ │ │ ├── assertions.md │ │ │ ├── benchmarks.md │ │ │ ├── ci-and-misc.md │ │ │ ├── cmake-integration.md │ │ │ ├── command-line.md │ │ │ ├── commercial-users.md │ │ │ ├── comparing-floating-point-numbers.md │ │ │ ├── configuration.md │ │ │ ├── contributing.md │ │ │ ├── deprecations.md │ │ │ ├── event-listeners.md │ │ │ ├── faq.md │ │ │ ├── generators.md │ │ │ ├── limitations.md │ │ │ ├── list-of-examples.md │ │ │ ├── logging.md │ │ │ ├── matchers.md │ │ │ ├── migrate-v2-to-v3.md │ │ │ ├── opensource-users.md │ │ │ ├── other-macros.md │ │ │ ├── own-main.md │ │ │ ├── release-notes.md │ │ │ ├── release-process.md │ │ │ ├── reporter-events.md │ │ │ ├── reporters.md │ │ │ ├── skipping-passing-failing.md │ │ │ ├── test-cases-and-sections.md │ │ │ ├── test-fixtures.md │ │ │ ├── tostring.md │ │ │ ├── tutorial.md │ │ │ ├── usage-tips.md │ │ │ └── why-catch.md │ │ ├── examples │ │ │ ├── 010-TestCase.cpp │ │ │ ├── 020-TestCase-1.cpp │ │ │ ├── 020-TestCase-2.cpp │ │ │ ├── 030-Asn-Require-Check.cpp │ │ │ ├── 100-Fix-Section.cpp │ │ │ ├── 110-Fix-ClassFixture.cpp │ │ │ ├── 111-Fix-PersistentFixture.cpp │ │ │ ├── 120-Bdd-ScenarioGivenWhenThen.cpp │ │ │ ├── 210-Evt-EventListeners.cpp │ │ │ ├── 231-Cfg-OutputStreams.cpp │ │ │ ├── 232-Cfg-CustomMain.cpp │ │ │ ├── 300-Gen-OwnGenerator.cpp │ │ │ ├── 301-Gen-MapTypeConversion.cpp │ │ │ ├── 302-Gen-Table.cpp │ │ │ ├── 310-Gen-VariablesInGenerators.cpp │ │ │ ├── 311-Gen-CustomCapture.cpp │ │ │ └── CMakeLists.txt │ │ ├── extras │ │ │ ├── Catch.cmake │ │ │ ├── CatchAddTests.cmake │ │ │ ├── CatchShardTests.cmake │ │ │ ├── CatchShardTestsImpl.cmake │ │ │ ├── ParseAndAddCatchTests.cmake │ │ │ ├── catch_amalgamated.cpp │ │ │ ├── catch_amalgamated.hpp │ │ │ ├── gdbinit │ │ │ └── lldbinit │ │ ├── fuzzing │ │ │ ├── CMakeLists.txt │ │ │ ├── NullOStream.cpp │ │ │ ├── NullOStream.h │ │ │ ├── build_fuzzers.sh │ │ │ ├── fuzz_TestSpecParser.cpp │ │ │ ├── fuzz_XmlWriter.cpp │ │ │ └── fuzz_textflow.cpp │ │ ├── mdsnippets.json │ │ ├── meson.build │ │ ├── meson_options.txt │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ └── catch2 │ │ │ │ ├── benchmark │ │ │ │ ├── catch_benchmark.hpp │ │ │ │ ├── catch_benchmark_all.hpp │ │ │ │ ├── catch_chronometer.cpp │ │ │ │ ├── catch_chronometer.hpp │ │ │ │ ├── catch_clock.hpp │ │ │ │ ├── catch_constructor.hpp │ │ │ │ ├── catch_environment.hpp │ │ │ │ ├── catch_estimate.hpp │ │ │ │ ├── catch_execution_plan.hpp │ │ │ │ ├── catch_optimizer.hpp │ │ │ │ ├── catch_outlier_classification.hpp │ │ │ │ ├── catch_sample_analysis.hpp │ │ │ │ └── detail │ │ │ │ │ ├── catch_analyse.cpp │ │ │ │ │ ├── catch_analyse.hpp │ │ │ │ │ ├── catch_benchmark_function.cpp │ │ │ │ │ ├── catch_benchmark_function.hpp │ │ │ │ │ ├── catch_benchmark_stats.hpp │ │ │ │ │ ├── catch_benchmark_stats_fwd.hpp │ │ │ │ │ ├── catch_complete_invoke.hpp │ │ │ │ │ ├── catch_estimate_clock.hpp │ │ │ │ │ ├── catch_measure.hpp │ │ │ │ │ ├── catch_repeat.hpp │ │ │ │ │ ├── catch_run_for_at_least.cpp │ │ │ │ │ ├── catch_run_for_at_least.hpp │ │ │ │ │ ├── catch_stats.cpp │ │ │ │ │ ├── catch_stats.hpp │ │ │ │ │ └── catch_timing.hpp │ │ │ │ ├── catch_all.hpp │ │ │ │ ├── catch_approx.cpp │ │ │ │ ├── catch_approx.hpp │ │ │ │ ├── catch_assertion_info.hpp │ │ │ │ ├── catch_assertion_result.cpp │ │ │ │ ├── catch_assertion_result.hpp │ │ │ │ ├── catch_case_sensitive.hpp │ │ │ │ ├── catch_config.cpp │ │ │ │ ├── catch_config.hpp │ │ │ │ ├── catch_get_random_seed.cpp │ │ │ │ ├── catch_get_random_seed.hpp │ │ │ │ ├── catch_message.cpp │ │ │ │ ├── catch_message.hpp │ │ │ │ ├── catch_registry_hub.cpp │ │ │ │ ├── catch_section_info.hpp │ │ │ │ ├── catch_session.cpp │ │ │ │ ├── catch_session.hpp │ │ │ │ ├── catch_tag_alias.hpp │ │ │ │ ├── catch_tag_alias_autoregistrar.cpp │ │ │ │ ├── catch_tag_alias_autoregistrar.hpp │ │ │ │ ├── catch_template_test_macros.hpp │ │ │ │ ├── catch_test_case_info.cpp │ │ │ │ ├── catch_test_case_info.hpp │ │ │ │ ├── catch_test_macros.hpp │ │ │ │ ├── catch_test_spec.cpp │ │ │ │ ├── catch_test_spec.hpp │ │ │ │ ├── catch_timer.cpp │ │ │ │ ├── catch_timer.hpp │ │ │ │ ├── catch_tostring.cpp │ │ │ │ ├── catch_tostring.hpp │ │ │ │ ├── catch_totals.cpp │ │ │ │ ├── catch_totals.hpp │ │ │ │ ├── catch_translate_exception.cpp │ │ │ │ ├── catch_translate_exception.hpp │ │ │ │ ├── catch_user_config.hpp.in │ │ │ │ ├── catch_version.cpp │ │ │ │ ├── catch_version.hpp │ │ │ │ ├── catch_version_macros.hpp │ │ │ │ ├── generators │ │ │ │ ├── catch_generator_exception.cpp │ │ │ │ ├── catch_generator_exception.hpp │ │ │ │ ├── catch_generators.cpp │ │ │ │ ├── catch_generators.hpp │ │ │ │ ├── catch_generators_adapters.hpp │ │ │ │ ├── catch_generators_all.hpp │ │ │ │ ├── catch_generators_random.cpp │ │ │ │ ├── catch_generators_random.hpp │ │ │ │ └── catch_generators_range.hpp │ │ │ │ ├── interfaces │ │ │ │ ├── catch_interfaces_all.hpp │ │ │ │ ├── catch_interfaces_capture.cpp │ │ │ │ ├── catch_interfaces_capture.hpp │ │ │ │ ├── catch_interfaces_config.cpp │ │ │ │ ├── catch_interfaces_config.hpp │ │ │ │ ├── catch_interfaces_enum_values_registry.hpp │ │ │ │ ├── catch_interfaces_exception.cpp │ │ │ │ ├── catch_interfaces_exception.hpp │ │ │ │ ├── catch_interfaces_generatortracker.cpp │ │ │ │ ├── catch_interfaces_generatortracker.hpp │ │ │ │ ├── catch_interfaces_registry_hub.cpp │ │ │ │ ├── catch_interfaces_registry_hub.hpp │ │ │ │ ├── catch_interfaces_reporter.cpp │ │ │ │ ├── catch_interfaces_reporter.hpp │ │ │ │ ├── catch_interfaces_reporter_factory.cpp │ │ │ │ ├── catch_interfaces_reporter_factory.hpp │ │ │ │ ├── catch_interfaces_tag_alias_registry.hpp │ │ │ │ ├── catch_interfaces_test_invoker.hpp │ │ │ │ ├── catch_interfaces_testcase.cpp │ │ │ │ └── catch_interfaces_testcase.hpp │ │ │ │ ├── internal │ │ │ │ ├── catch_assertion_handler.cpp │ │ │ │ ├── catch_assertion_handler.hpp │ │ │ │ ├── catch_case_insensitive_comparisons.cpp │ │ │ │ ├── catch_case_insensitive_comparisons.hpp │ │ │ │ ├── catch_clara.cpp │ │ │ │ ├── catch_clara.hpp │ │ │ │ ├── catch_commandline.cpp │ │ │ │ ├── catch_commandline.hpp │ │ │ │ ├── catch_compare_traits.hpp │ │ │ │ ├── catch_compiler_capabilities.hpp │ │ │ │ ├── catch_config_android_logwrite.hpp │ │ │ │ ├── catch_config_counter.hpp │ │ │ │ ├── catch_config_prefix_messages.hpp │ │ │ │ ├── catch_config_static_analysis_support.hpp │ │ │ │ ├── catch_config_uncaught_exceptions.hpp │ │ │ │ ├── catch_config_wchar.hpp │ │ │ │ ├── catch_console_colour.cpp │ │ │ │ ├── catch_console_colour.hpp │ │ │ │ ├── catch_console_width.hpp │ │ │ │ ├── catch_container_nonmembers.hpp │ │ │ │ ├── catch_context.cpp │ │ │ │ ├── catch_context.hpp │ │ │ │ ├── catch_debug_console.cpp │ │ │ │ ├── catch_debug_console.hpp │ │ │ │ ├── catch_debugger.cpp │ │ │ │ ├── catch_debugger.hpp │ │ │ │ ├── catch_decomposer.cpp │ │ │ │ ├── catch_decomposer.hpp │ │ │ │ ├── catch_enforce.cpp │ │ │ │ ├── catch_enforce.hpp │ │ │ │ ├── catch_enum_values_registry.cpp │ │ │ │ ├── catch_enum_values_registry.hpp │ │ │ │ ├── catch_errno_guard.cpp │ │ │ │ ├── catch_errno_guard.hpp │ │ │ │ ├── catch_exception_translator_registry.cpp │ │ │ │ ├── catch_exception_translator_registry.hpp │ │ │ │ ├── catch_fatal_condition_handler.cpp │ │ │ │ ├── catch_fatal_condition_handler.hpp │ │ │ │ ├── catch_floating_point_helpers.cpp │ │ │ │ ├── catch_floating_point_helpers.hpp │ │ │ │ ├── catch_getenv.cpp │ │ │ │ ├── catch_getenv.hpp │ │ │ │ ├── catch_is_permutation.hpp │ │ │ │ ├── catch_istream.cpp │ │ │ │ ├── catch_istream.hpp │ │ │ │ ├── catch_jsonwriter.cpp │ │ │ │ ├── catch_jsonwriter.hpp │ │ │ │ ├── catch_lazy_expr.cpp │ │ │ │ ├── catch_lazy_expr.hpp │ │ │ │ ├── catch_leak_detector.cpp │ │ │ │ ├── catch_leak_detector.hpp │ │ │ │ ├── catch_list.cpp │ │ │ │ ├── catch_list.hpp │ │ │ │ ├── catch_logical_traits.hpp │ │ │ │ ├── catch_main.cpp │ │ │ │ ├── catch_message_info.cpp │ │ │ │ ├── catch_message_info.hpp │ │ │ │ ├── catch_meta.hpp │ │ │ │ ├── catch_move_and_forward.hpp │ │ │ │ ├── catch_noncopyable.hpp │ │ │ │ ├── catch_optional.hpp │ │ │ │ ├── catch_output_redirect.cpp │ │ │ │ ├── catch_output_redirect.hpp │ │ │ │ ├── catch_parse_numbers.cpp │ │ │ │ ├── catch_parse_numbers.hpp │ │ │ │ ├── catch_platform.hpp │ │ │ │ ├── catch_polyfills.cpp │ │ │ │ ├── catch_polyfills.hpp │ │ │ │ ├── catch_preprocessor.hpp │ │ │ │ ├── catch_preprocessor_internal_stringify.hpp │ │ │ │ ├── catch_preprocessor_remove_parens.hpp │ │ │ │ ├── catch_random_floating_point_helpers.hpp │ │ │ │ ├── catch_random_integer_helpers.hpp │ │ │ │ ├── catch_random_number_generator.cpp │ │ │ │ ├── catch_random_number_generator.hpp │ │ │ │ ├── catch_random_seed_generation.cpp │ │ │ │ ├── catch_random_seed_generation.hpp │ │ │ │ ├── catch_reporter_registry.cpp │ │ │ │ ├── catch_reporter_registry.hpp │ │ │ │ ├── catch_reporter_spec_parser.cpp │ │ │ │ ├── catch_reporter_spec_parser.hpp │ │ │ │ ├── catch_result_type.hpp │ │ │ │ ├── catch_reusable_string_stream.cpp │ │ │ │ ├── catch_reusable_string_stream.hpp │ │ │ │ ├── catch_run_context.cpp │ │ │ │ ├── catch_run_context.hpp │ │ │ │ ├── catch_section.cpp │ │ │ │ ├── catch_section.hpp │ │ │ │ ├── catch_sharding.hpp │ │ │ │ ├── catch_singletons.cpp │ │ │ │ ├── catch_singletons.hpp │ │ │ │ ├── catch_source_line_info.cpp │ │ │ │ ├── catch_source_line_info.hpp │ │ │ │ ├── catch_startup_exception_registry.cpp │ │ │ │ ├── catch_startup_exception_registry.hpp │ │ │ │ ├── catch_stdstreams.cpp │ │ │ │ ├── catch_stdstreams.hpp │ │ │ │ ├── catch_stream_end_stop.hpp │ │ │ │ ├── catch_string_manip.cpp │ │ │ │ ├── catch_string_manip.hpp │ │ │ │ ├── catch_stringref.cpp │ │ │ │ ├── catch_stringref.hpp │ │ │ │ ├── catch_tag_alias_registry.cpp │ │ │ │ ├── catch_tag_alias_registry.hpp │ │ │ │ ├── catch_template_test_registry.hpp │ │ │ │ ├── catch_test_case_info_hasher.cpp │ │ │ │ ├── catch_test_case_info_hasher.hpp │ │ │ │ ├── catch_test_case_registry_impl.cpp │ │ │ │ ├── catch_test_case_registry_impl.hpp │ │ │ │ ├── catch_test_case_tracker.cpp │ │ │ │ ├── catch_test_case_tracker.hpp │ │ │ │ ├── catch_test_failure_exception.cpp │ │ │ │ ├── catch_test_failure_exception.hpp │ │ │ │ ├── catch_test_macro_impl.hpp │ │ │ │ ├── catch_test_registry.cpp │ │ │ │ ├── catch_test_registry.hpp │ │ │ │ ├── catch_test_run_info.hpp │ │ │ │ ├── catch_test_spec_parser.cpp │ │ │ │ ├── catch_test_spec_parser.hpp │ │ │ │ ├── catch_textflow.cpp │ │ │ │ ├── catch_textflow.hpp │ │ │ │ ├── catch_to_string.hpp │ │ │ │ ├── catch_uncaught_exceptions.cpp │ │ │ │ ├── catch_uncaught_exceptions.hpp │ │ │ │ ├── catch_uniform_floating_point_distribution.hpp │ │ │ │ ├── catch_uniform_integer_distribution.hpp │ │ │ │ ├── catch_unique_name.hpp │ │ │ │ ├── catch_unique_ptr.hpp │ │ │ │ ├── catch_void_type.hpp │ │ │ │ ├── catch_wildcard_pattern.cpp │ │ │ │ ├── catch_wildcard_pattern.hpp │ │ │ │ ├── catch_windows_h_proxy.hpp │ │ │ │ ├── catch_xmlwriter.cpp │ │ │ │ └── catch_xmlwriter.hpp │ │ │ │ ├── matchers │ │ │ │ ├── catch_matchers.cpp │ │ │ │ ├── catch_matchers.hpp │ │ │ │ ├── catch_matchers_all.hpp │ │ │ │ ├── catch_matchers_container_properties.cpp │ │ │ │ ├── catch_matchers_container_properties.hpp │ │ │ │ ├── catch_matchers_contains.hpp │ │ │ │ ├── catch_matchers_exception.cpp │ │ │ │ ├── catch_matchers_exception.hpp │ │ │ │ ├── catch_matchers_floating_point.cpp │ │ │ │ ├── catch_matchers_floating_point.hpp │ │ │ │ ├── catch_matchers_predicate.cpp │ │ │ │ ├── catch_matchers_predicate.hpp │ │ │ │ ├── catch_matchers_quantifiers.cpp │ │ │ │ ├── catch_matchers_quantifiers.hpp │ │ │ │ ├── catch_matchers_range_equals.hpp │ │ │ │ ├── catch_matchers_string.cpp │ │ │ │ ├── catch_matchers_string.hpp │ │ │ │ ├── catch_matchers_templated.cpp │ │ │ │ ├── catch_matchers_templated.hpp │ │ │ │ ├── catch_matchers_vector.hpp │ │ │ │ └── internal │ │ │ │ │ ├── catch_matchers_impl.cpp │ │ │ │ │ └── catch_matchers_impl.hpp │ │ │ │ ├── meson.build │ │ │ │ └── reporters │ │ │ │ ├── catch_reporter_automake.cpp │ │ │ │ ├── catch_reporter_automake.hpp │ │ │ │ ├── catch_reporter_common_base.cpp │ │ │ │ ├── catch_reporter_common_base.hpp │ │ │ │ ├── catch_reporter_compact.cpp │ │ │ │ ├── catch_reporter_compact.hpp │ │ │ │ ├── catch_reporter_console.cpp │ │ │ │ ├── catch_reporter_console.hpp │ │ │ │ ├── catch_reporter_cumulative_base.cpp │ │ │ │ ├── catch_reporter_cumulative_base.hpp │ │ │ │ ├── catch_reporter_event_listener.cpp │ │ │ │ ├── catch_reporter_event_listener.hpp │ │ │ │ ├── catch_reporter_helpers.cpp │ │ │ │ ├── catch_reporter_helpers.hpp │ │ │ │ ├── catch_reporter_json.cpp │ │ │ │ ├── catch_reporter_json.hpp │ │ │ │ ├── catch_reporter_junit.cpp │ │ │ │ ├── catch_reporter_junit.hpp │ │ │ │ ├── catch_reporter_multi.cpp │ │ │ │ ├── catch_reporter_multi.hpp │ │ │ │ ├── catch_reporter_registrars.cpp │ │ │ │ ├── catch_reporter_registrars.hpp │ │ │ │ ├── catch_reporter_sonarqube.cpp │ │ │ │ ├── catch_reporter_sonarqube.hpp │ │ │ │ ├── catch_reporter_streaming_base.cpp │ │ │ │ ├── catch_reporter_streaming_base.hpp │ │ │ │ ├── catch_reporter_tap.cpp │ │ │ │ ├── catch_reporter_tap.hpp │ │ │ │ ├── catch_reporter_teamcity.cpp │ │ │ │ ├── catch_reporter_teamcity.hpp │ │ │ │ ├── catch_reporter_xml.cpp │ │ │ │ ├── catch_reporter_xml.hpp │ │ │ │ └── catch_reporters_all.hpp │ │ ├── tests │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── ExtraTests │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ToDo.txt │ │ │ │ ├── X01-PrefixedMacros.cpp │ │ │ │ ├── X02-DisabledMacros.cpp │ │ │ │ ├── X03-DisabledExceptions-DefaultHandler.cpp │ │ │ │ ├── X04-DisabledExceptions-CustomHandler.cpp │ │ │ │ ├── X05-DeferredStaticChecks.cpp │ │ │ │ ├── X10-FallbackStringifier.cpp │ │ │ │ ├── X11-DisableStringification.cpp │ │ │ │ ├── X12-CustomDebugBreakMacro.cpp │ │ │ │ ├── X20-AssertionStartingEventGoesBeforeAssertionIsEvaluated.cpp │ │ │ │ ├── X21-PartialTestCaseEvents.cpp │ │ │ │ ├── X22-BenchmarksInCumulativeReporter.cpp │ │ │ │ ├── X23-CasingInReporterNames.cpp │ │ │ │ ├── X24-ListenerStdoutCaptureInMultireporter.cpp │ │ │ │ ├── X25-ListenerCanAskForCapturedStdout.cpp │ │ │ │ ├── X26-ReporterPreferencesForPassingAssertionsIsRespected.cpp │ │ │ │ ├── X27-CapturedStdoutInTestCaseEvents.cpp │ │ │ │ ├── X28-ListenersGetEventsBeforeReporters.cpp │ │ │ │ ├── X29-CustomArgumentsForReporters.cpp │ │ │ │ ├── X30-BazelReporter.cpp │ │ │ │ ├── X31-DuplicatedTestCases.cpp │ │ │ │ ├── X32-DuplicatedTestCasesDifferentTags.cpp │ │ │ │ ├── X33-DuplicatedTestCaseMethods.cpp │ │ │ │ ├── X34-DuplicatedTestCaseMethodsDifferentFixtures.cpp │ │ │ │ ├── X35-DuplicatedReporterNames.cpp │ │ │ │ ├── X36-ReportingCrashWithJunitReporter.cpp │ │ │ │ ├── X90-WindowsHeaderInclusion.cpp │ │ │ │ ├── X91-AmalgamatedCatch.cpp │ │ │ │ ├── X92-NoTests.cpp │ │ │ │ └── X93-AllSkipped.cpp │ │ │ ├── SelfTest │ │ │ │ ├── Baselines │ │ │ │ │ ├── automake.std.approved.txt │ │ │ │ │ ├── automake.sw.approved.txt │ │ │ │ │ ├── automake.sw.multi.approved.txt │ │ │ │ │ ├── compact.sw.approved.txt │ │ │ │ │ ├── compact.sw.multi.approved.txt │ │ │ │ │ ├── console.std.approved.txt │ │ │ │ │ ├── console.sw.approved.txt │ │ │ │ │ ├── console.sw.multi.approved.txt │ │ │ │ │ ├── console.swa4.approved.txt │ │ │ │ │ ├── default.sw.multi.approved.txt │ │ │ │ │ ├── junit.sw.approved.txt │ │ │ │ │ ├── junit.sw.multi.approved.txt │ │ │ │ │ ├── sonarqube.sw.approved.txt │ │ │ │ │ ├── sonarqube.sw.multi.approved.txt │ │ │ │ │ ├── tap.sw.approved.txt │ │ │ │ │ ├── tap.sw.multi.approved.txt │ │ │ │ │ ├── teamcity.sw.approved.txt │ │ │ │ │ ├── teamcity.sw.multi.approved.txt │ │ │ │ │ ├── xml.sw.approved.txt │ │ │ │ │ └── xml.sw.multi.approved.txt │ │ │ │ ├── IntrospectiveTests │ │ │ │ │ ├── Algorithms.tests.cpp │ │ │ │ │ ├── AssertionHandler.tests.cpp │ │ │ │ │ ├── Clara.tests.cpp │ │ │ │ │ ├── CmdLine.tests.cpp │ │ │ │ │ ├── CmdLineHelpers.tests.cpp │ │ │ │ │ ├── ColourImpl.tests.cpp │ │ │ │ │ ├── Details.tests.cpp │ │ │ │ │ ├── FloatingPoint.tests.cpp │ │ │ │ │ ├── GeneratorsImpl.tests.cpp │ │ │ │ │ ├── Integer.tests.cpp │ │ │ │ │ ├── InternalBenchmark.tests.cpp │ │ │ │ │ ├── Json.tests.cpp │ │ │ │ │ ├── Parse.tests.cpp │ │ │ │ │ ├── PartTracker.tests.cpp │ │ │ │ │ ├── RandomNumberGeneration.tests.cpp │ │ │ │ │ ├── Reporters.tests.cpp │ │ │ │ │ ├── Sharding.tests.cpp │ │ │ │ │ ├── Stream.tests.cpp │ │ │ │ │ ├── String.tests.cpp │ │ │ │ │ ├── StringManip.tests.cpp │ │ │ │ │ ├── Tag.tests.cpp │ │ │ │ │ ├── TestCaseInfoHasher.tests.cpp │ │ │ │ │ ├── TestSpec.tests.cpp │ │ │ │ │ ├── TestSpecParser.tests.cpp │ │ │ │ │ ├── TextFlow.tests.cpp │ │ │ │ │ ├── ToString.tests.cpp │ │ │ │ │ ├── Traits.tests.cpp │ │ │ │ │ ├── UniquePtr.tests.cpp │ │ │ │ │ └── Xml.tests.cpp │ │ │ │ ├── Misc │ │ │ │ │ ├── invalid-test-names.input │ │ │ │ │ ├── plain-old-tests.input │ │ │ │ │ └── special-characters-in-file.input │ │ │ │ ├── TestRegistrations.cpp │ │ │ │ ├── TimingTests │ │ │ │ │ └── Sleep.tests.cpp │ │ │ │ ├── UsageTests │ │ │ │ │ ├── Approx.tests.cpp │ │ │ │ │ ├── BDD.tests.cpp │ │ │ │ │ ├── Benchmark.tests.cpp │ │ │ │ │ ├── Class.tests.cpp │ │ │ │ │ ├── Compilation.tests.cpp │ │ │ │ │ ├── Condition.tests.cpp │ │ │ │ │ ├── Decomposition.tests.cpp │ │ │ │ │ ├── EnumToString.tests.cpp │ │ │ │ │ ├── Exception.tests.cpp │ │ │ │ │ ├── Generators.tests.cpp │ │ │ │ │ ├── Matchers.tests.cpp │ │ │ │ │ ├── MatchersRanges.tests.cpp │ │ │ │ │ ├── Message.tests.cpp │ │ │ │ │ ├── Misc.tests.cpp │ │ │ │ │ ├── Skip.tests.cpp │ │ │ │ │ ├── ToStringByte.tests.cpp │ │ │ │ │ ├── ToStringChrono.tests.cpp │ │ │ │ │ ├── ToStringGeneral.tests.cpp │ │ │ │ │ ├── ToStringOptional.tests.cpp │ │ │ │ │ ├── ToStringPair.tests.cpp │ │ │ │ │ ├── ToStringTuple.tests.cpp │ │ │ │ │ ├── ToStringVariant.tests.cpp │ │ │ │ │ ├── ToStringVector.tests.cpp │ │ │ │ │ ├── ToStringWhich.tests.cpp │ │ │ │ │ ├── Tricky.tests.cpp │ │ │ │ │ └── VariadicMacros.tests.cpp │ │ │ │ └── helpers │ │ │ │ │ ├── parse_test_spec.cpp │ │ │ │ │ ├── parse_test_spec.hpp │ │ │ │ │ ├── range_test_helpers.hpp │ │ │ │ │ └── type_with_lit_0_comparisons.hpp │ │ │ ├── TestScripts │ │ │ │ ├── ConfigureTestsCommon.py │ │ │ │ ├── DiscoverTests │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── VerifyRegistration.py │ │ │ │ │ └── register-tests.cpp │ │ │ │ ├── testBazelReporter.py │ │ │ │ ├── testBazelSharding.py │ │ │ │ ├── testConfigureDefaultReporter.py │ │ │ │ ├── testConfigureDisable.py │ │ │ │ ├── testConfigureDisableStringification.py │ │ │ │ ├── testConfigureExperimentalRedirect.py │ │ │ │ ├── testPartialTestCaseEvent.py │ │ │ │ ├── testRandomOrder.py │ │ │ │ └── testSharding.py │ │ │ └── meson.build │ │ ├── third_party │ │ │ └── clara.hpp │ │ └── tools │ │ │ ├── misc │ │ │ ├── CMakeLists.txt │ │ │ ├── appveyorBuildConfigurationScript.bat │ │ │ ├── appveyorMergeCoverageScript.py │ │ │ ├── appveyorTestRunScript.bat │ │ │ ├── coverage-helper.cpp │ │ │ └── installOpenCppCoverage.ps1 │ │ │ └── scripts │ │ │ ├── approvalTests.py │ │ │ ├── approve.py │ │ │ ├── buildAndTest.cmd │ │ │ ├── buildAndTest.sh │ │ │ ├── checkConvenienceHeaders.py │ │ │ ├── checkDuplicateFilenames.py │ │ │ ├── checkLicense.py │ │ │ ├── developBuild.py │ │ │ ├── extractFeaturesFromReleaseNotes.py │ │ │ ├── fixWhitespace.py │ │ │ ├── generateAmalgamatedFiles.py │ │ │ ├── majorRelease.py │ │ │ ├── minorRelease.py │ │ │ ├── patchRelease.py │ │ │ ├── releaseCommon.py │ │ │ ├── scriptCommon.py │ │ │ ├── updateDocumentSnippets.py │ │ │ └── updateDocumentToC.py │ ├── glad2 │ │ ├── CMakeLists.txt │ │ ├── generate.sh │ │ ├── include │ │ │ ├── EGL │ │ │ │ └── eglplatform.h │ │ │ ├── KHR │ │ │ │ ├── khrplatform.h │ │ │ │ └── khrplatform.h.license │ │ │ └── glad │ │ │ │ ├── egl.h │ │ │ │ ├── egl.h.license │ │ │ │ ├── gl.h │ │ │ │ ├── gl.h.license │ │ │ │ ├── glx.h │ │ │ │ ├── glx.h.license │ │ │ │ ├── wgl.h │ │ │ │ └── wgl.h.license │ │ └── src │ │ │ ├── egl.c │ │ │ ├── egl.c.license │ │ │ ├── gl.c │ │ │ ├── gl.c.license │ │ │ ├── glx.c │ │ │ ├── glx.c.license │ │ │ ├── wgl.c │ │ │ └── wgl.c.license │ ├── jnipp │ │ ├── CHANGELOG.md │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── README.md │ │ ├── android │ │ │ ├── AndroidManifest.xml │ │ │ └── CMakeLists.txt │ │ ├── build.gradle │ │ ├── changes │ │ │ ├── changes │ │ │ │ └── pr.40.md │ │ │ └── fixes │ │ │ │ └── pr.49.md │ │ ├── jnipp.cpp │ │ ├── jnipp.h │ │ ├── jnipp.vcxproj │ │ ├── jnipp.vcxproj.filters │ │ ├── makefile │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── external_create.cpp │ │ │ ├── external_detach.cpp │ │ │ ├── main.cpp │ │ │ ├── testing.h │ │ │ ├── tests.vcxproj │ │ │ └── tests.vcxproj.filters │ ├── jsoncpp │ │ ├── .clang-format │ │ ├── .clang-tidy │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── CONTRIBUTING.md │ │ ├── CTestConfig.cmake │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── amalgamate.py │ │ ├── appveyor.yml │ │ ├── cmake │ │ │ └── JoinPaths.cmake │ │ ├── dev.makefile │ │ ├── devtools │ │ │ ├── __init__.py │ │ │ ├── agent_vmw7.json │ │ │ ├── agent_vmxp.json │ │ │ ├── antglob.py │ │ │ ├── batchbuild.py │ │ │ ├── fixeol.py │ │ │ ├── licenseupdater.py │ │ │ └── tarball.py │ │ ├── doc │ │ │ ├── doxyfile.in │ │ │ ├── footer.html │ │ │ ├── header.html │ │ │ ├── jsoncpp.dox │ │ │ ├── readme.txt │ │ │ ├── roadmap.dox │ │ │ └── web_doxyfile.in │ │ ├── doxybuild.py │ │ ├── example │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── readFromStream │ │ │ │ ├── errorFormat.json │ │ │ │ ├── readFromStream.cpp │ │ │ │ └── withComment.json │ │ │ ├── readFromString │ │ │ │ └── readFromString.cpp │ │ │ ├── streamWrite │ │ │ │ └── streamWrite.cpp │ │ │ └── stringWrite │ │ │ │ └── stringWrite.cpp │ │ ├── get_version.pl │ │ ├── include │ │ │ ├── CMakeLists.txt │ │ │ ├── PreventInBuildInstalls.cmake │ │ │ ├── PreventInSourceBuilds.cmake │ │ │ └── json │ │ │ │ ├── allocator.h │ │ │ │ ├── assertions.h │ │ │ │ ├── config.h │ │ │ │ ├── forwards.h │ │ │ │ ├── json.h │ │ │ │ ├── json_features.h │ │ │ │ ├── reader.h │ │ │ │ ├── value.h │ │ │ │ ├── version.h │ │ │ │ └── writer.h │ │ ├── jsoncpp-namespaced-targets.cmake │ │ ├── jsoncppConfig.cmake.in │ │ ├── jsoncppConfig.cmake.meson.in │ │ ├── meson_options.txt │ │ ├── pkg-config │ │ │ └── jsoncpp.pc.in │ │ ├── reformat.sh │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ ├── jsontestrunner │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cpp │ │ │ ├── lib_json │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── json_reader.cpp │ │ │ │ ├── json_tool.h │ │ │ │ ├── json_value.cpp │ │ │ │ ├── json_valueiterator.inl │ │ │ │ └── json_writer.cpp │ │ │ └── test_lib_json │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── fuzz.cpp │ │ │ │ ├── fuzz.dict │ │ │ │ ├── fuzz.h │ │ │ │ ├── jsontest.cpp │ │ │ │ ├── jsontest.h │ │ │ │ └── main.cpp │ │ ├── test │ │ │ ├── cleantests.py │ │ │ ├── data │ │ │ │ ├── fail_invalid_quote.json │ │ │ │ ├── fail_strict_comment_01.json │ │ │ │ ├── fail_strict_comment_02.json │ │ │ │ ├── fail_strict_comment_03.json │ │ │ │ ├── fail_test_array_01.json │ │ │ │ ├── fail_test_array_02.json │ │ │ │ ├── fail_test_object_01.json │ │ │ │ ├── fail_test_object_02.json │ │ │ │ ├── fail_test_stack_limit.json │ │ │ │ ├── legacy_test_array_01.expected │ │ │ │ ├── legacy_test_array_01.json │ │ │ │ ├── legacy_test_array_02.expected │ │ │ │ ├── legacy_test_array_02.json │ │ │ │ ├── legacy_test_array_03.expected │ │ │ │ ├── legacy_test_array_03.json │ │ │ │ ├── legacy_test_array_04.expected │ │ │ │ ├── legacy_test_array_04.json │ │ │ │ ├── legacy_test_array_05.expected │ │ │ │ ├── legacy_test_array_05.json │ │ │ │ ├── legacy_test_array_06.expected │ │ │ │ ├── legacy_test_array_06.json │ │ │ │ ├── legacy_test_array_07.expected │ │ │ │ ├── legacy_test_array_07.json │ │ │ │ ├── legacy_test_basic_01.expected │ │ │ │ ├── legacy_test_basic_01.json │ │ │ │ ├── legacy_test_basic_02.expected │ │ │ │ ├── legacy_test_basic_02.json │ │ │ │ ├── legacy_test_basic_03.expected │ │ │ │ ├── legacy_test_basic_03.json │ │ │ │ ├── legacy_test_basic_04.expected │ │ │ │ ├── legacy_test_basic_04.json │ │ │ │ ├── legacy_test_basic_05.expected │ │ │ │ ├── legacy_test_basic_05.json │ │ │ │ ├── legacy_test_basic_06.expected │ │ │ │ ├── legacy_test_basic_06.json │ │ │ │ ├── legacy_test_basic_07.expected │ │ │ │ ├── legacy_test_basic_07.json │ │ │ │ ├── legacy_test_basic_08.expected │ │ │ │ ├── legacy_test_basic_08.json │ │ │ │ ├── legacy_test_basic_09.expected │ │ │ │ ├── legacy_test_basic_09.json │ │ │ │ ├── legacy_test_comment_00.expected │ │ │ │ ├── legacy_test_comment_00.json │ │ │ │ ├── legacy_test_comment_01.expected │ │ │ │ ├── legacy_test_comment_01.json │ │ │ │ ├── legacy_test_comment_02.expected │ │ │ │ ├── legacy_test_comment_02.json │ │ │ │ ├── legacy_test_complex_01.expected │ │ │ │ ├── legacy_test_complex_01.json │ │ │ │ ├── legacy_test_integer_01.expected │ │ │ │ ├── legacy_test_integer_01.json │ │ │ │ ├── legacy_test_integer_02.expected │ │ │ │ ├── legacy_test_integer_02.json │ │ │ │ ├── legacy_test_integer_03.expected │ │ │ │ ├── legacy_test_integer_03.json │ │ │ │ ├── legacy_test_integer_04.expected │ │ │ │ ├── legacy_test_integer_04.json │ │ │ │ ├── legacy_test_integer_05.expected │ │ │ │ ├── legacy_test_integer_05.json │ │ │ │ ├── legacy_test_integer_06_64bits.expected │ │ │ │ ├── legacy_test_integer_06_64bits.json │ │ │ │ ├── legacy_test_integer_07_64bits.expected │ │ │ │ ├── legacy_test_integer_07_64bits.json │ │ │ │ ├── legacy_test_integer_08_64bits.expected │ │ │ │ ├── legacy_test_integer_08_64bits.json │ │ │ │ ├── legacy_test_large_01.expected │ │ │ │ ├── legacy_test_large_01.json │ │ │ │ ├── legacy_test_object_01.expected │ │ │ │ ├── legacy_test_object_01.json │ │ │ │ ├── legacy_test_object_02.expected │ │ │ │ ├── legacy_test_object_02.json │ │ │ │ ├── legacy_test_object_03.expected │ │ │ │ ├── legacy_test_object_03.json │ │ │ │ ├── legacy_test_object_04.expected │ │ │ │ ├── legacy_test_object_04.json │ │ │ │ ├── legacy_test_preserve_comment_01.expected │ │ │ │ ├── legacy_test_preserve_comment_01.json │ │ │ │ ├── legacy_test_real_01.expected │ │ │ │ ├── legacy_test_real_01.json │ │ │ │ ├── legacy_test_real_02.expected │ │ │ │ ├── legacy_test_real_02.json │ │ │ │ ├── legacy_test_real_03.expected │ │ │ │ ├── legacy_test_real_03.json │ │ │ │ ├── legacy_test_real_04.expected │ │ │ │ ├── legacy_test_real_04.json │ │ │ │ ├── legacy_test_real_05.expected │ │ │ │ ├── legacy_test_real_05.json │ │ │ │ ├── legacy_test_real_06.expected │ │ │ │ ├── legacy_test_real_06.json │ │ │ │ ├── legacy_test_real_07.expected │ │ │ │ ├── legacy_test_real_07.json │ │ │ │ ├── legacy_test_real_08.expected │ │ │ │ ├── legacy_test_real_08.json │ │ │ │ ├── legacy_test_real_09.expected │ │ │ │ ├── legacy_test_real_09.json │ │ │ │ ├── legacy_test_real_10.expected │ │ │ │ ├── legacy_test_real_10.json │ │ │ │ ├── legacy_test_real_11.expected │ │ │ │ ├── legacy_test_real_11.json │ │ │ │ ├── legacy_test_real_12.expected │ │ │ │ ├── legacy_test_real_12.json │ │ │ │ ├── legacy_test_real_13.expected │ │ │ │ ├── legacy_test_real_13.json │ │ │ │ ├── legacy_test_string_01.expected │ │ │ │ ├── legacy_test_string_01.json │ │ │ │ ├── legacy_test_string_02.expected │ │ │ │ ├── legacy_test_string_02.json │ │ │ │ ├── legacy_test_string_03.expected │ │ │ │ ├── legacy_test_string_03.json │ │ │ │ ├── legacy_test_string_04.expected │ │ │ │ ├── legacy_test_string_04.json │ │ │ │ ├── legacy_test_string_05.expected │ │ │ │ ├── legacy_test_string_05.json │ │ │ │ ├── legacy_test_string_unicode_01.expected │ │ │ │ ├── legacy_test_string_unicode_01.json │ │ │ │ ├── legacy_test_string_unicode_02.expected │ │ │ │ ├── legacy_test_string_unicode_02.json │ │ │ │ ├── legacy_test_string_unicode_03.expected │ │ │ │ ├── legacy_test_string_unicode_03.json │ │ │ │ ├── legacy_test_string_unicode_04.expected │ │ │ │ ├── legacy_test_string_unicode_04.json │ │ │ │ ├── legacy_test_string_unicode_05.expected │ │ │ │ ├── legacy_test_string_unicode_05.json │ │ │ │ ├── test_array_08.expected │ │ │ │ ├── test_array_08.json │ │ │ │ ├── test_object_05.expected │ │ │ │ └── test_object_05.json │ │ │ ├── generate_expected.py │ │ │ ├── jsonchecker │ │ │ │ ├── fail1.json │ │ │ │ ├── fail10.json │ │ │ │ ├── fail11.json │ │ │ │ ├── fail12.json │ │ │ │ ├── fail13.json │ │ │ │ ├── fail14.json │ │ │ │ ├── fail15.json │ │ │ │ ├── fail16.json │ │ │ │ ├── fail17.json │ │ │ │ ├── fail18.json │ │ │ │ ├── fail19.json │ │ │ │ ├── fail2.json │ │ │ │ ├── fail20.json │ │ │ │ ├── fail21.json │ │ │ │ ├── fail22.json │ │ │ │ ├── fail23.json │ │ │ │ ├── fail24.json │ │ │ │ ├── fail25.json │ │ │ │ ├── fail26.json │ │ │ │ ├── fail27.json │ │ │ │ ├── fail28.json │ │ │ │ ├── fail29.json │ │ │ │ ├── fail3.json │ │ │ │ ├── fail30.json │ │ │ │ ├── fail31.json │ │ │ │ ├── fail32.json │ │ │ │ ├── fail33.json │ │ │ │ ├── fail4.json │ │ │ │ ├── fail5.json │ │ │ │ ├── fail6.json │ │ │ │ ├── fail7.json │ │ │ │ ├── fail8.json │ │ │ │ ├── fail9.json │ │ │ │ ├── pass1.json │ │ │ │ ├── pass2.json │ │ │ │ ├── pass3.json │ │ │ │ └── readme.txt │ │ │ ├── pyjsontestrunner.py │ │ │ ├── runjsontests.py │ │ │ └── rununittests.py │ │ └── version.in │ ├── metal-cpp │ │ ├── Foundation │ │ │ ├── Foundation.hpp │ │ │ ├── NSArray.hpp │ │ │ ├── NSAutoreleasePool.hpp │ │ │ ├── NSBundle.hpp │ │ │ ├── NSData.hpp │ │ │ ├── NSDate.hpp │ │ │ ├── NSDefines.hpp │ │ │ ├── NSDictionary.hpp │ │ │ ├── NSEnumerator.hpp │ │ │ ├── NSError.hpp │ │ │ ├── NSLock.hpp │ │ │ ├── NSNotification.hpp │ │ │ ├── NSNumber.hpp │ │ │ ├── NSObjCRuntime.hpp │ │ │ ├── NSObject.hpp │ │ │ ├── NSPrivate.hpp │ │ │ ├── NSProcessInfo.hpp │ │ │ ├── NSRange.hpp │ │ │ ├── NSSet.hpp │ │ │ ├── NSSharedPtr.hpp │ │ │ ├── NSString.hpp │ │ │ ├── NSTypes.hpp │ │ │ └── NSURL.hpp │ │ ├── LICENSE.txt │ │ ├── Metal │ │ │ ├── MTLAccelerationStructure.hpp │ │ │ ├── MTLAccelerationStructureCommandEncoder.hpp │ │ │ ├── MTLAccelerationStructureTypes.hpp │ │ │ ├── MTLArgument.hpp │ │ │ ├── MTLArgumentEncoder.hpp │ │ │ ├── MTLBinaryArchive.hpp │ │ │ ├── MTLBlitCommandEncoder.hpp │ │ │ ├── MTLBlitPass.hpp │ │ │ ├── MTLBuffer.hpp │ │ │ ├── MTLCaptureManager.hpp │ │ │ ├── MTLCaptureScope.hpp │ │ │ ├── MTLCommandBuffer.hpp │ │ │ ├── MTLCommandEncoder.hpp │ │ │ ├── MTLCommandQueue.hpp │ │ │ ├── MTLComputeCommandEncoder.hpp │ │ │ ├── MTLComputePass.hpp │ │ │ ├── MTLComputePipeline.hpp │ │ │ ├── MTLCounters.hpp │ │ │ ├── MTLDefines.hpp │ │ │ ├── MTLDepthStencil.hpp │ │ │ ├── MTLDevice.hpp │ │ │ ├── MTLDrawable.hpp │ │ │ ├── MTLDynamicLibrary.hpp │ │ │ ├── MTLEvent.hpp │ │ │ ├── MTLFence.hpp │ │ │ ├── MTLFunctionConstantValues.hpp │ │ │ ├── MTLFunctionDescriptor.hpp │ │ │ ├── MTLFunctionHandle.hpp │ │ │ ├── MTLFunctionLog.hpp │ │ │ ├── MTLFunctionStitching.hpp │ │ │ ├── MTLHeaderBridge.hpp │ │ │ ├── MTLHeap.hpp │ │ │ ├── MTLIOCommandBuffer.hpp │ │ │ ├── MTLIOCommandQueue.hpp │ │ │ ├── MTLIOCompressor.hpp │ │ │ ├── MTLIndirectCommandBuffer.hpp │ │ │ ├── MTLIndirectCommandEncoder.hpp │ │ │ ├── MTLIntersectionFunctionTable.hpp │ │ │ ├── MTLLibrary.hpp │ │ │ ├── MTLLinkedFunctions.hpp │ │ │ ├── MTLParallelRenderCommandEncoder.hpp │ │ │ ├── MTLPipeline.hpp │ │ │ ├── MTLPixelFormat.hpp │ │ │ ├── MTLPrivate.hpp │ │ │ ├── MTLRasterizationRate.hpp │ │ │ ├── MTLRenderCommandEncoder.hpp │ │ │ ├── MTLRenderPass.hpp │ │ │ ├── MTLRenderPipeline.hpp │ │ │ ├── MTLResource.hpp │ │ │ ├── MTLResourceStateCommandEncoder.hpp │ │ │ ├── MTLResourceStatePass.hpp │ │ │ ├── MTLSampler.hpp │ │ │ ├── MTLStageInputOutputDescriptor.hpp │ │ │ ├── MTLTexture.hpp │ │ │ ├── MTLTypes.hpp │ │ │ ├── MTLVersion.hpp │ │ │ ├── MTLVertexDescriptor.hpp │ │ │ ├── MTLVisibleFunctionTable.hpp │ │ │ └── Metal.hpp │ │ ├── QuartzCore │ │ │ ├── CADefines.hpp │ │ │ ├── CAMetalDrawable.hpp │ │ │ ├── CAMetalLayer.hpp │ │ │ ├── CAPrivate.hpp │ │ │ └── QuartzCore.hpp │ │ ├── README.md │ │ └── SingleHeader │ │ │ └── MakeSingleHeader.py │ ├── sanitizers-cmake │ │ ├── LICENSE │ │ ├── README.md │ │ └── cmake │ │ │ ├── FindASan.cmake │ │ │ ├── FindMSan.cmake │ │ │ ├── FindSanitizers.cmake │ │ │ ├── FindTSan.cmake │ │ │ ├── FindUBSan.cmake │ │ │ ├── asan-wrapper │ │ │ └── sanitize-helpers.cmake │ └── span-lite │ │ └── include │ │ └── nonstd │ │ └── span.hpp ├── loader │ ├── .gitignore │ ├── AndroidManifest.xml.in │ ├── CMakeLists.txt │ ├── OpenXRConfig.cmake.in │ ├── abi.json │ ├── abi.json.license │ ├── additional_manifest.mf.in │ ├── additional_manifest.mf.in.license │ ├── android_utilities.cpp │ ├── android_utilities.h │ ├── api_layer_interface.cpp │ ├── api_layer_interface.hpp │ ├── exception_handling.hpp │ ├── loader.rc │ ├── loader_core.cpp │ ├── loader_init_data.cpp │ ├── loader_init_data.hpp │ ├── loader_instance.cpp │ ├── loader_instance.hpp │ ├── loader_logger.cpp │ ├── loader_logger.hpp │ ├── loader_logger_recorders.cpp │ ├── loader_logger_recorders.hpp │ ├── loader_platform.hpp │ ├── loader_properties.cpp │ ├── loader_properties.hpp │ ├── manifest_file.cpp │ ├── manifest_file.hpp │ ├── module.json │ ├── module.json.license │ ├── openxr-loader.def │ ├── openxr-loader.expsym │ ├── openxr-loader.map │ ├── openxr.pc.in │ ├── openxr_loader_for_android.pom │ ├── prefab.json │ ├── prefab.json.license │ ├── runtime_interface.cpp │ ├── runtime_interface.hpp │ └── settings.gradle ├── scripts │ ├── api_dump_generator.py │ ├── automatic_source_generator.py │ ├── generate_api_layer_manifest.py │ ├── generate_runtime_manifest.py │ ├── interaction_profile_processor.py │ ├── loader_source_generator.py │ ├── src_genxr.py │ ├── template_interaction_info_generated.cpp │ ├── template_interaction_info_generated.h │ ├── utility_source_generator.py │ └── validation_layer_generator.py ├── tests │ ├── CMakeLists.txt │ ├── c_compile_test │ │ ├── AndroidManifest.xml │ │ ├── CMakeLists.txt │ │ ├── build.gradle │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ ├── gradle-wrapper.jar.license │ │ │ │ ├── gradle-wrapper.properties │ │ │ │ └── gradle-wrapper.properties.license │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── gradlew.bat.license │ │ ├── gradlew.license │ │ ├── main.c │ │ └── settings.gradle │ ├── hello_xr │ │ ├── AndroidManifest.xml │ │ ├── CMakeLists.txt │ │ ├── android_resources │ │ │ ├── drawable │ │ │ │ ├── ic_helloxr_es.xml │ │ │ │ └── ic_helloxr_vk.xml │ │ │ ├── helloxr-es-24px.svg │ │ │ ├── helloxr-es-24px.svg.license │ │ │ ├── helloxr-vk-24px.svg │ │ │ ├── helloxr-vk-24px.svg.license │ │ │ ├── opengles │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ └── ic_helloxr_launcher.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_helloxr_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_helloxr_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_helloxr_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_helloxr_launcher.png │ │ │ │ └── mipmap-xxxhdpi │ │ │ │ │ └── ic_helloxr_launcher.png │ │ │ ├── values │ │ │ │ └── ic_helloxr_launcher_background.xml │ │ │ └── vulkan │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ └── ic_helloxr_launcher.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_helloxr_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_helloxr_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_helloxr_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_helloxr_launcher.png │ │ │ │ └── mipmap-xxxhdpi │ │ │ │ └── ic_helloxr_launcher.png │ │ ├── build.gradle │ │ ├── check.h │ │ ├── common.h │ │ ├── d3d12_utils.cpp │ │ ├── d3d12_utils.h │ │ ├── d3d_common.cpp │ │ ├── d3d_common.h │ │ ├── geometry.h │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ ├── gradle-wrapper.jar.license │ │ │ │ ├── gradle-wrapper.properties │ │ │ │ └── gradle-wrapper.properties.license │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── gradlew.bat.license │ │ ├── gradlew.license │ │ ├── graphics_plugin_impl_helpers.h │ │ ├── graphicsapi.h │ │ ├── graphicsplugin.h │ │ ├── graphicsplugin_d3d11.cpp │ │ ├── graphicsplugin_d3d12.cpp │ │ ├── graphicsplugin_factory.cpp │ │ ├── graphicsplugin_metal.cpp │ │ ├── graphicsplugin_opengl.cpp │ │ ├── graphicsplugin_opengles.cpp │ │ ├── graphicsplugin_vulkan.cpp │ │ ├── hello_xr.1 │ │ ├── logger.cpp │ │ ├── logger.h │ │ ├── main.cpp │ │ ├── openxr_program.cpp │ │ ├── openxr_program.h │ │ ├── options.h │ │ ├── pch.cpp │ │ ├── pch.h │ │ ├── platformdata.h │ │ ├── platformplugin.h │ │ ├── platformplugin_android.cpp │ │ ├── platformplugin_factory.cpp │ │ ├── platformplugin_posix.cpp │ │ ├── platformplugin_win32.cpp │ │ ├── settings.gradle │ │ ├── swapchain_image_data.cpp │ │ ├── swapchain_image_data.h │ │ ├── vulkan_shaders │ │ │ ├── frag.glsl │ │ │ ├── frag.spv │ │ │ ├── frag.spv.license │ │ │ ├── vert.glsl │ │ │ ├── vert.spv │ │ │ └── vert.spv.license │ │ └── vulkan_utils.h │ ├── list │ │ ├── CMakeLists.txt │ │ ├── list.cpp │ │ └── openxr_runtime_list.1 │ ├── list_json │ │ ├── AndroidManifest.xml │ │ ├── CMakeLists.txt │ │ ├── build.gradle │ │ ├── list_json.cpp │ │ ├── openxr_runtime_list_json.1 │ │ └── settings.gradle │ ├── loader_test │ │ ├── AndroidManifest.xml │ │ ├── CMakeLists.txt │ │ ├── android_assets │ │ │ └── openxr │ │ │ │ └── 1 │ │ │ │ └── api_layers │ │ │ │ └── explicit.d │ │ │ │ ├── XrApiLayer_test.json │ │ │ │ ├── XrApiLayer_test.json.license │ │ │ │ ├── XrApiLayer_test_badjson_api_float.json │ │ │ │ ├── XrApiLayer_test_badjson_api_float.json.license │ │ │ │ ├── XrApiLayer_test_badjson_api_int.json │ │ │ │ ├── XrApiLayer_test_badjson_api_int.json.license │ │ │ │ ├── XrApiLayer_test_badjson_api_major_high.json │ │ │ │ ├── XrApiLayer_test_badjson_api_major_high.json.license │ │ │ │ ├── XrApiLayer_test_badjson_api_string.json │ │ │ │ ├── XrApiLayer_test_badjson_api_string.json.license │ │ │ │ ├── XrApiLayer_test_badjson_file_ver_all_low.json │ │ │ │ ├── XrApiLayer_test_badjson_file_ver_all_low.json.license │ │ │ │ ├── XrApiLayer_test_badjson_file_ver_int.json │ │ │ │ ├── XrApiLayer_test_badjson_file_ver_int.json.license │ │ │ │ ├── XrApiLayer_test_badjson_file_ver_major_high.json │ │ │ │ ├── XrApiLayer_test_badjson_file_ver_major_high.json.license │ │ │ │ ├── XrApiLayer_test_badjson_file_ver_minor_high.json │ │ │ │ ├── XrApiLayer_test_badjson_file_ver_minor_high.json.license │ │ │ │ ├── XrApiLayer_test_badjson_file_ver_missing.json │ │ │ │ ├── XrApiLayer_test_badjson_file_ver_missing.json.license │ │ │ │ ├── XrApiLayer_test_badjson_file_ver_string.json │ │ │ │ ├── XrApiLayer_test_badjson_file_ver_string.json.license │ │ │ │ ├── XrApiLayer_test_badjson_layer_empty.json │ │ │ │ ├── XrApiLayer_test_badjson_layer_empty.json.license │ │ │ │ ├── XrApiLayer_test_badjson_layer_missing.json │ │ │ │ ├── XrApiLayer_test_badjson_layer_missing.json.license │ │ │ │ ├── XrApiLayer_test_badjson_name_int.json │ │ │ │ ├── XrApiLayer_test_badjson_name_int.json.license │ │ │ │ ├── XrApiLayer_test_badjson_name_missing.json │ │ │ │ ├── XrApiLayer_test_badjson_name_missing.json.license │ │ │ │ ├── XrApiLayer_test_badjson_path_int.json │ │ │ │ ├── XrApiLayer_test_badjson_path_int.json.license │ │ │ │ ├── XrApiLayer_test_badjson_path_missing.json │ │ │ │ ├── XrApiLayer_test_badjson_path_missing.json.license │ │ │ │ ├── XrApiLayer_test_badjson_path_no_file.json │ │ │ │ ├── XrApiLayer_test_badjson_path_no_file.json.license │ │ │ │ ├── XrApiLayer_test_badjson_relative_path.json │ │ │ │ ├── XrApiLayer_test_badjson_relative_path.json.license │ │ │ │ ├── XrApiLayer_test_badnegotiate_always.json │ │ │ │ ├── XrApiLayer_test_badnegotiate_always.json.license │ │ │ │ ├── XrApiLayer_test_badnegotiate_invalid_api.json │ │ │ │ ├── XrApiLayer_test_badnegotiate_invalid_api.json.license │ │ │ │ ├── XrApiLayer_test_badnegotiate_invalid_gipa.json │ │ │ │ ├── XrApiLayer_test_badnegotiate_invalid_gipa.json.license │ │ │ │ ├── XrApiLayer_test_badnegotiate_invalid_interface.json │ │ │ │ ├── XrApiLayer_test_badnegotiate_invalid_interface.json.license │ │ │ │ ├── XrApiLayer_test_good_relative_path.json │ │ │ │ └── XrApiLayer_test_good_relative_path.json.license │ │ ├── build.gradle │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ ├── gradle-wrapper.jar.license │ │ │ │ ├── gradle-wrapper.properties │ │ │ │ └── gradle-wrapper.properties.license │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── gradlew.bat.license │ │ ├── gradlew.license │ │ ├── loader_test.cpp │ │ ├── loader_test_utils.cpp │ │ ├── loader_test_utils.hpp │ │ ├── settings.gradle │ │ └── test_layers │ │ │ ├── CMakeLists.txt │ │ │ ├── XrApiLayer_test.def │ │ │ ├── XrApiLayer_test.expsym │ │ │ ├── XrApiLayer_test.map │ │ │ └── layer_test.cpp │ └── test_runtimes │ │ ├── CMakeLists.txt │ │ ├── runtime_test.cpp │ │ ├── test_runtime.def │ │ ├── test_runtime.expsym │ │ └── test_runtime.map ├── version.cmake └── version.gradle └── tox.ini /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.azure-pipelines/nuget/stage_nuget.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/.azure-pipelines/nuget/stage_nuget.ps1 -------------------------------------------------------------------------------- /.azure-pipelines/openxr-sdk-source.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/.azure-pipelines/openxr-sdk-source.yml -------------------------------------------------------------------------------- /.azure-pipelines/openxr-sdk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/.azure-pipelines/openxr-sdk.yml -------------------------------------------------------------------------------- /.azure-pipelines/shared/build_jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/.azure-pipelines/shared/build_jobs.yml -------------------------------------------------------------------------------- /.azure-pipelines/shared/build_linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/.azure-pipelines/shared/build_linux.yml -------------------------------------------------------------------------------- /.azure-pipelines/shared/build_mingw.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/.azure-pipelines/shared/build_mingw.yml -------------------------------------------------------------------------------- /.azure-pipelines/shared/build_msvc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/.azure-pipelines/shared/build_msvc.yml -------------------------------------------------------------------------------- /.azure-pipelines/shared/check_clang_format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/.azure-pipelines/shared/check_clang_format.yml -------------------------------------------------------------------------------- /.azure-pipelines/shared/check_file_format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/.azure-pipelines/shared/check_file_format.yml -------------------------------------------------------------------------------- /.azure-pipelines/shared/codespell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/.azure-pipelines/shared/codespell.yml -------------------------------------------------------------------------------- /.azure-pipelines/shared/install_vulkan.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/.azure-pipelines/shared/install_vulkan.ps1 -------------------------------------------------------------------------------- /.azure-pipelines/shared/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/.azure-pipelines/shared/shared.py -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/.env -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/.java-version: -------------------------------------------------------------------------------- 1 | 17 2 | -------------------------------------------------------------------------------- /.github/.java-version.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2025 Collabora, Ltd. 2 | SPDX-License-Identifier: CC0-1.0 3 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/scripts/CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/.github/scripts/CMakePresets.json -------------------------------------------------------------------------------- /.github/scripts/CMakePresets.json.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2022 Collabora, Ltd 2 | SPDX-License-Identifier: CC0-1.0 3 | -------------------------------------------------------------------------------- /.github/scripts/generate_windows_matrix_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/.github/scripts/generate_windows_matrix_build.py -------------------------------------------------------------------------------- /.github/scripts/install_vulkan.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/.github/scripts/install_vulkan.ps1 -------------------------------------------------------------------------------- /.github/scripts/organize_windows_artifacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/.github/scripts/organize_windows_artifacts.py -------------------------------------------------------------------------------- /.github/scripts/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/.github/scripts/shared.py -------------------------------------------------------------------------------- /.github/workflows/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/.github/workflows/android.yml -------------------------------------------------------------------------------- /.github/workflows/macOS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/.github/workflows/macOS.yml -------------------------------------------------------------------------------- /.github/workflows/macos-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/.github/workflows/macos-build.yml -------------------------------------------------------------------------------- /.github/workflows/msvc-build-preset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/.github/workflows/msvc-build-preset.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/snapshot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/.github/workflows/snapshot.yml -------------------------------------------------------------------------------- /.github/workflows/windows-matrix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/.github/workflows/windows-matrix.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/.mailmap -------------------------------------------------------------------------------- /.proclamation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/.proclamation.json -------------------------------------------------------------------------------- /.proclamation.json.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/.proclamation.json.license -------------------------------------------------------------------------------- /.reuse/dep5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/.reuse/dep5 -------------------------------------------------------------------------------- /BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/BUILDING.md -------------------------------------------------------------------------------- /CHANGELOG.SDK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/CHANGELOG.SDK.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /COPYING.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/COPYING.adoc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/LICENSES/Apache-2.0.txt -------------------------------------------------------------------------------- /LICENSES/BSD-3-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/LICENSES/BSD-3-Clause.txt -------------------------------------------------------------------------------- /LICENSES/BSL-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/LICENSES/BSL-1.0.txt -------------------------------------------------------------------------------- /LICENSES/CC-BY-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/LICENSES/CC-BY-4.0.txt -------------------------------------------------------------------------------- /LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /LICENSES/ISC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/LICENSES/ISC.txt -------------------------------------------------------------------------------- /LICENSES/LicenseRef-jsoncpp-public-domain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/LICENSES/LicenseRef-jsoncpp-public-domain.txt -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /LICENSES/OFL-1.1-RFN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/LICENSES/OFL-1.1-RFN.txt -------------------------------------------------------------------------------- /LICENSES/Unlicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/LICENSES/Unlicense.txt -------------------------------------------------------------------------------- /LICENSES/WTFPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/LICENSES/WTFPL.txt -------------------------------------------------------------------------------- /LICENSES/Zlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/LICENSES/Zlib.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/README.md -------------------------------------------------------------------------------- /changes/.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/changes/.markdownlint.yaml -------------------------------------------------------------------------------- /changes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/changes/README.md -------------------------------------------------------------------------------- /changes/registry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/changes/registry/README.md -------------------------------------------------------------------------------- /changes/sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/changes/sdk/README.md -------------------------------------------------------------------------------- /changes/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/changes/template.md -------------------------------------------------------------------------------- /checkCodespell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/checkCodespell -------------------------------------------------------------------------------- /external/include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/include/CMakeLists.txt -------------------------------------------------------------------------------- /external/include/GL/gl_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/include/GL/gl_format.h -------------------------------------------------------------------------------- /external/include/GL/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/include/GL/glext.h -------------------------------------------------------------------------------- /external/include/GL/glext.h.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/include/GL/glext.h.license -------------------------------------------------------------------------------- /external/include/GL/wglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/include/GL/wglext.h -------------------------------------------------------------------------------- /external/include/GL/wglext.h.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/include/GL/wglext.h.license -------------------------------------------------------------------------------- /external/python/Jinja2-2.11.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /external/python/Jinja2-2.11.3.dist-info/LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/Jinja2-2.11.3.dist-info/LICENSE.rst -------------------------------------------------------------------------------- /external/python/Jinja2-2.11.3.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/Jinja2-2.11.3.dist-info/METADATA -------------------------------------------------------------------------------- /external/python/Jinja2-2.11.3.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/Jinja2-2.11.3.dist-info/RECORD -------------------------------------------------------------------------------- /external/python/Jinja2-2.11.3.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/python/Jinja2-2.11.3.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/Jinja2-2.11.3.dist-info/WHEEL -------------------------------------------------------------------------------- /external/python/Jinja2-2.11.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | jinja2 2 | -------------------------------------------------------------------------------- /external/python/MarkupSafe-1.1.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /external/python/MarkupSafe-1.1.1.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/MarkupSafe-1.1.1.dist-info/METADATA -------------------------------------------------------------------------------- /external/python/MarkupSafe-1.1.1.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/MarkupSafe-1.1.1.dist-info/RECORD -------------------------------------------------------------------------------- /external/python/MarkupSafe-1.1.1.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/MarkupSafe-1.1.1.dist-info/WHEEL -------------------------------------------------------------------------------- /external/python/MarkupSafe-1.1.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | markupsafe 2 | -------------------------------------------------------------------------------- /external/python/jinja2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/jinja2/__init__.py -------------------------------------------------------------------------------- /external/python/jinja2/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/jinja2/_compat.py -------------------------------------------------------------------------------- /external/python/jinja2/_identifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/jinja2/_identifier.py -------------------------------------------------------------------------------- /external/python/jinja2/asyncfilters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/jinja2/asyncfilters.py -------------------------------------------------------------------------------- /external/python/jinja2/asyncsupport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/jinja2/asyncsupport.py -------------------------------------------------------------------------------- /external/python/jinja2/bccache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/jinja2/bccache.py -------------------------------------------------------------------------------- /external/python/jinja2/compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/jinja2/compiler.py -------------------------------------------------------------------------------- /external/python/jinja2/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/jinja2/constants.py -------------------------------------------------------------------------------- /external/python/jinja2/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/jinja2/debug.py -------------------------------------------------------------------------------- /external/python/jinja2/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/jinja2/defaults.py -------------------------------------------------------------------------------- /external/python/jinja2/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/jinja2/environment.py -------------------------------------------------------------------------------- /external/python/jinja2/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/jinja2/exceptions.py -------------------------------------------------------------------------------- /external/python/jinja2/ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/jinja2/ext.py -------------------------------------------------------------------------------- /external/python/jinja2/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/jinja2/filters.py -------------------------------------------------------------------------------- /external/python/jinja2/idtracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/jinja2/idtracking.py -------------------------------------------------------------------------------- /external/python/jinja2/lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/jinja2/lexer.py -------------------------------------------------------------------------------- /external/python/jinja2/loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/jinja2/loaders.py -------------------------------------------------------------------------------- /external/python/jinja2/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/jinja2/meta.py -------------------------------------------------------------------------------- /external/python/jinja2/nativetypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/jinja2/nativetypes.py -------------------------------------------------------------------------------- /external/python/jinja2/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/jinja2/nodes.py -------------------------------------------------------------------------------- /external/python/jinja2/optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/jinja2/optimizer.py -------------------------------------------------------------------------------- /external/python/jinja2/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/jinja2/parser.py -------------------------------------------------------------------------------- /external/python/jinja2/runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/jinja2/runtime.py -------------------------------------------------------------------------------- /external/python/jinja2/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/jinja2/sandbox.py -------------------------------------------------------------------------------- /external/python/jinja2/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/jinja2/tests.py -------------------------------------------------------------------------------- /external/python/jinja2/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/jinja2/utils.py -------------------------------------------------------------------------------- /external/python/jinja2/visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/jinja2/visitor.py -------------------------------------------------------------------------------- /external/python/markupsafe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/markupsafe/__init__.py -------------------------------------------------------------------------------- /external/python/markupsafe/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/markupsafe/_compat.py -------------------------------------------------------------------------------- /external/python/markupsafe/_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/markupsafe/_constants.py -------------------------------------------------------------------------------- /external/python/markupsafe/_native.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/markupsafe/_native.py -------------------------------------------------------------------------------- /external/python/markupsafe/_speedups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/markupsafe/_speedups.c -------------------------------------------------------------------------------- /external/python/pyparsing-3.1.2.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/pyparsing-3.1.2.dist-info/LICENSE -------------------------------------------------------------------------------- /external/python/pyparsing-3.1.2.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/pyparsing-3.1.2.dist-info/METADATA -------------------------------------------------------------------------------- /external/python/pyparsing-3.1.2.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/pyparsing-3.1.2.dist-info/RECORD -------------------------------------------------------------------------------- /external/python/pyparsing-3.1.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.9.0 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /external/python/pyparsing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/pyparsing/__init__.py -------------------------------------------------------------------------------- /external/python/pyparsing/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/pyparsing/actions.py -------------------------------------------------------------------------------- /external/python/pyparsing/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/pyparsing/common.py -------------------------------------------------------------------------------- /external/python/pyparsing/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/pyparsing/core.py -------------------------------------------------------------------------------- /external/python/pyparsing/diagram/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/pyparsing/diagram/__init__.py -------------------------------------------------------------------------------- /external/python/pyparsing/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/pyparsing/exceptions.py -------------------------------------------------------------------------------- /external/python/pyparsing/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/pyparsing/helpers.py -------------------------------------------------------------------------------- /external/python/pyparsing/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/python/pyparsing/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/pyparsing/results.py -------------------------------------------------------------------------------- /external/python/pyparsing/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/pyparsing/testing.py -------------------------------------------------------------------------------- /external/python/pyparsing/unicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/pyparsing/unicode.py -------------------------------------------------------------------------------- /external/python/pyparsing/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/external/python/pyparsing/util.py -------------------------------------------------------------------------------- /github/sdk/.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/github/sdk/.github/pull_request_template.md -------------------------------------------------------------------------------- /github/sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/github/sdk/README.md -------------------------------------------------------------------------------- /include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/include/CMakeLists.txt -------------------------------------------------------------------------------- /include/generated_header_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/include/generated_header_list.txt -------------------------------------------------------------------------------- /include/generated_header_list.txt.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/include/generated_header_list.txt.license -------------------------------------------------------------------------------- /include/openxr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/include/openxr/CMakeLists.txt -------------------------------------------------------------------------------- /include/openxr/openxr_platform_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/include/openxr/openxr_platform_defines.h -------------------------------------------------------------------------------- /maintainer-scripts/archive-sdk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/maintainer-scripts/archive-sdk.sh -------------------------------------------------------------------------------- /maintainer-scripts/build-aar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/maintainer-scripts/build-aar.sh -------------------------------------------------------------------------------- /maintainer-scripts/check-changelog-fragments.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/maintainer-scripts/check-changelog-fragments.sh -------------------------------------------------------------------------------- /maintainer-scripts/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/maintainer-scripts/common.sh -------------------------------------------------------------------------------- /maintainer-scripts/publish-aar/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/maintainer-scripts/publish-aar/build.gradle.kts -------------------------------------------------------------------------------- /maintainer-scripts/publish-aar/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/maintainer-scripts/publish-aar/gradlew -------------------------------------------------------------------------------- /maintainer-scripts/publish-aar/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/maintainer-scripts/publish-aar/gradlew.bat -------------------------------------------------------------------------------- /maintainer-scripts/publish-aar/gradlew.bat.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/maintainer-scripts/publish-aar/gradlew.bat.license -------------------------------------------------------------------------------- /maintainer-scripts/publish-aar/gradlew.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/maintainer-scripts/publish-aar/gradlew.license -------------------------------------------------------------------------------- /maintainer-scripts/publish-aar/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/maintainer-scripts/publish-aar/settings.gradle -------------------------------------------------------------------------------- /open-in-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/open-in-docker.sh -------------------------------------------------------------------------------- /openxr-codespell.exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/openxr-codespell.exclude -------------------------------------------------------------------------------- /runClangFormat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/runClangFormat.sh -------------------------------------------------------------------------------- /specification/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/.gitignore -------------------------------------------------------------------------------- /specification/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/Makefile -------------------------------------------------------------------------------- /specification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/README.md -------------------------------------------------------------------------------- /specification/config/attribs.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/config/attribs.adoc -------------------------------------------------------------------------------- /specification/loader/api_layer.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/loader/api_layer.adoc -------------------------------------------------------------------------------- /specification/loader/appendices.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/loader/appendices.adoc -------------------------------------------------------------------------------- /specification/loader/application.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/loader/application.adoc -------------------------------------------------------------------------------- /specification/loader/debug.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/loader/debug.adoc -------------------------------------------------------------------------------- /specification/loader/design.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/loader/design.adoc -------------------------------------------------------------------------------- /specification/loader/images/app_dispatch_table_call_chain.svg.license: -------------------------------------------------------------------------------- 1 | Copyright (c) 2017-2025 The Khronos Group Inc. 2 | 3 | SPDX-License-Identifier: CC-BY-4.0 4 | -------------------------------------------------------------------------------- /specification/loader/images/call_chain_example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/loader/images/call_chain_example.svg -------------------------------------------------------------------------------- /specification/loader/images/call_chain_example.svg.license: -------------------------------------------------------------------------------- 1 | Copyright (c) 2017-2025 The Khronos Group Inc. 2 | 3 | SPDX-License-Identifier: CC-BY-4.0 4 | -------------------------------------------------------------------------------- /specification/loader/images/class_diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/loader/images/class_diagram.svg -------------------------------------------------------------------------------- /specification/loader/images/class_diagram.svg.license: -------------------------------------------------------------------------------- 1 | Copyright (c) 2017-2025 The Khronos Group Inc. 2 | 3 | SPDX-License-Identifier: CC-BY-4.0 4 | -------------------------------------------------------------------------------- /specification/loader/images/high_level_loader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/loader/images/high_level_loader.svg -------------------------------------------------------------------------------- /specification/loader/images/high_level_loader.svg.license: -------------------------------------------------------------------------------- 1 | Copyright (c) 2017-2025 The Khronos Group Inc. 2 | 3 | SPDX-License-Identifier: CC-BY-4.0 4 | -------------------------------------------------------------------------------- /specification/loader/images/loader_layer_order_calls.svg.license: -------------------------------------------------------------------------------- 1 | Copyright (c) 2017-2025 The Khronos Group Inc. 2 | 3 | SPDX-License-Identifier: CC-BY-4.0 4 | -------------------------------------------------------------------------------- /specification/loader/images/optional_layer_function_impl.svg.license: -------------------------------------------------------------------------------- 1 | Copyright (c) 2017-2025 The Khronos Group Inc. 2 | 3 | SPDX-License-Identifier: CC-BY-4.0 4 | -------------------------------------------------------------------------------- /specification/loader/images/standard_call_chains.svg.license: -------------------------------------------------------------------------------- 1 | Copyright (c) 2017-2025 The Khronos Group Inc. 2 | 3 | SPDX-License-Identifier: CC-BY-4.0 4 | -------------------------------------------------------------------------------- /specification/loader/loader.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/loader/loader.adoc -------------------------------------------------------------------------------- /specification/loader/overview.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/loader/overview.adoc -------------------------------------------------------------------------------- /specification/loader/runtime.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/loader/runtime.adoc -------------------------------------------------------------------------------- /specification/loader/source.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/loader/source.adoc -------------------------------------------------------------------------------- /specification/registry/xr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/registry/xr.xml -------------------------------------------------------------------------------- /specification/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/requirements.txt -------------------------------------------------------------------------------- /specification/scripts/__init__.py.docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/__init__.py.docs -------------------------------------------------------------------------------- /specification/scripts/apiconventions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/apiconventions.py -------------------------------------------------------------------------------- /specification/scripts/cgenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/cgenerator.py -------------------------------------------------------------------------------- /specification/scripts/check_spec_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/check_spec_links.py -------------------------------------------------------------------------------- /specification/scripts/check_stamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/check_stamp.py -------------------------------------------------------------------------------- /specification/scripts/comment_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/comment_convert.py -------------------------------------------------------------------------------- /specification/scripts/creflectiongenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/creflectiongenerator.py -------------------------------------------------------------------------------- /specification/scripts/docgenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/docgenerator.py -------------------------------------------------------------------------------- /specification/scripts/extdependency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/extdependency.py -------------------------------------------------------------------------------- /specification/scripts/extensionmetadocgenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/extensionmetadocgenerator.py -------------------------------------------------------------------------------- /specification/scripts/extract_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/extract_code.py -------------------------------------------------------------------------------- /specification/scripts/findBareNormatives.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/findBareNormatives.sh -------------------------------------------------------------------------------- /specification/scripts/genRef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/genRef.py -------------------------------------------------------------------------------- /specification/scripts/genanchorlinks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/genanchorlinks.rb -------------------------------------------------------------------------------- /specification/scripts/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/generator.py -------------------------------------------------------------------------------- /specification/scripts/genxr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/genxr.py -------------------------------------------------------------------------------- /specification/scripts/hostsyncgenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/hostsyncgenerator.py -------------------------------------------------------------------------------- /specification/scripts/indexgenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/indexgenerator.py -------------------------------------------------------------------------------- /specification/scripts/interfacedocgenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/interfacedocgenerator.py -------------------------------------------------------------------------------- /specification/scripts/jinja_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/jinja_helpers.py -------------------------------------------------------------------------------- /specification/scripts/nonbreaking-ext-titles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/nonbreaking-ext-titles.rb -------------------------------------------------------------------------------- /specification/scripts/parse_dependency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/parse_dependency.py -------------------------------------------------------------------------------- /specification/scripts/pdf-index-customizer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/pdf-index-customizer.rb -------------------------------------------------------------------------------- /specification/scripts/pdf_chapter_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/pdf_chapter_diff.py -------------------------------------------------------------------------------- /specification/scripts/pygenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/pygenerator.py -------------------------------------------------------------------------------- /specification/scripts/realign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/realign.py -------------------------------------------------------------------------------- /specification/scripts/reflib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/reflib.py -------------------------------------------------------------------------------- /specification/scripts/reflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/reflow.py -------------------------------------------------------------------------------- /specification/scripts/reg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/reg.py -------------------------------------------------------------------------------- /specification/scripts/reserve_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/reserve_extensions.py -------------------------------------------------------------------------------- /specification/scripts/rouge-extend-css.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/rouge-extend-css.rb -------------------------------------------------------------------------------- /specification/scripts/rubygenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/rubygenerator.py -------------------------------------------------------------------------------- /specification/scripts/scriptgenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/scriptgenerator.py -------------------------------------------------------------------------------- /specification/scripts/spec-macros.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/spec-macros.rb -------------------------------------------------------------------------------- /specification/scripts/spec-macros/extension.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/spec-macros/extension.rb -------------------------------------------------------------------------------- /specification/scripts/spec_tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/spec_tools/__init__.py -------------------------------------------------------------------------------- /specification/scripts/spec_tools/algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/spec_tools/algo.py -------------------------------------------------------------------------------- /specification/scripts/spec_tools/attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/spec_tools/attributes.py -------------------------------------------------------------------------------- /specification/scripts/spec_tools/base_printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/spec_tools/base_printer.py -------------------------------------------------------------------------------- /specification/scripts/spec_tools/console_printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/spec_tools/console_printer.py -------------------------------------------------------------------------------- /specification/scripts/spec_tools/conventions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/spec_tools/conventions.py -------------------------------------------------------------------------------- /specification/scripts/spec_tools/data_structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/spec_tools/data_structures.py -------------------------------------------------------------------------------- /specification/scripts/spec_tools/entity_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/spec_tools/entity_db.py -------------------------------------------------------------------------------- /specification/scripts/spec_tools/file_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/spec_tools/file_process.py -------------------------------------------------------------------------------- /specification/scripts/spec_tools/html_printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/spec_tools/html_printer.py -------------------------------------------------------------------------------- /specification/scripts/spec_tools/macro_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/spec_tools/macro_checker.py -------------------------------------------------------------------------------- /specification/scripts/spec_tools/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/spec_tools/main.py -------------------------------------------------------------------------------- /specification/scripts/spec_tools/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/spec_tools/shared.py -------------------------------------------------------------------------------- /specification/scripts/spec_tools/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/spec_tools/util.py -------------------------------------------------------------------------------- /specification/scripts/spec_tools/validity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/spec_tools/validity.py -------------------------------------------------------------------------------- /specification/scripts/template_openxr_reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/template_openxr_reflection.h -------------------------------------------------------------------------------- /specification/scripts/test_check_spec_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/test_check_spec_links.py -------------------------------------------------------------------------------- /specification/scripts/test_entity_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/test_entity_db.py -------------------------------------------------------------------------------- /specification/scripts/update_reservations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/update_reservations.py -------------------------------------------------------------------------------- /specification/scripts/update_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/update_version.py -------------------------------------------------------------------------------- /specification/scripts/validitygenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/validitygenerator.py -------------------------------------------------------------------------------- /specification/scripts/vuidCounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/vuidCounts.py -------------------------------------------------------------------------------- /specification/scripts/xml_consistency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/xml_consistency.py -------------------------------------------------------------------------------- /specification/scripts/xrconventions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/specification/scripts/xrconventions.py -------------------------------------------------------------------------------- /src/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/.clang-format -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/api_layers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/api_layers/CMakeLists.txt -------------------------------------------------------------------------------- /src/api_layers/OpenXR_API_Dump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/api_layers/OpenXR_API_Dump.png -------------------------------------------------------------------------------- /src/api_layers/OpenXR_API_Dump.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/api_layers/OpenXR_API_Dump.png.license -------------------------------------------------------------------------------- /src/api_layers/OpenXR_Core_Validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/api_layers/OpenXR_Core_Validation.png -------------------------------------------------------------------------------- /src/api_layers/OpenXR_Core_Validation.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/api_layers/OpenXR_Core_Validation.png.license -------------------------------------------------------------------------------- /src/api_layers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/api_layers/README.md -------------------------------------------------------------------------------- /src/api_layers/README_api_dump.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/api_layers/README_api_dump.md -------------------------------------------------------------------------------- /src/api_layers/README_core_validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/api_layers/README_core_validation.md -------------------------------------------------------------------------------- /src/api_layers/XrApiLayer_api_dump.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/api_layers/XrApiLayer_api_dump.def -------------------------------------------------------------------------------- /src/api_layers/XrApiLayer_api_dump.expsym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/api_layers/XrApiLayer_api_dump.expsym -------------------------------------------------------------------------------- /src/api_layers/XrApiLayer_api_dump.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/api_layers/XrApiLayer_api_dump.map -------------------------------------------------------------------------------- /src/api_layers/XrApiLayer_core_validation.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/api_layers/XrApiLayer_core_validation.def -------------------------------------------------------------------------------- /src/api_layers/XrApiLayer_core_validation.expsym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/api_layers/XrApiLayer_core_validation.expsym -------------------------------------------------------------------------------- /src/api_layers/XrApiLayer_core_validation.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/api_layers/XrApiLayer_core_validation.map -------------------------------------------------------------------------------- /src/api_layers/api_dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/api_layers/api_dump.cpp -------------------------------------------------------------------------------- /src/api_layers/api_layer_platform_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/api_layers/api_layer_platform_defines.h -------------------------------------------------------------------------------- /src/api_layers/best_practices/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/api_layers/best_practices/CMakeLists.txt -------------------------------------------------------------------------------- /src/api_layers/best_practices/layer_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/api_layers/best_practices/layer_utils.cpp -------------------------------------------------------------------------------- /src/api_layers/best_practices/layer_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/api_layers/best_practices/layer_utils.h -------------------------------------------------------------------------------- /src/api_layers/core_validation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/api_layers/core_validation.cpp -------------------------------------------------------------------------------- /src/api_layers/core_validation_html_anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/api_layers/core_validation_html_anchor.png -------------------------------------------------------------------------------- /src/api_layers/core_validation_message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/api_layers/core_validation_message.svg -------------------------------------------------------------------------------- /src/api_layers/core_validation_message.svg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/api_layers/core_validation_message.svg.license -------------------------------------------------------------------------------- /src/api_layers/validation_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/api_layers/validation_utils.h -------------------------------------------------------------------------------- /src/cmake/FindEGL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/cmake/FindEGL.cmake -------------------------------------------------------------------------------- /src/cmake/FindJsonCpp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/cmake/FindJsonCpp.cmake -------------------------------------------------------------------------------- /src/cmake/FindMetalTools.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/cmake/FindMetalTools.cmake -------------------------------------------------------------------------------- /src/cmake/FindOpenGLES.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/cmake/FindOpenGLES.cmake -------------------------------------------------------------------------------- /src/cmake/GetGitRevisionDescription.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/cmake/GetGitRevisionDescription.cmake -------------------------------------------------------------------------------- /src/cmake/GetGitRevisionDescription.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/cmake/GetGitRevisionDescription.cmake.in -------------------------------------------------------------------------------- /src/cmake/StdFilesystemFlags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/cmake/StdFilesystemFlags.cmake -------------------------------------------------------------------------------- /src/cmake/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/cmake/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /src/cmake/fxc_shader.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/cmake/fxc_shader.cmake -------------------------------------------------------------------------------- /src/cmake/glsl_shader.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/cmake/glsl_shader.cmake -------------------------------------------------------------------------------- /src/cmake/make_includable.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/cmake/make_includable.cmake -------------------------------------------------------------------------------- /src/cmake/metaconfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/cmake/metaconfig.cmake.in -------------------------------------------------------------------------------- /src/cmake/metaconfig_android.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/cmake/metaconfig_android.cmake.in -------------------------------------------------------------------------------- /src/cmake/presentation.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/cmake/presentation.cmake -------------------------------------------------------------------------------- /src/common/android_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/common/android_logging.h -------------------------------------------------------------------------------- /src/common/extra_algorithms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/common/extra_algorithms.h -------------------------------------------------------------------------------- /src/common/filesystem_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/common/filesystem_utils.cpp -------------------------------------------------------------------------------- /src/common/filesystem_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/common/filesystem_utils.hpp -------------------------------------------------------------------------------- /src/common/gfxwrapper_opengl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/common/gfxwrapper_opengl.c -------------------------------------------------------------------------------- /src/common/gfxwrapper_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/common/gfxwrapper_opengl.h -------------------------------------------------------------------------------- /src/common/hex_and_handles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/common/hex_and_handles.h -------------------------------------------------------------------------------- /src/common/object_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/common/object_info.cpp -------------------------------------------------------------------------------- /src/common/object_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/common/object_info.h -------------------------------------------------------------------------------- /src/common/platform_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/common/platform_utils.hpp -------------------------------------------------------------------------------- /src/common/stdfs_conditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/common/stdfs_conditions.h -------------------------------------------------------------------------------- /src/common/unique_asset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/common/unique_asset.h -------------------------------------------------------------------------------- /src/common/vulkan_debug_object_namer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/common/vulkan_debug_object_namer.hpp -------------------------------------------------------------------------------- /src/common/xr_dependencies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/common/xr_dependencies.h -------------------------------------------------------------------------------- /src/common/xr_linear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/common/xr_linear.h -------------------------------------------------------------------------------- /src/common_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/common_config.h.in -------------------------------------------------------------------------------- /src/external/catch2/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/.clang-format -------------------------------------------------------------------------------- /src/external/catch2/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/.clang-tidy -------------------------------------------------------------------------------- /src/external/catch2/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/.gitattributes -------------------------------------------------------------------------------- /src/external/catch2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/.gitignore -------------------------------------------------------------------------------- /src/external/catch2/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/BUILD.bazel -------------------------------------------------------------------------------- /src/external/catch2/CMake/Catch2Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/CMake/Catch2Config.cmake.in -------------------------------------------------------------------------------- /src/external/catch2/CMake/CatchConfigOptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/CMake/CatchConfigOptions.cmake -------------------------------------------------------------------------------- /src/external/catch2/CMake/CatchMiscFunctions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/CMake/CatchMiscFunctions.cmake -------------------------------------------------------------------------------- /src/external/catch2/CMake/FindGcov.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/CMake/FindGcov.cmake -------------------------------------------------------------------------------- /src/external/catch2/CMake/FindLcov.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/CMake/FindLcov.cmake -------------------------------------------------------------------------------- /src/external/catch2/CMake/Findcodecov.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/CMake/Findcodecov.cmake -------------------------------------------------------------------------------- /src/external/catch2/CMake/catch2-with-main.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/CMake/catch2-with-main.pc.in -------------------------------------------------------------------------------- /src/external/catch2/CMake/catch2.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/CMake/catch2.pc.in -------------------------------------------------------------------------------- /src/external/catch2/CMake/llvm-cov-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/CMake/llvm-cov-wrapper -------------------------------------------------------------------------------- /src/external/catch2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/CMakeLists.txt -------------------------------------------------------------------------------- /src/external/catch2/CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/CMakePresets.json -------------------------------------------------------------------------------- /src/external/catch2/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /src/external/catch2/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/Doxyfile -------------------------------------------------------------------------------- /src/external/catch2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/LICENSE.txt -------------------------------------------------------------------------------- /src/external/catch2/MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/MODULE.bazel -------------------------------------------------------------------------------- /src/external/catch2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/README.md -------------------------------------------------------------------------------- /src/external/catch2/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/SECURITY.md -------------------------------------------------------------------------------- /src/external/catch2/WORKSPACE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/WORKSPACE.bazel -------------------------------------------------------------------------------- /src/external/catch2/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/appveyor.yml -------------------------------------------------------------------------------- /src/external/catch2/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/codecov.yml -------------------------------------------------------------------------------- /src/external/catch2/conanfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/conanfile.py -------------------------------------------------------------------------------- /src/external/catch2/data/artwork/catch2-c-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/data/artwork/catch2-c-logo.png -------------------------------------------------------------------------------- /src/external/catch2/docs/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/docs/Readme.md -------------------------------------------------------------------------------- /src/external/catch2/docs/assertions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/docs/assertions.md -------------------------------------------------------------------------------- /src/external/catch2/docs/benchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/docs/benchmarks.md -------------------------------------------------------------------------------- /src/external/catch2/docs/ci-and-misc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/docs/ci-and-misc.md -------------------------------------------------------------------------------- /src/external/catch2/docs/cmake-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/docs/cmake-integration.md -------------------------------------------------------------------------------- /src/external/catch2/docs/command-line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/docs/command-line.md -------------------------------------------------------------------------------- /src/external/catch2/docs/commercial-users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/docs/commercial-users.md -------------------------------------------------------------------------------- /src/external/catch2/docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/docs/configuration.md -------------------------------------------------------------------------------- /src/external/catch2/docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/docs/contributing.md -------------------------------------------------------------------------------- /src/external/catch2/docs/deprecations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/docs/deprecations.md -------------------------------------------------------------------------------- /src/external/catch2/docs/event-listeners.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/docs/event-listeners.md -------------------------------------------------------------------------------- /src/external/catch2/docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/docs/faq.md -------------------------------------------------------------------------------- /src/external/catch2/docs/generators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/docs/generators.md -------------------------------------------------------------------------------- /src/external/catch2/docs/limitations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/docs/limitations.md -------------------------------------------------------------------------------- /src/external/catch2/docs/list-of-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/docs/list-of-examples.md -------------------------------------------------------------------------------- /src/external/catch2/docs/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/docs/logging.md -------------------------------------------------------------------------------- /src/external/catch2/docs/matchers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/docs/matchers.md -------------------------------------------------------------------------------- /src/external/catch2/docs/migrate-v2-to-v3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/docs/migrate-v2-to-v3.md -------------------------------------------------------------------------------- /src/external/catch2/docs/opensource-users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/docs/opensource-users.md -------------------------------------------------------------------------------- /src/external/catch2/docs/other-macros.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/docs/other-macros.md -------------------------------------------------------------------------------- /src/external/catch2/docs/own-main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/docs/own-main.md -------------------------------------------------------------------------------- /src/external/catch2/docs/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/docs/release-notes.md -------------------------------------------------------------------------------- /src/external/catch2/docs/release-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/docs/release-process.md -------------------------------------------------------------------------------- /src/external/catch2/docs/reporter-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/docs/reporter-events.md -------------------------------------------------------------------------------- /src/external/catch2/docs/reporters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/docs/reporters.md -------------------------------------------------------------------------------- /src/external/catch2/docs/test-cases-and-sections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/docs/test-cases-and-sections.md -------------------------------------------------------------------------------- /src/external/catch2/docs/test-fixtures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/docs/test-fixtures.md -------------------------------------------------------------------------------- /src/external/catch2/docs/tostring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/docs/tostring.md -------------------------------------------------------------------------------- /src/external/catch2/docs/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/docs/tutorial.md -------------------------------------------------------------------------------- /src/external/catch2/docs/usage-tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/docs/usage-tips.md -------------------------------------------------------------------------------- /src/external/catch2/docs/why-catch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/docs/why-catch.md -------------------------------------------------------------------------------- /src/external/catch2/examples/010-TestCase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/examples/010-TestCase.cpp -------------------------------------------------------------------------------- /src/external/catch2/examples/020-TestCase-1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/examples/020-TestCase-1.cpp -------------------------------------------------------------------------------- /src/external/catch2/examples/020-TestCase-2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/examples/020-TestCase-2.cpp -------------------------------------------------------------------------------- /src/external/catch2/examples/100-Fix-Section.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/examples/100-Fix-Section.cpp -------------------------------------------------------------------------------- /src/external/catch2/examples/232-Cfg-CustomMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/examples/232-Cfg-CustomMain.cpp -------------------------------------------------------------------------------- /src/external/catch2/examples/302-Gen-Table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/examples/302-Gen-Table.cpp -------------------------------------------------------------------------------- /src/external/catch2/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/examples/CMakeLists.txt -------------------------------------------------------------------------------- /src/external/catch2/extras/Catch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/extras/Catch.cmake -------------------------------------------------------------------------------- /src/external/catch2/extras/CatchAddTests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/extras/CatchAddTests.cmake -------------------------------------------------------------------------------- /src/external/catch2/extras/CatchShardTests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/extras/CatchShardTests.cmake -------------------------------------------------------------------------------- /src/external/catch2/extras/catch_amalgamated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/extras/catch_amalgamated.cpp -------------------------------------------------------------------------------- /src/external/catch2/extras/catch_amalgamated.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/extras/catch_amalgamated.hpp -------------------------------------------------------------------------------- /src/external/catch2/extras/gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/extras/gdbinit -------------------------------------------------------------------------------- /src/external/catch2/extras/lldbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/extras/lldbinit -------------------------------------------------------------------------------- /src/external/catch2/fuzzing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/fuzzing/CMakeLists.txt -------------------------------------------------------------------------------- /src/external/catch2/fuzzing/NullOStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/fuzzing/NullOStream.cpp -------------------------------------------------------------------------------- /src/external/catch2/fuzzing/NullOStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/fuzzing/NullOStream.h -------------------------------------------------------------------------------- /src/external/catch2/fuzzing/build_fuzzers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/fuzzing/build_fuzzers.sh -------------------------------------------------------------------------------- /src/external/catch2/fuzzing/fuzz_TestSpecParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/fuzzing/fuzz_TestSpecParser.cpp -------------------------------------------------------------------------------- /src/external/catch2/fuzzing/fuzz_XmlWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/fuzzing/fuzz_XmlWriter.cpp -------------------------------------------------------------------------------- /src/external/catch2/fuzzing/fuzz_textflow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/fuzzing/fuzz_textflow.cpp -------------------------------------------------------------------------------- /src/external/catch2/mdsnippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/mdsnippets.json -------------------------------------------------------------------------------- /src/external/catch2/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/meson.build -------------------------------------------------------------------------------- /src/external/catch2/meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/meson_options.txt -------------------------------------------------------------------------------- /src/external/catch2/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/external/catch2/src/catch2/catch_all.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/src/catch2/catch_all.hpp -------------------------------------------------------------------------------- /src/external/catch2/src/catch2/catch_approx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/src/catch2/catch_approx.cpp -------------------------------------------------------------------------------- /src/external/catch2/src/catch2/catch_approx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/src/catch2/catch_approx.hpp -------------------------------------------------------------------------------- /src/external/catch2/src/catch2/catch_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/src/catch2/catch_config.cpp -------------------------------------------------------------------------------- /src/external/catch2/src/catch2/catch_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/src/catch2/catch_config.hpp -------------------------------------------------------------------------------- /src/external/catch2/src/catch2/catch_message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/src/catch2/catch_message.cpp -------------------------------------------------------------------------------- /src/external/catch2/src/catch2/catch_message.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/src/catch2/catch_message.hpp -------------------------------------------------------------------------------- /src/external/catch2/src/catch2/catch_session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/src/catch2/catch_session.cpp -------------------------------------------------------------------------------- /src/external/catch2/src/catch2/catch_session.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/src/catch2/catch_session.hpp -------------------------------------------------------------------------------- /src/external/catch2/src/catch2/catch_tag_alias.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/src/catch2/catch_tag_alias.hpp -------------------------------------------------------------------------------- /src/external/catch2/src/catch2/catch_test_spec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/src/catch2/catch_test_spec.cpp -------------------------------------------------------------------------------- /src/external/catch2/src/catch2/catch_test_spec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/src/catch2/catch_test_spec.hpp -------------------------------------------------------------------------------- /src/external/catch2/src/catch2/catch_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/src/catch2/catch_timer.cpp -------------------------------------------------------------------------------- /src/external/catch2/src/catch2/catch_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/src/catch2/catch_timer.hpp -------------------------------------------------------------------------------- /src/external/catch2/src/catch2/catch_tostring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/src/catch2/catch_tostring.cpp -------------------------------------------------------------------------------- /src/external/catch2/src/catch2/catch_tostring.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/src/catch2/catch_tostring.hpp -------------------------------------------------------------------------------- /src/external/catch2/src/catch2/catch_totals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/src/catch2/catch_totals.cpp -------------------------------------------------------------------------------- /src/external/catch2/src/catch2/catch_totals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/src/catch2/catch_totals.hpp -------------------------------------------------------------------------------- /src/external/catch2/src/catch2/catch_version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/src/catch2/catch_version.cpp -------------------------------------------------------------------------------- /src/external/catch2/src/catch2/catch_version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/src/catch2/catch_version.hpp -------------------------------------------------------------------------------- /src/external/catch2/src/catch2/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/src/catch2/meson.build -------------------------------------------------------------------------------- /src/external/catch2/tests/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/tests/BUILD.bazel -------------------------------------------------------------------------------- /src/external/catch2/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/tests/CMakeLists.txt -------------------------------------------------------------------------------- /src/external/catch2/tests/ExtraTests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/tests/ExtraTests/CMakeLists.txt -------------------------------------------------------------------------------- /src/external/catch2/tests/ExtraTests/ToDo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/tests/ExtraTests/ToDo.txt -------------------------------------------------------------------------------- /src/external/catch2/tests/SelfTest/Misc/invalid-test-names.input: -------------------------------------------------------------------------------- 1 | Test with special, characters in \" name 2 | -------------------------------------------------------------------------------- /src/external/catch2/tests/SelfTest/Misc/special-characters-in-file.input: -------------------------------------------------------------------------------- 1 | Test with special\, characters \"in name 2 | -------------------------------------------------------------------------------- /src/external/catch2/tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/tests/meson.build -------------------------------------------------------------------------------- /src/external/catch2/third_party/clara.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/third_party/clara.hpp -------------------------------------------------------------------------------- /src/external/catch2/tools/misc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/tools/misc/CMakeLists.txt -------------------------------------------------------------------------------- /src/external/catch2/tools/misc/coverage-helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/tools/misc/coverage-helper.cpp -------------------------------------------------------------------------------- /src/external/catch2/tools/scripts/approve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/catch2/tools/scripts/approve.py -------------------------------------------------------------------------------- /src/external/glad2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/glad2/CMakeLists.txt -------------------------------------------------------------------------------- /src/external/glad2/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/glad2/generate.sh -------------------------------------------------------------------------------- /src/external/glad2/include/EGL/eglplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/glad2/include/EGL/eglplatform.h -------------------------------------------------------------------------------- /src/external/glad2/include/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/glad2/include/KHR/khrplatform.h -------------------------------------------------------------------------------- /src/external/glad2/include/glad/egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/glad2/include/glad/egl.h -------------------------------------------------------------------------------- /src/external/glad2/include/glad/egl.h.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/glad2/include/glad/egl.h.license -------------------------------------------------------------------------------- /src/external/glad2/include/glad/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/glad2/include/glad/gl.h -------------------------------------------------------------------------------- /src/external/glad2/include/glad/gl.h.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/glad2/include/glad/gl.h.license -------------------------------------------------------------------------------- /src/external/glad2/include/glad/glx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/glad2/include/glad/glx.h -------------------------------------------------------------------------------- /src/external/glad2/include/glad/glx.h.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/glad2/include/glad/glx.h.license -------------------------------------------------------------------------------- /src/external/glad2/include/glad/wgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/glad2/include/glad/wgl.h -------------------------------------------------------------------------------- /src/external/glad2/include/glad/wgl.h.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/glad2/include/glad/wgl.h.license -------------------------------------------------------------------------------- /src/external/glad2/src/egl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/glad2/src/egl.c -------------------------------------------------------------------------------- /src/external/glad2/src/egl.c.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/glad2/src/egl.c.license -------------------------------------------------------------------------------- /src/external/glad2/src/gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/glad2/src/gl.c -------------------------------------------------------------------------------- /src/external/glad2/src/gl.c.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/glad2/src/gl.c.license -------------------------------------------------------------------------------- /src/external/glad2/src/glx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/glad2/src/glx.c -------------------------------------------------------------------------------- /src/external/glad2/src/glx.c.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/glad2/src/glx.c.license -------------------------------------------------------------------------------- /src/external/glad2/src/wgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/glad2/src/wgl.c -------------------------------------------------------------------------------- /src/external/glad2/src/wgl.c.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/glad2/src/wgl.c.license -------------------------------------------------------------------------------- /src/external/jnipp/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jnipp/CHANGELOG.md -------------------------------------------------------------------------------- /src/external/jnipp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jnipp/CMakeLists.txt -------------------------------------------------------------------------------- /src/external/jnipp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jnipp/LICENSE -------------------------------------------------------------------------------- /src/external/jnipp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jnipp/README.md -------------------------------------------------------------------------------- /src/external/jnipp/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jnipp/android/AndroidManifest.xml -------------------------------------------------------------------------------- /src/external/jnipp/android/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jnipp/android/CMakeLists.txt -------------------------------------------------------------------------------- /src/external/jnipp/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jnipp/build.gradle -------------------------------------------------------------------------------- /src/external/jnipp/changes/changes/pr.40.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jnipp/changes/changes/pr.40.md -------------------------------------------------------------------------------- /src/external/jnipp/changes/fixes/pr.49.md: -------------------------------------------------------------------------------- 1 | Do not allow exceptions to escape destructors. 2 | -------------------------------------------------------------------------------- /src/external/jnipp/jnipp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jnipp/jnipp.cpp -------------------------------------------------------------------------------- /src/external/jnipp/jnipp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jnipp/jnipp.h -------------------------------------------------------------------------------- /src/external/jnipp/jnipp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jnipp/jnipp.vcxproj -------------------------------------------------------------------------------- /src/external/jnipp/jnipp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jnipp/jnipp.vcxproj.filters -------------------------------------------------------------------------------- /src/external/jnipp/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jnipp/makefile -------------------------------------------------------------------------------- /src/external/jnipp/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jnipp/tests/CMakeLists.txt -------------------------------------------------------------------------------- /src/external/jnipp/tests/external_create.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jnipp/tests/external_create.cpp -------------------------------------------------------------------------------- /src/external/jnipp/tests/external_detach.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jnipp/tests/external_detach.cpp -------------------------------------------------------------------------------- /src/external/jnipp/tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jnipp/tests/main.cpp -------------------------------------------------------------------------------- /src/external/jnipp/tests/testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jnipp/tests/testing.h -------------------------------------------------------------------------------- /src/external/jnipp/tests/tests.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jnipp/tests/tests.vcxproj -------------------------------------------------------------------------------- /src/external/jnipp/tests/tests.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jnipp/tests/tests.vcxproj.filters -------------------------------------------------------------------------------- /src/external/jsoncpp/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/.clang-format -------------------------------------------------------------------------------- /src/external/jsoncpp/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/.clang-tidy -------------------------------------------------------------------------------- /src/external/jsoncpp/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/.gitattributes -------------------------------------------------------------------------------- /src/external/jsoncpp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/.gitignore -------------------------------------------------------------------------------- /src/external/jsoncpp/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/AUTHORS -------------------------------------------------------------------------------- /src/external/jsoncpp/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/BUILD.bazel -------------------------------------------------------------------------------- /src/external/jsoncpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/CMakeLists.txt -------------------------------------------------------------------------------- /src/external/jsoncpp/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/external/jsoncpp/CTestConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/CTestConfig.cmake -------------------------------------------------------------------------------- /src/external/jsoncpp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/LICENSE -------------------------------------------------------------------------------- /src/external/jsoncpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/README.md -------------------------------------------------------------------------------- /src/external/jsoncpp/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/SECURITY.md -------------------------------------------------------------------------------- /src/external/jsoncpp/amalgamate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/amalgamate.py -------------------------------------------------------------------------------- /src/external/jsoncpp/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/appveyor.yml -------------------------------------------------------------------------------- /src/external/jsoncpp/cmake/JoinPaths.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/cmake/JoinPaths.cmake -------------------------------------------------------------------------------- /src/external/jsoncpp/dev.makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/dev.makefile -------------------------------------------------------------------------------- /src/external/jsoncpp/devtools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/devtools/__init__.py -------------------------------------------------------------------------------- /src/external/jsoncpp/devtools/agent_vmw7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/devtools/agent_vmw7.json -------------------------------------------------------------------------------- /src/external/jsoncpp/devtools/agent_vmxp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/devtools/agent_vmxp.json -------------------------------------------------------------------------------- /src/external/jsoncpp/devtools/antglob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/devtools/antglob.py -------------------------------------------------------------------------------- /src/external/jsoncpp/devtools/batchbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/devtools/batchbuild.py -------------------------------------------------------------------------------- /src/external/jsoncpp/devtools/fixeol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/devtools/fixeol.py -------------------------------------------------------------------------------- /src/external/jsoncpp/devtools/licenseupdater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/devtools/licenseupdater.py -------------------------------------------------------------------------------- /src/external/jsoncpp/devtools/tarball.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/devtools/tarball.py -------------------------------------------------------------------------------- /src/external/jsoncpp/doc/doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/doc/doxyfile.in -------------------------------------------------------------------------------- /src/external/jsoncpp/doc/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/doc/footer.html -------------------------------------------------------------------------------- /src/external/jsoncpp/doc/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/doc/header.html -------------------------------------------------------------------------------- /src/external/jsoncpp/doc/jsoncpp.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/doc/jsoncpp.dox -------------------------------------------------------------------------------- /src/external/jsoncpp/doc/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/doc/readme.txt -------------------------------------------------------------------------------- /src/external/jsoncpp/doc/roadmap.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/doc/roadmap.dox -------------------------------------------------------------------------------- /src/external/jsoncpp/doc/web_doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/doc/web_doxyfile.in -------------------------------------------------------------------------------- /src/external/jsoncpp/doxybuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/doxybuild.py -------------------------------------------------------------------------------- /src/external/jsoncpp/example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/example/CMakeLists.txt -------------------------------------------------------------------------------- /src/external/jsoncpp/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/example/README.md -------------------------------------------------------------------------------- /src/external/jsoncpp/example/readFromStream/errorFormat.json: -------------------------------------------------------------------------------- 1 | { 2 | 1: "value" 3 | } -------------------------------------------------------------------------------- /src/external/jsoncpp/get_version.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/get_version.pl -------------------------------------------------------------------------------- /src/external/jsoncpp/include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/include/CMakeLists.txt -------------------------------------------------------------------------------- /src/external/jsoncpp/include/json/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/include/json/allocator.h -------------------------------------------------------------------------------- /src/external/jsoncpp/include/json/assertions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/include/json/assertions.h -------------------------------------------------------------------------------- /src/external/jsoncpp/include/json/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/include/json/config.h -------------------------------------------------------------------------------- /src/external/jsoncpp/include/json/forwards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/include/json/forwards.h -------------------------------------------------------------------------------- /src/external/jsoncpp/include/json/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/include/json/json.h -------------------------------------------------------------------------------- /src/external/jsoncpp/include/json/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/include/json/reader.h -------------------------------------------------------------------------------- /src/external/jsoncpp/include/json/value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/include/json/value.h -------------------------------------------------------------------------------- /src/external/jsoncpp/include/json/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/include/json/version.h -------------------------------------------------------------------------------- /src/external/jsoncpp/include/json/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/include/json/writer.h -------------------------------------------------------------------------------- /src/external/jsoncpp/jsoncppConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/jsoncppConfig.cmake.in -------------------------------------------------------------------------------- /src/external/jsoncpp/meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/meson_options.txt -------------------------------------------------------------------------------- /src/external/jsoncpp/pkg-config/jsoncpp.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/pkg-config/jsoncpp.pc.in -------------------------------------------------------------------------------- /src/external/jsoncpp/reformat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/reformat.sh -------------------------------------------------------------------------------- /src/external/jsoncpp/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/external/jsoncpp/src/jsontestrunner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/src/jsontestrunner/main.cpp -------------------------------------------------------------------------------- /src/external/jsoncpp/src/lib_json/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/src/lib_json/CMakeLists.txt -------------------------------------------------------------------------------- /src/external/jsoncpp/src/lib_json/json_tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/src/lib_json/json_tool.h -------------------------------------------------------------------------------- /src/external/jsoncpp/src/lib_json/json_value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/src/lib_json/json_value.cpp -------------------------------------------------------------------------------- /src/external/jsoncpp/src/test_lib_json/fuzz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/src/test_lib_json/fuzz.cpp -------------------------------------------------------------------------------- /src/external/jsoncpp/src/test_lib_json/fuzz.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/src/test_lib_json/fuzz.dict -------------------------------------------------------------------------------- /src/external/jsoncpp/src/test_lib_json/fuzz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/src/test_lib_json/fuzz.h -------------------------------------------------------------------------------- /src/external/jsoncpp/src/test_lib_json/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/src/test_lib_json/main.cpp -------------------------------------------------------------------------------- /src/external/jsoncpp/test/cleantests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/test/cleantests.py -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/fail_invalid_quote.json: -------------------------------------------------------------------------------- 1 | {'//this is bad JSON.'} -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/fail_strict_comment_03.json: -------------------------------------------------------------------------------- 1 | { 2 | "array" : [1, 2, 3 /* comments not allowed in strict mode */] 3 | } 4 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/fail_test_array_01.json: -------------------------------------------------------------------------------- 1 | [ 1 2 3] 2 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/fail_test_array_02.json: -------------------------------------------------------------------------------- 1 | [1,,] 2 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/fail_test_object_01.json: -------------------------------------------------------------------------------- 1 | { "count" : 1234,, } 2 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/fail_test_object_02.json: -------------------------------------------------------------------------------- 1 | {"one": 1 /* } */ { "two" : 2 } 2 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_array_01.expected: -------------------------------------------------------------------------------- 1 | .=[] 2 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_array_01.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_array_02.expected: -------------------------------------------------------------------------------- 1 | .=[] 2 | .[0]=1 3 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_array_02.json: -------------------------------------------------------------------------------- 1 | [1] 2 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_array_03.json: -------------------------------------------------------------------------------- 1 | [ 1, 2 , 3,4,5] 2 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_array_04.json: -------------------------------------------------------------------------------- 1 | [1, "abc" , 12.3, -4] 2 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_basic_01.expected: -------------------------------------------------------------------------------- 1 | .=123456789 2 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_basic_01.json: -------------------------------------------------------------------------------- 1 | 0123456789 2 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_basic_02.expected: -------------------------------------------------------------------------------- 1 | .=-123456789 2 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_basic_02.json: -------------------------------------------------------------------------------- 1 | -0123456789 2 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_basic_03.expected: -------------------------------------------------------------------------------- 1 | .=1.2345678 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_basic_03.json: -------------------------------------------------------------------------------- 1 | 1.2345678 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_basic_04.expected: -------------------------------------------------------------------------------- 1 | .="abcdef" 2 | 3 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_basic_04.json: -------------------------------------------------------------------------------- 1 | "abcdef" 2 | 3 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_basic_05.expected: -------------------------------------------------------------------------------- 1 | .=null 2 | 3 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_basic_05.json: -------------------------------------------------------------------------------- 1 | null 2 | 3 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_basic_06.expected: -------------------------------------------------------------------------------- 1 | .=true 2 | 3 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_basic_06.json: -------------------------------------------------------------------------------- 1 | true 2 | 3 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_basic_07.expected: -------------------------------------------------------------------------------- 1 | .=false 2 | 3 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_basic_07.json: -------------------------------------------------------------------------------- 1 | false 2 | 3 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_basic_08.expected: -------------------------------------------------------------------------------- 1 | // C++ style comment 2 | .=null 3 | 4 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_basic_08.json: -------------------------------------------------------------------------------- 1 | // C++ style comment 2 | null 3 | 4 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_basic_09.expected: -------------------------------------------------------------------------------- 1 | /* C style comment 2 | */ 3 | .=null 4 | 5 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_basic_09.json: -------------------------------------------------------------------------------- 1 | /* C style comment 2 | */ 3 | null 4 | 5 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_integer_01.expected: -------------------------------------------------------------------------------- 1 | // Max signed integer 2 | .=2147483647 3 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_integer_01.json: -------------------------------------------------------------------------------- 1 | // Max signed integer 2 | 2147483647 3 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_integer_02.expected: -------------------------------------------------------------------------------- 1 | // Min signed integer 2 | .=-2147483648 3 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_integer_02.json: -------------------------------------------------------------------------------- 1 | // Min signed integer 2 | -2147483648 3 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_integer_03.expected: -------------------------------------------------------------------------------- 1 | // Max unsigned integer 2 | .=4294967295 3 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_integer_03.json: -------------------------------------------------------------------------------- 1 | // Max unsigned integer 2 | 4294967295 3 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_integer_04.expected: -------------------------------------------------------------------------------- 1 | // Min unsigned integer 2 | .=0 3 | 4 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_integer_04.json: -------------------------------------------------------------------------------- 1 | // Min unsigned integer 2 | 0 3 | 4 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_integer_05.expected: -------------------------------------------------------------------------------- 1 | .=1 2 | 3 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_integer_05.json: -------------------------------------------------------------------------------- 1 | 1 2 | 3 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_integer_06_64bits.expected: -------------------------------------------------------------------------------- 1 | .=9223372036854775808 2 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_integer_06_64bits.json: -------------------------------------------------------------------------------- 1 | 9223372036854775808 2 | 3 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_integer_07_64bits.expected: -------------------------------------------------------------------------------- 1 | .=-9223372036854775808 2 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_integer_07_64bits.json: -------------------------------------------------------------------------------- 1 | -9223372036854775808 2 | 3 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_integer_08_64bits.expected: -------------------------------------------------------------------------------- 1 | .=18446744073709551615 2 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_integer_08_64bits.json: -------------------------------------------------------------------------------- 1 | 18446744073709551615 2 | 3 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_object_01.expected: -------------------------------------------------------------------------------- 1 | .={} 2 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_object_01.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_object_02.expected: -------------------------------------------------------------------------------- 1 | .={} 2 | .count=1234 3 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_object_02.json: -------------------------------------------------------------------------------- 1 | { "count" : 1234 } 2 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_object_03.expected: -------------------------------------------------------------------------------- 1 | .={} 2 | .attribute="random" 3 | .count=1234 4 | .name="test" 5 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_object_04.expected: -------------------------------------------------------------------------------- 1 | .={} 2 | .=1234 3 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_object_04.json: -------------------------------------------------------------------------------- 1 | { 2 | "" : 1234 3 | } 4 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_real_01.expected: -------------------------------------------------------------------------------- 1 | // 2^33 => out of integer range, switch to double 2 | .=8589934592 3 | 4 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_real_01.json: -------------------------------------------------------------------------------- 1 | // 2^33 => out of integer range, switch to double 2 | 8589934592 3 | 4 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_real_02.expected: -------------------------------------------------------------------------------- 1 | // -2^32 => out of signed integer range, switch to double 2 | .=-4294967295 3 | 4 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_real_02.json: -------------------------------------------------------------------------------- 1 | // -2^32 => out of signed integer range, switch to double 2 | -4294967295 3 | 4 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_real_03.expected: -------------------------------------------------------------------------------- 1 | // -2^32 => out of signed integer range, switch to double 2 | .=-4294967295 3 | 4 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_real_03.json: -------------------------------------------------------------------------------- 1 | // -2^32 => out of signed integer range, switch to double 2 | -4294967295 3 | 4 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_real_12.expected: -------------------------------------------------------------------------------- 1 | // 2^64 -> switch to double. 2 | .=1.844674407370955e+19 3 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_real_12.json: -------------------------------------------------------------------------------- 1 | // 2^64 -> switch to double. 2 | 18446744073709551616 3 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_string_01.expected: -------------------------------------------------------------------------------- 1 | .="!"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~" -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_string_01.json: -------------------------------------------------------------------------------- 1 | "!\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~" 2 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_string_03.expected: -------------------------------------------------------------------------------- 1 | .="http://jsoncpp.sourceforge.net/" -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_string_03.json: -------------------------------------------------------------------------------- 1 | "http:\/\/jsoncpp.sourceforge.net\/" 2 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_string_04.expected: -------------------------------------------------------------------------------- 1 | .=""abc\def"" 2 | 3 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_string_04.json: -------------------------------------------------------------------------------- 1 | "\"abc\\def\"" 2 | 3 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_string_unicode_01.expected: -------------------------------------------------------------------------------- 1 | .="a" 2 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_string_unicode_01.json: -------------------------------------------------------------------------------- 1 | "\u0061" -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_string_unicode_02.expected: -------------------------------------------------------------------------------- 1 | .="¢" 2 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_string_unicode_02.json: -------------------------------------------------------------------------------- 1 | "\u00A2" -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_string_unicode_03.expected: -------------------------------------------------------------------------------- 1 | .="€" 2 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_string_unicode_03.json: -------------------------------------------------------------------------------- 1 | "\u20AC" -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_string_unicode_04.expected: -------------------------------------------------------------------------------- 1 | .="𝄞" 2 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_string_unicode_04.json: -------------------------------------------------------------------------------- 1 | "\uD834\uDD1E" -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_string_unicode_05.expected: -------------------------------------------------------------------------------- 1 | .="Zażółć gęślą jaźń" 2 | 3 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/legacy_test_string_unicode_05.json: -------------------------------------------------------------------------------- 1 | "Zażółć gęślą jaźń" -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/test_array_08.expected: -------------------------------------------------------------------------------- 1 | .=[] 2 | .[0]=1 3 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/test_array_08.json: -------------------------------------------------------------------------------- 1 | [1,] 2 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/test_object_05.expected: -------------------------------------------------------------------------------- 1 | .={} 2 | .count=1234 3 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/data/test_object_05.json: -------------------------------------------------------------------------------- 1 | { "count" : 1234, } 2 | -------------------------------------------------------------------------------- /src/external/jsoncpp/test/generate_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/test/generate_expected.py -------------------------------------------------------------------------------- /src/external/jsoncpp/test/jsonchecker/fail1.json: -------------------------------------------------------------------------------- 1 | "A JSON payload should be an object or array, not a string." -------------------------------------------------------------------------------- /src/external/jsoncpp/test/jsonchecker/fail11.json: -------------------------------------------------------------------------------- 1 | {"Illegal expression": 1 + 2} -------------------------------------------------------------------------------- /src/external/jsoncpp/test/jsonchecker/fail12.json: -------------------------------------------------------------------------------- 1 | {"Illegal invocation": alert()} -------------------------------------------------------------------------------- /src/external/jsoncpp/test/jsonchecker/fail13.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot have leading zeroes": 013} -------------------------------------------------------------------------------- /src/external/jsoncpp/test/jsonchecker/fail14.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot be hex": 0x14} -------------------------------------------------------------------------------- /src/external/jsoncpp/test/jsonchecker/fail15.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \x15"] -------------------------------------------------------------------------------- /src/external/jsoncpp/test/jsonchecker/fail16.json: -------------------------------------------------------------------------------- 1 | [\naked] -------------------------------------------------------------------------------- /src/external/jsoncpp/test/jsonchecker/fail17.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \017"] -------------------------------------------------------------------------------- /src/external/jsoncpp/test/jsonchecker/fail19.json: -------------------------------------------------------------------------------- 1 | {"Missing colon" null} -------------------------------------------------------------------------------- /src/external/jsoncpp/test/jsonchecker/fail2.json: -------------------------------------------------------------------------------- 1 | ["Unclosed array" -------------------------------------------------------------------------------- /src/external/jsoncpp/test/jsonchecker/fail20.json: -------------------------------------------------------------------------------- 1 | {"Double colon":: null} -------------------------------------------------------------------------------- /src/external/jsoncpp/test/jsonchecker/fail21.json: -------------------------------------------------------------------------------- 1 | {"Comma instead of colon", null} -------------------------------------------------------------------------------- /src/external/jsoncpp/test/jsonchecker/fail22.json: -------------------------------------------------------------------------------- 1 | ["Colon instead of comma": false] -------------------------------------------------------------------------------- /src/external/jsoncpp/test/jsonchecker/fail23.json: -------------------------------------------------------------------------------- 1 | ["Bad value", truth] -------------------------------------------------------------------------------- /src/external/jsoncpp/test/jsonchecker/fail24.json: -------------------------------------------------------------------------------- 1 | ['single quote'] -------------------------------------------------------------------------------- /src/external/jsoncpp/test/jsonchecker/fail25.json: -------------------------------------------------------------------------------- 1 | [" tab character in string "] -------------------------------------------------------------------------------- /src/external/jsoncpp/test/jsonchecker/fail27.json: -------------------------------------------------------------------------------- 1 | ["line 2 | break"] -------------------------------------------------------------------------------- /src/external/jsoncpp/test/jsonchecker/fail28.json: -------------------------------------------------------------------------------- 1 | ["line\ 2 | break"] -------------------------------------------------------------------------------- /src/external/jsoncpp/test/jsonchecker/fail29.json: -------------------------------------------------------------------------------- 1 | [0e] -------------------------------------------------------------------------------- /src/external/jsoncpp/test/jsonchecker/fail3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/test/jsonchecker/fail3.json -------------------------------------------------------------------------------- /src/external/jsoncpp/test/jsonchecker/fail30.json: -------------------------------------------------------------------------------- 1 | [0e+] -------------------------------------------------------------------------------- /src/external/jsoncpp/test/jsonchecker/fail31.json: -------------------------------------------------------------------------------- 1 | [0e+-1] -------------------------------------------------------------------------------- /src/external/jsoncpp/test/jsonchecker/fail32.json: -------------------------------------------------------------------------------- 1 | {"Comma instead if closing brace": true, -------------------------------------------------------------------------------- /src/external/jsoncpp/test/jsonchecker/fail33.json: -------------------------------------------------------------------------------- 1 | ["mismatch"} -------------------------------------------------------------------------------- /src/external/jsoncpp/test/jsonchecker/fail4.json: -------------------------------------------------------------------------------- 1 | ["extra comma",] -------------------------------------------------------------------------------- /src/external/jsoncpp/test/jsonchecker/fail5.json: -------------------------------------------------------------------------------- 1 | ["double extra comma",,] -------------------------------------------------------------------------------- /src/external/jsoncpp/test/jsonchecker/fail6.json: -------------------------------------------------------------------------------- 1 | [ , "<-- missing value"] -------------------------------------------------------------------------------- /src/external/jsoncpp/test/jsonchecker/fail7.json: -------------------------------------------------------------------------------- 1 | ["Comma after the close"], -------------------------------------------------------------------------------- /src/external/jsoncpp/test/jsonchecker/fail8.json: -------------------------------------------------------------------------------- 1 | ["Extra close"]] -------------------------------------------------------------------------------- /src/external/jsoncpp/test/jsonchecker/fail9.json: -------------------------------------------------------------------------------- 1 | {"Extra comma": true,} -------------------------------------------------------------------------------- /src/external/jsoncpp/test/jsonchecker/pass1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/test/jsonchecker/pass1.json -------------------------------------------------------------------------------- /src/external/jsoncpp/test/jsonchecker/pass2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/test/jsonchecker/pass2.json -------------------------------------------------------------------------------- /src/external/jsoncpp/test/jsonchecker/pass3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/test/jsonchecker/pass3.json -------------------------------------------------------------------------------- /src/external/jsoncpp/test/jsonchecker/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/test/jsonchecker/readme.txt -------------------------------------------------------------------------------- /src/external/jsoncpp/test/pyjsontestrunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/test/pyjsontestrunner.py -------------------------------------------------------------------------------- /src/external/jsoncpp/test/runjsontests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/test/runjsontests.py -------------------------------------------------------------------------------- /src/external/jsoncpp/test/rununittests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/jsoncpp/test/rununittests.py -------------------------------------------------------------------------------- /src/external/jsoncpp/version.in: -------------------------------------------------------------------------------- 1 | @JSONCPP_VERSION@ 2 | -------------------------------------------------------------------------------- /src/external/metal-cpp/Foundation/Foundation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Foundation/Foundation.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Foundation/NSArray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Foundation/NSArray.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Foundation/NSBundle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Foundation/NSBundle.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Foundation/NSData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Foundation/NSData.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Foundation/NSDate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Foundation/NSDate.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Foundation/NSDefines.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Foundation/NSDefines.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Foundation/NSError.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Foundation/NSError.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Foundation/NSLock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Foundation/NSLock.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Foundation/NSNumber.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Foundation/NSNumber.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Foundation/NSObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Foundation/NSObject.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Foundation/NSPrivate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Foundation/NSPrivate.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Foundation/NSRange.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Foundation/NSRange.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Foundation/NSSet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Foundation/NSSet.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Foundation/NSString.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Foundation/NSString.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Foundation/NSTypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Foundation/NSTypes.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Foundation/NSURL.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Foundation/NSURL.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/LICENSE.txt -------------------------------------------------------------------------------- /src/external/metal-cpp/Metal/MTLArgument.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Metal/MTLArgument.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Metal/MTLBlitPass.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Metal/MTLBlitPass.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Metal/MTLBuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Metal/MTLBuffer.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Metal/MTLCaptureScope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Metal/MTLCaptureScope.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Metal/MTLCommandQueue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Metal/MTLCommandQueue.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Metal/MTLComputePass.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Metal/MTLComputePass.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Metal/MTLCounters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Metal/MTLCounters.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Metal/MTLDefines.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Metal/MTLDefines.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Metal/MTLDepthStencil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Metal/MTLDepthStencil.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Metal/MTLDevice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Metal/MTLDevice.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Metal/MTLDrawable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Metal/MTLDrawable.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Metal/MTLEvent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Metal/MTLEvent.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Metal/MTLFence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Metal/MTLFence.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Metal/MTLFunctionLog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Metal/MTLFunctionLog.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Metal/MTLHeaderBridge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Metal/MTLHeaderBridge.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Metal/MTLHeap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Metal/MTLHeap.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Metal/MTLIOCompressor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Metal/MTLIOCompressor.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Metal/MTLLibrary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Metal/MTLLibrary.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Metal/MTLPipeline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Metal/MTLPipeline.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Metal/MTLPixelFormat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Metal/MTLPixelFormat.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Metal/MTLPrivate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Metal/MTLPrivate.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Metal/MTLRenderPass.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Metal/MTLRenderPass.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Metal/MTLResource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Metal/MTLResource.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Metal/MTLSampler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Metal/MTLSampler.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Metal/MTLTexture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Metal/MTLTexture.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Metal/MTLTypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Metal/MTLTypes.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Metal/MTLVersion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Metal/MTLVersion.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/Metal/Metal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/Metal/Metal.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/QuartzCore/CADefines.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/QuartzCore/CADefines.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/QuartzCore/CAPrivate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/QuartzCore/CAPrivate.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/QuartzCore/QuartzCore.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/QuartzCore/QuartzCore.hpp -------------------------------------------------------------------------------- /src/external/metal-cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/metal-cpp/README.md -------------------------------------------------------------------------------- /src/external/sanitizers-cmake/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/sanitizers-cmake/LICENSE -------------------------------------------------------------------------------- /src/external/sanitizers-cmake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/sanitizers-cmake/README.md -------------------------------------------------------------------------------- /src/external/sanitizers-cmake/cmake/asan-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/sanitizers-cmake/cmake/asan-wrapper -------------------------------------------------------------------------------- /src/external/span-lite/include/nonstd/span.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/external/span-lite/include/nonstd/span.hpp -------------------------------------------------------------------------------- /src/loader/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/loader/.gitignore -------------------------------------------------------------------------------- /src/loader/AndroidManifest.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/loader/AndroidManifest.xml.in -------------------------------------------------------------------------------- /src/loader/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/loader/CMakeLists.txt -------------------------------------------------------------------------------- /src/loader/OpenXRConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/loader/OpenXRConfig.cmake.in -------------------------------------------------------------------------------- /src/loader/abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/loader/abi.json -------------------------------------------------------------------------------- /src/loader/abi.json.license: -------------------------------------------------------------------------------- 1 | Copyright (c) 2020-2025 The Khronos Group Inc. 2 | 3 | SPDX-License-Identifier: Apache-2.0 OR MIT 4 | -------------------------------------------------------------------------------- /src/loader/additional_manifest.mf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/loader/additional_manifest.mf.in -------------------------------------------------------------------------------- /src/loader/additional_manifest.mf.in.license: -------------------------------------------------------------------------------- 1 | Copyright (c) 2023-2025 The Khronos Group Inc. 2 | SPDX-License-Identifier: Apache-2.0 OR MIT 3 | -------------------------------------------------------------------------------- /src/loader/android_utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/loader/android_utilities.cpp -------------------------------------------------------------------------------- /src/loader/android_utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/loader/android_utilities.h -------------------------------------------------------------------------------- /src/loader/api_layer_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/loader/api_layer_interface.cpp -------------------------------------------------------------------------------- /src/loader/api_layer_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/loader/api_layer_interface.hpp -------------------------------------------------------------------------------- /src/loader/exception_handling.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/loader/exception_handling.hpp -------------------------------------------------------------------------------- /src/loader/loader.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/loader/loader.rc -------------------------------------------------------------------------------- /src/loader/loader_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/loader/loader_core.cpp -------------------------------------------------------------------------------- /src/loader/loader_init_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/loader/loader_init_data.cpp -------------------------------------------------------------------------------- /src/loader/loader_init_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/loader/loader_init_data.hpp -------------------------------------------------------------------------------- /src/loader/loader_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/loader/loader_instance.cpp -------------------------------------------------------------------------------- /src/loader/loader_instance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/loader/loader_instance.hpp -------------------------------------------------------------------------------- /src/loader/loader_logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/loader/loader_logger.cpp -------------------------------------------------------------------------------- /src/loader/loader_logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/loader/loader_logger.hpp -------------------------------------------------------------------------------- /src/loader/loader_logger_recorders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/loader/loader_logger_recorders.cpp -------------------------------------------------------------------------------- /src/loader/loader_logger_recorders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/loader/loader_logger_recorders.hpp -------------------------------------------------------------------------------- /src/loader/loader_platform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/loader/loader_platform.hpp -------------------------------------------------------------------------------- /src/loader/loader_properties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/loader/loader_properties.cpp -------------------------------------------------------------------------------- /src/loader/loader_properties.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/loader/loader_properties.hpp -------------------------------------------------------------------------------- /src/loader/manifest_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/loader/manifest_file.cpp -------------------------------------------------------------------------------- /src/loader/manifest_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/loader/manifest_file.hpp -------------------------------------------------------------------------------- /src/loader/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/loader/module.json -------------------------------------------------------------------------------- /src/loader/module.json.license: -------------------------------------------------------------------------------- 1 | Copyright (c) 2020-2025 The Khronos Group Inc. 2 | 3 | SPDX-License-Identifier: Apache-2.0 OR MIT 4 | -------------------------------------------------------------------------------- /src/loader/openxr-loader.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/loader/openxr-loader.def -------------------------------------------------------------------------------- /src/loader/openxr-loader.expsym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/loader/openxr-loader.expsym -------------------------------------------------------------------------------- /src/loader/openxr-loader.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/loader/openxr-loader.map -------------------------------------------------------------------------------- /src/loader/openxr.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/loader/openxr.pc.in -------------------------------------------------------------------------------- /src/loader/openxr_loader_for_android.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/loader/openxr_loader_for_android.pom -------------------------------------------------------------------------------- /src/loader/prefab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/loader/prefab.json -------------------------------------------------------------------------------- /src/loader/prefab.json.license: -------------------------------------------------------------------------------- 1 | Copyright (c) 2020-2025 The Khronos Group Inc. 2 | 3 | SPDX-License-Identifier: Apache-2.0 OR MIT 4 | -------------------------------------------------------------------------------- /src/loader/runtime_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/loader/runtime_interface.cpp -------------------------------------------------------------------------------- /src/loader/runtime_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/loader/runtime_interface.hpp -------------------------------------------------------------------------------- /src/loader/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/loader/settings.gradle -------------------------------------------------------------------------------- /src/scripts/api_dump_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/scripts/api_dump_generator.py -------------------------------------------------------------------------------- /src/scripts/automatic_source_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/scripts/automatic_source_generator.py -------------------------------------------------------------------------------- /src/scripts/generate_api_layer_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/scripts/generate_api_layer_manifest.py -------------------------------------------------------------------------------- /src/scripts/generate_runtime_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/scripts/generate_runtime_manifest.py -------------------------------------------------------------------------------- /src/scripts/interaction_profile_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/scripts/interaction_profile_processor.py -------------------------------------------------------------------------------- /src/scripts/loader_source_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/scripts/loader_source_generator.py -------------------------------------------------------------------------------- /src/scripts/src_genxr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/scripts/src_genxr.py -------------------------------------------------------------------------------- /src/scripts/utility_source_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/scripts/utility_source_generator.py -------------------------------------------------------------------------------- /src/scripts/validation_layer_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/scripts/validation_layer_generator.py -------------------------------------------------------------------------------- /src/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/c_compile_test/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/c_compile_test/AndroidManifest.xml -------------------------------------------------------------------------------- /src/tests/c_compile_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/c_compile_test/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/c_compile_test/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/c_compile_test/build.gradle -------------------------------------------------------------------------------- /src/tests/c_compile_test/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/c_compile_test/gradlew -------------------------------------------------------------------------------- /src/tests/c_compile_test/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/c_compile_test/gradlew.bat -------------------------------------------------------------------------------- /src/tests/c_compile_test/gradlew.bat.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/c_compile_test/gradlew.bat.license -------------------------------------------------------------------------------- /src/tests/c_compile_test/gradlew.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/c_compile_test/gradlew.license -------------------------------------------------------------------------------- /src/tests/c_compile_test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/c_compile_test/main.c -------------------------------------------------------------------------------- /src/tests/c_compile_test/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/c_compile_test/settings.gradle -------------------------------------------------------------------------------- /src/tests/hello_xr/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/AndroidManifest.xml -------------------------------------------------------------------------------- /src/tests/hello_xr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/hello_xr/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/build.gradle -------------------------------------------------------------------------------- /src/tests/hello_xr/check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/check.h -------------------------------------------------------------------------------- /src/tests/hello_xr/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/common.h -------------------------------------------------------------------------------- /src/tests/hello_xr/d3d12_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/d3d12_utils.cpp -------------------------------------------------------------------------------- /src/tests/hello_xr/d3d12_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/d3d12_utils.h -------------------------------------------------------------------------------- /src/tests/hello_xr/d3d_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/d3d_common.cpp -------------------------------------------------------------------------------- /src/tests/hello_xr/d3d_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/d3d_common.h -------------------------------------------------------------------------------- /src/tests/hello_xr/geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/geometry.h -------------------------------------------------------------------------------- /src/tests/hello_xr/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/gradle.properties -------------------------------------------------------------------------------- /src/tests/hello_xr/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/gradlew -------------------------------------------------------------------------------- /src/tests/hello_xr/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/gradlew.bat -------------------------------------------------------------------------------- /src/tests/hello_xr/gradlew.bat.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/gradlew.bat.license -------------------------------------------------------------------------------- /src/tests/hello_xr/gradlew.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/gradlew.license -------------------------------------------------------------------------------- /src/tests/hello_xr/graphicsapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/graphicsapi.h -------------------------------------------------------------------------------- /src/tests/hello_xr/graphicsplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/graphicsplugin.h -------------------------------------------------------------------------------- /src/tests/hello_xr/graphicsplugin_d3d11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/graphicsplugin_d3d11.cpp -------------------------------------------------------------------------------- /src/tests/hello_xr/graphicsplugin_d3d12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/graphicsplugin_d3d12.cpp -------------------------------------------------------------------------------- /src/tests/hello_xr/graphicsplugin_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/graphicsplugin_factory.cpp -------------------------------------------------------------------------------- /src/tests/hello_xr/graphicsplugin_metal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/graphicsplugin_metal.cpp -------------------------------------------------------------------------------- /src/tests/hello_xr/graphicsplugin_opengl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/graphicsplugin_opengl.cpp -------------------------------------------------------------------------------- /src/tests/hello_xr/graphicsplugin_opengles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/graphicsplugin_opengles.cpp -------------------------------------------------------------------------------- /src/tests/hello_xr/graphicsplugin_vulkan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/graphicsplugin_vulkan.cpp -------------------------------------------------------------------------------- /src/tests/hello_xr/hello_xr.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/hello_xr.1 -------------------------------------------------------------------------------- /src/tests/hello_xr/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/logger.cpp -------------------------------------------------------------------------------- /src/tests/hello_xr/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/logger.h -------------------------------------------------------------------------------- /src/tests/hello_xr/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/main.cpp -------------------------------------------------------------------------------- /src/tests/hello_xr/openxr_program.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/openxr_program.cpp -------------------------------------------------------------------------------- /src/tests/hello_xr/openxr_program.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/openxr_program.h -------------------------------------------------------------------------------- /src/tests/hello_xr/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/options.h -------------------------------------------------------------------------------- /src/tests/hello_xr/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/pch.cpp -------------------------------------------------------------------------------- /src/tests/hello_xr/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/pch.h -------------------------------------------------------------------------------- /src/tests/hello_xr/platformdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/platformdata.h -------------------------------------------------------------------------------- /src/tests/hello_xr/platformplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/platformplugin.h -------------------------------------------------------------------------------- /src/tests/hello_xr/platformplugin_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/platformplugin_android.cpp -------------------------------------------------------------------------------- /src/tests/hello_xr/platformplugin_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/platformplugin_factory.cpp -------------------------------------------------------------------------------- /src/tests/hello_xr/platformplugin_posix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/platformplugin_posix.cpp -------------------------------------------------------------------------------- /src/tests/hello_xr/platformplugin_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/platformplugin_win32.cpp -------------------------------------------------------------------------------- /src/tests/hello_xr/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/settings.gradle -------------------------------------------------------------------------------- /src/tests/hello_xr/swapchain_image_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/swapchain_image_data.cpp -------------------------------------------------------------------------------- /src/tests/hello_xr/swapchain_image_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/swapchain_image_data.h -------------------------------------------------------------------------------- /src/tests/hello_xr/vulkan_shaders/frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/vulkan_shaders/frag.glsl -------------------------------------------------------------------------------- /src/tests/hello_xr/vulkan_shaders/frag.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/vulkan_shaders/frag.spv -------------------------------------------------------------------------------- /src/tests/hello_xr/vulkan_shaders/frag.spv.license: -------------------------------------------------------------------------------- 1 | Copyright (c) 2017-2025 The Khronos Group Inc. 2 | 3 | SPDX-License-Identifier: Apache-2.0 4 | -------------------------------------------------------------------------------- /src/tests/hello_xr/vulkan_shaders/vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/vulkan_shaders/vert.glsl -------------------------------------------------------------------------------- /src/tests/hello_xr/vulkan_shaders/vert.spv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/vulkan_shaders/vert.spv -------------------------------------------------------------------------------- /src/tests/hello_xr/vulkan_shaders/vert.spv.license: -------------------------------------------------------------------------------- 1 | Copyright (c) 2017-2025 The Khronos Group Inc. 2 | 3 | SPDX-License-Identifier: Apache-2.0 4 | -------------------------------------------------------------------------------- /src/tests/hello_xr/vulkan_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/hello_xr/vulkan_utils.h -------------------------------------------------------------------------------- /src/tests/list/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/list/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/list/list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/list/list.cpp -------------------------------------------------------------------------------- /src/tests/list/openxr_runtime_list.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/list/openxr_runtime_list.1 -------------------------------------------------------------------------------- /src/tests/list_json/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/list_json/AndroidManifest.xml -------------------------------------------------------------------------------- /src/tests/list_json/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/list_json/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/list_json/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/list_json/build.gradle -------------------------------------------------------------------------------- /src/tests/list_json/list_json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/list_json/list_json.cpp -------------------------------------------------------------------------------- /src/tests/list_json/openxr_runtime_list_json.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/list_json/openxr_runtime_list_json.1 -------------------------------------------------------------------------------- /src/tests/list_json/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/list_json/settings.gradle -------------------------------------------------------------------------------- /src/tests/loader_test/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/loader_test/AndroidManifest.xml -------------------------------------------------------------------------------- /src/tests/loader_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/loader_test/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/loader_test/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/loader_test/build.gradle -------------------------------------------------------------------------------- /src/tests/loader_test/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/loader_test/gradlew -------------------------------------------------------------------------------- /src/tests/loader_test/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/loader_test/gradlew.bat -------------------------------------------------------------------------------- /src/tests/loader_test/gradlew.bat.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/loader_test/gradlew.bat.license -------------------------------------------------------------------------------- /src/tests/loader_test/gradlew.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/loader_test/gradlew.license -------------------------------------------------------------------------------- /src/tests/loader_test/loader_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/loader_test/loader_test.cpp -------------------------------------------------------------------------------- /src/tests/loader_test/loader_test_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/loader_test/loader_test_utils.cpp -------------------------------------------------------------------------------- /src/tests/loader_test/loader_test_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/loader_test/loader_test_utils.hpp -------------------------------------------------------------------------------- /src/tests/loader_test/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/loader_test/settings.gradle -------------------------------------------------------------------------------- /src/tests/loader_test/test_layers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/loader_test/test_layers/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/loader_test/test_layers/layer_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/loader_test/test_layers/layer_test.cpp -------------------------------------------------------------------------------- /src/tests/test_runtimes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/test_runtimes/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/test_runtimes/runtime_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/test_runtimes/runtime_test.cpp -------------------------------------------------------------------------------- /src/tests/test_runtimes/test_runtime.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/test_runtimes/test_runtime.def -------------------------------------------------------------------------------- /src/tests/test_runtimes/test_runtime.expsym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/test_runtimes/test_runtime.expsym -------------------------------------------------------------------------------- /src/tests/test_runtimes/test_runtime.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/tests/test_runtimes/test_runtime.map -------------------------------------------------------------------------------- /src/version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/version.cmake -------------------------------------------------------------------------------- /src/version.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/src/version.gradle -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/OpenXR-SDK-Source/HEAD/tox.ini --------------------------------------------------------------------------------