Skip to content

Commit

Permalink
1.0.29 update
Browse files Browse the repository at this point in the history
  • Loading branch information
Ybalrid committed Aug 28, 2023
1 parent 77f2e7b commit 4b0f4bf
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion OpenXR-SDK-Source
Submodule OpenXR-SDK-Source updated 89 files
+1 −1 .appveyor.yml
+1 −1 .azure-pipelines/nuget/NugetTemplate/build/native/OpenXR.Loader.props
+1 −1 .azure-pipelines/nuget/NugetTemplate/build/native/OpenXR.Loader.targets
+1 −1 .azure-pipelines/nuget/stage_nuget.ps1
+1 −1 .azure-pipelines/shared/generate_windows_matrix_build.py
+1 −1 .azure-pipelines/shared/install_vulkan.ps1
+1 −1 .azure-pipelines/shared/organize_windows_artifacts.py
+1 −1 .azure-pipelines/shared/print_windows_artifact_names.py
+1 −1 .azure-pipelines/shared/shared.py
+4 −1 .git-blame-ignore-revs
+1 −1 .github/scripts/generate_windows_matrix_build.py
+1 −1 .github/scripts/shared.py
+1 −99 .github/workflows/android.yml
+32 −21 .github/workflows/windows-matrix.yml
+1 −0 .gitignore
+13 −15 .reuse/dep5
+94 −0 CHANGELOG.SDK.md
+2 −0 README.md
+2 −0 github/sdk/README.md
+2 −0 maintainer-scripts/archive-sdk.sh
+46 −5 maintainer-scripts/build-aar.sh
+1 −1 maintainer-scripts/common.sh
+3 −15 specification/Makefile
+12 −12 specification/loader/api_layer.adoc
+5 −2 specification/loader/design.adoc
+10 −2 specification/loader/loader.adoc
+1 −1 specification/loader/overview.adoc
+161 −46 specification/loader/runtime.adoc
+229 −6 specification/registry/xr.xml
+2 −0 specification/scripts/genRef.py
+2 −0 specification/scripts/genxr.py
+8 −7 specification/scripts/spec-macros/extension.rb
+2 −0 specification/scripts/validitygenerator.py
+1 −1 specification/scripts/xrconventions.py
+25 −9 src/CMakeLists.txt
+19 −4 src/api_layers/CMakeLists.txt
+21 −15 src/api_layers/core_validation.cpp
+1 −0 src/common/gfxwrapper_opengl.c
+27 −29 src/common/gfxwrapper_opengl.h
+69 −15 src/common/platform_utils.hpp
+4 −2 src/common/xr_dependencies.h
+12 −8 src/common/xr_linear.h
+1 −1 src/loader/.gitignore
+5 −3 src/loader/AndroidManifest.xml
+4 −2 src/loader/AndroidManifest.xml.in
+6 −6 src/loader/CMakeLists.txt
+3 −2 src/loader/abi.json.license
+8 −1 src/loader/loader.rc
+1 −1 src/loader/loader_core.cpp
+1 −1 src/loader/loader_instance.cpp
+51 −26 src/loader/manifest_file.cpp
+3 −2 src/loader/module.json.license
+0 −5 src/loader/openxr-loader.def
+4 −0 src/loader/openxr.pc.in
+0 −3 src/loader/openxr.pc.in.license
+6 −5 src/loader/openxr_loader_for_android.pom
+3 −2 src/loader/prefab.json.license
+19 −26 src/loader/runtime_interface.cpp
+1 −1 src/scripts/generate_api_layer_manifest.py
+3 −1 src/scripts/loader_source_generator.py
+24 −30 src/scripts/src_genxr.py
+45 −9 src/scripts/utility_source_generator.py
+1 −1 src/scripts/validation_layer_generator.py
+3 −2 src/tests/CMakeLists.txt
+74 −0 src/tests/c_compile_test/AndroidManifest.xml
+14 −5 src/tests/c_compile_test/CMakeLists.txt
+72 −0 src/tests/c_compile_test/build.gradle
+27 −0 src/tests/c_compile_test/main.c
+5 −1 src/tests/hello_xr/AndroidManifest.xml
+2 −3 src/tests/hello_xr/CMakeLists.txt
+1 −1 src/tests/hello_xr/android_resources/values/ic_helloxr_launcher_background.xml
+21 −0 src/tests/hello_xr/build.gradle
+1 −1 src/tests/hello_xr/d3d_common.cpp
+1 −1 src/tests/hello_xr/gradle.properties
+1 −1 src/tests/hello_xr/graphicsplugin_d3d11.cpp
+1 −1 src/tests/hello_xr/graphicsplugin_d3d12.cpp
+4 −4 src/tests/hello_xr/graphicsplugin_factory.cpp
+12 −2 src/tests/hello_xr/graphicsplugin_vulkan.cpp
+4 −0 src/tests/hello_xr/pch.h
+1 −1 src/tests/hello_xr/settings.gradle
+19 −2 src/tests/list_json/AndroidManifest.xml
+1 −6 src/tests/list_json/CMakeLists.txt
+72 −0 src/tests/list_json/build.gradle
+21 −1,351 src/tests/loader_test/loader_test.cpp
+0 −4 src/tests/loader_test/loader_test_utils.cpp
+0 −5 src/tests/loader_test/test_layers/XrApiLayer_test.def
+0 −5 src/tests/loader_test/test_runtimes/test_runtime.def
+33 −14 src/version.cmake
+20 −6 src/version.gradle
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ![XR purple cowboy emoji](./resources/XR_wranglerx40.png) XREW [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

*generated version commited under /generated/xrew.h : OpenXR 1.0.28 Grab the raw header file here : [xrew.h](https://raw.githubusercontent.com/LIV/XREW/master/generated/xrew.h)*
*generated version commited under /generated/xrew.h : OpenXR 1.0.29 Grab the raw header file here : [xrew.h](https://raw.githubusercontent.com/LIV/XREW/master/generated/xrew.h)*

XREW is a single-header OpenXR Extension Wrangler, generated from the [OpenXR registry](https://github.com/KhronosGroup/OpenXR-SDK-Source/blob/master/specification/registry/xr.xml)

Expand Down
10 changes: 7 additions & 3 deletions generated/xrew.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This file is autogenerated by XREW, the OpenXR Extension Wrangler. Do not modify!
// Timestamp : 2023-07-11T07:37:57.762725
// OpenXR Version : 1.0.28
// Timestamp : 2023-08-28T16:00:45.851621
// OpenXR Version : 1.0.29


/*
Expand Down Expand Up @@ -38,7 +38,7 @@ extern "C"
{
#endif

#define XREW_GENERATED_VERSION XR_MAKE_VERSION(1, 0, 28)
#define XREW_GENERATED_VERSION XR_MAKE_VERSION(1, 0, 29)
#define XREW_GET_FUN(x) x

// OpenXR 1.0 Core API:
Expand Down Expand Up @@ -171,6 +171,7 @@ static PFN_xrDestroyEyeTrackerFB __xrew_xrDestroyEyeTrackerFB = NULL;
static PFN_xrGetEyeGazesFB __xrew_xrGetEyeGazesFB = NULL;
static PFN_xrPassthroughLayerSetKeyboardHandsIntensityFB __xrew_xrPassthroughLayerSetKeyboardHandsIntensityFB = NULL;
static PFN_xrGetDeviceSampleRateFB __xrew_xrGetDeviceSampleRateFB = NULL;
static PFN_xrGetPassthroughPreferencesMETA __xrew_xrGetPassthroughPreferencesMETA = NULL;
static PFN_xrCreateVirtualKeyboardMETA __xrew_xrCreateVirtualKeyboardMETA = NULL;
static PFN_xrDestroyVirtualKeyboardMETA __xrew_xrDestroyVirtualKeyboardMETA = NULL;
static PFN_xrCreateVirtualKeyboardSpaceMETA __xrew_xrCreateVirtualKeyboardSpaceMETA = NULL;
Expand Down Expand Up @@ -395,6 +396,7 @@ static XrBool32 xrewInit(XrInstance instance)
xrGetInstanceProcAddr(instance, "xrGetEyeGazesFB", (PFN_xrVoidFunction *) &__xrew_xrGetEyeGazesFB);
xrGetInstanceProcAddr(instance, "xrPassthroughLayerSetKeyboardHandsIntensityFB", (PFN_xrVoidFunction *) &__xrew_xrPassthroughLayerSetKeyboardHandsIntensityFB);
xrGetInstanceProcAddr(instance, "xrGetDeviceSampleRateFB", (PFN_xrVoidFunction *) &__xrew_xrGetDeviceSampleRateFB);
xrGetInstanceProcAddr(instance, "xrGetPassthroughPreferencesMETA", (PFN_xrVoidFunction *) &__xrew_xrGetPassthroughPreferencesMETA);
xrGetInstanceProcAddr(instance, "xrCreateVirtualKeyboardMETA", (PFN_xrVoidFunction *) &__xrew_xrCreateVirtualKeyboardMETA);
xrGetInstanceProcAddr(instance, "xrDestroyVirtualKeyboardMETA", (PFN_xrVoidFunction *) &__xrew_xrDestroyVirtualKeyboardMETA);
xrGetInstanceProcAddr(instance, "xrCreateVirtualKeyboardSpaceMETA", (PFN_xrVoidFunction *) &__xrew_xrCreateVirtualKeyboardSpaceMETA);
Expand Down Expand Up @@ -615,6 +617,7 @@ static void xrewQuit()
__xrew_xrGetEyeGazesFB = NULL;
__xrew_xrPassthroughLayerSetKeyboardHandsIntensityFB = NULL;
__xrew_xrGetDeviceSampleRateFB = NULL;
__xrew_xrGetPassthroughPreferencesMETA = NULL;
__xrew_xrCreateVirtualKeyboardMETA = NULL;
__xrew_xrDestroyVirtualKeyboardMETA = NULL;
__xrew_xrCreateVirtualKeyboardSpaceMETA = NULL;
Expand Down Expand Up @@ -832,6 +835,7 @@ static void xrewQuit()
#define xrGetEyeGazesFB XREW_GET_FUN(__xrew_xrGetEyeGazesFB)
#define xrPassthroughLayerSetKeyboardHandsIntensityFB XREW_GET_FUN(__xrew_xrPassthroughLayerSetKeyboardHandsIntensityFB)
#define xrGetDeviceSampleRateFB XREW_GET_FUN(__xrew_xrGetDeviceSampleRateFB)
#define xrGetPassthroughPreferencesMETA XREW_GET_FUN(__xrew_xrGetPassthroughPreferencesMETA)
#define xrCreateVirtualKeyboardMETA XREW_GET_FUN(__xrew_xrCreateVirtualKeyboardMETA)
#define xrDestroyVirtualKeyboardMETA XREW_GET_FUN(__xrew_xrDestroyVirtualKeyboardMETA)
#define xrCreateVirtualKeyboardSpaceMETA XREW_GET_FUN(__xrew_xrCreateVirtualKeyboardSpaceMETA)
Expand Down

0 comments on commit 4b0f4bf

Please sign in to comment.