aboutsummaryrefslogtreecommitdiff
path: root/ports/openxr-loader/001-fix-array-decl.patch
diff options
context:
space:
mode:
authorBradley Austin Davis <bdavis@saintandreas.org>2021-08-26 10:54:11 -0700
committerGitHub <noreply@github.com>2021-08-26 10:54:11 -0700
commita6ce2965b5725a6395fa587ad456105fc3412e4a (patch)
tree095befee3f62e2e035485ba4e7afbe5b4af271c5 /ports/openxr-loader/001-fix-array-decl.patch
parent17818aa503e5af0045beafae3a9265fe60c458bd (diff)
downloadvcpkg-a6ce2965b5725a6395fa587ad456105fc3412e4a.tar.gz
vcpkg-a6ce2965b5725a6395fa587ad456105fc3412e4a.zip
[openxr-loader] Update to 1.0.18 (#19574)
Diffstat (limited to 'ports/openxr-loader/001-fix-array-decl.patch')
-rw-r--r--ports/openxr-loader/001-fix-array-decl.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/ports/openxr-loader/001-fix-array-decl.patch b/ports/openxr-loader/001-fix-array-decl.patch
deleted file mode 100644
index 9bd25eb31..000000000
--- a/ports/openxr-loader/001-fix-array-decl.patch
+++ /dev/null
@@ -1,26 +0,0 @@
---- openxr.hpp 2020-08-16 14:42:30.845279600 -0700
-+++ openxr.hpp 2020-08-16 14:45:19.707229200 -0700
-@@ -18249,9 +18249,9 @@
- public:
- // ctor
- SpatialGraphNodeSpaceCreateInfoMSFT (
-- const SpatialGraphNodeTypeMSFT& nodeType_ = {},
-- uint8_t nodeId[16]_ = 0,
-- const Posef& pose_ = {}
-+ const SpatialGraphNodeTypeMSFT& nodeType_,
-+ uint8_t nodeId_[16],
-+ const Posef& pose_
- )
- :
-
-@@ -18259,9 +18259,9 @@
- ) ,
-
- nodeType {nodeType_} ,
-- nodeId {nodeId_} ,
- pose {pose_}
- {
-+ memcpy(nodeId, nodeId_, 16);
- }
- operator const XrSpatialGraphNodeSpaceCreateInfoMSFT&() const { return *reinterpret_cast<const XrSpatialGraphNodeSpaceCreateInfoMSFT*>(this); }
- operator XrSpatialGraphNodeSpaceCreateInfoMSFT &() {