Skip to content

Commit

Permalink
v1.0.25
Browse files Browse the repository at this point in the history
  • Loading branch information
Ybalrid committed Oct 7, 2022
1 parent f85a553 commit e479bfa
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion OpenXR-SDK-Source
Submodule OpenXR-SDK-Source updated 74 files
+1 −1 .appveyor.yml
+2 −1 .gitattributes
+1 −0 .gitignore
+5 −5 .reuse/dep5
+86 −0 CHANGELOG.SDK.md
+10 −7 maintainer-scripts/build-aar.sh
+1 −4 specification/.gitignore
+149 −100 specification/Makefile
+34 −11 specification/README.md
+22 −5 specification/loader/api_layer.adoc
+5 −3 specification/loader/appendicies.adoc
+3 −2 specification/loader/application.adoc
+185 −69 specification/registry/xr.xml
+11 −0 specification/scripts/apiconventions.py
+84 −40 specification/scripts/cgenerator.py
+124 −32 specification/scripts/docgenerator.py
+180 −0 specification/scripts/extdependency.py
+225 −132 specification/scripts/extensionmetadocgenerator.py
+1 −1 specification/scripts/extract_code.py
+287 −73 specification/scripts/genRef.py
+13 −13 specification/scripts/genanchorlinks.py
+272 −49 specification/scripts/generator.py
+82 −40 specification/scripts/genxr.py
+3 −11 specification/scripts/hostsyncgenerator.py
+0 −249 specification/scripts/make_ext_dependency.py
+1 −1 specification/scripts/pdf_chapter_diff.py
+67 −237 specification/scripts/pygenerator.py
+18 −33 specification/scripts/reflib.py
+223 −77 specification/scripts/reflow.py
+0 −3 specification/scripts/reflow_count.py
+0 −2 specification/scripts/reflow_count.py.license
+505 −165 specification/scripts/reg.py
+120 −0 specification/scripts/rubygenerator.py
+389 −0 specification/scripts/scriptgenerator.py
+1 −1 specification/scripts/spec_tools/attributes.py
+21 −2 specification/scripts/spec_tools/consistency_tools.py
+59 −16 specification/scripts/spec_tools/conventions.py
+41 −13 specification/scripts/spec_tools/macro_checker_file.py
+1 −1 specification/scripts/spec_tools/util.py
+1 −1 specification/scripts/spec_tools/validity.py
+10 −10 specification/scripts/test_check_spec_links.py
+3 −3 specification/scripts/test_check_spec_links_api_specific.py
+27 −27 specification/scripts/validitygenerator.py
+6 −0 specification/scripts/vuidCounts.py
+1 −1 specification/scripts/xml_consistency.py
+43 −17 specification/scripts/xrconventions.py
+1 −0 src/.gitignore
+2 −0 src/CMakeLists.txt
+6 −3 src/api_layers/core_validation.cpp
+33 −0 src/common/unique_asset.h
+2 −1 src/loader/CMakeLists.txt
+0 −1 src/loader/api_layer_interface.cpp
+3 −2 src/loader/build.gradle
+3 −3 src/loader/loader_core.cpp
+109 −11 src/loader/manifest_file.cpp
+14 −0 src/loader/manifest_file.hpp
+37 −0 src/loader/runtime_interface.cpp
+2 −0 src/loader/runtime_interface.hpp
+0 −11 src/scripts/automatic_source_generator.py
+79 −58 src/scripts/src_genxr.py
+3 −0 src/tests/hello_xr/graphicsplugin.h
+3 −1 src/tests/hello_xr/graphicsplugin_d3d11.cpp
+3 −1 src/tests/hello_xr/graphicsplugin_d3d12.cpp
+3 −1 src/tests/hello_xr/graphicsplugin_opengl.cpp
+3 −1 src/tests/hello_xr/graphicsplugin_opengles.cpp
+5 −3 src/tests/hello_xr/graphicsplugin_vulkan.cpp
+18 −0 src/tests/hello_xr/main.cpp
+37 −14 src/tests/hello_xr/openxr_program.cpp
+7 −2 src/tests/hello_xr/openxr_program.h
+18 −0 src/tests/hello_xr/options.h
+3 −0 src/tests/hello_xr/platformplugin.h
+2 −0 src/tests/hello_xr/platformplugin_android.cpp
+2 −0 src/tests/hello_xr/platformplugin_win32.cpp
+2 −0 src/tests/hello_xr/platformplugin_xlib.cpp
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.24 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.25 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
6 changes: 3 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 : 2022-06-24T15:15:24.341319
// OpenXR Version : 1.0.24
// Timestamp : 2022-10-07T13:02:15.687243
// OpenXR Version : 1.0.25


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

#define XREW_GENERATED_VERSION XR_MAKE_VERSION(1, 0, 24)
#define XREW_GENERATED_VERSION XR_MAKE_VERSION(1, 0, 25)
#define XREW_GET_FUN(x) x

// OpenXR 1.0 Core API:
Expand Down

0 comments on commit e479bfa

Please sign in to comment.