-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
OpenXR Specification 1.1.37 (2024-05-23)
This release adds new defines for easier use of both OpenXR 1.0 and 1.1 with up-to-date headers, as well as some minor fixes, cleanups, and clarifications. - Registry - Addition: New XR_API_VERSION_1_0 and XR_API_VERSION_1_1 defines to allow applications to easily specify OpenXR “major” and “minor” version while passing through the “patch” version. (internal MR 3329, internal MR 3354, internal issue 2254) - Addition: Register Razer vendor ID. (internal MR 3340) - Fix: Add “palm_pose” to “touch_controller_pro” and “touch_controller_plus” in XML. (internal MR 3363) - Improvement: Add Schematron rule to avoid triggering edge cases of vendor tags ending with X. (internal MR 3341) - Reservation: Reserve extension numbers for a few new EXT extensions. (internal MR 3285, internal MR 3292) - Update: Bump version of XR_FB_composition_layer_alpha_blend due to spec text clarification. (internal MR 3317) - Specification - Addition: Document new XR_API_VERSION_1_0 and XR_API_VERSION_1_1 macros/defines. (internal MR 3354, internal issue 2254) - Fix: Typo in “Buffer Size Parameters” section. (internal MR 3322) - Fix: Resolve several diagrams shown cropped in browsers. (internal MR 3355) - Fix: Correct formatting of versions in some generated spec text. (internal MR 3362) - Fix: Adjust specification release build process to restore internal links in PDF. (internal MR 3371, OpenXR-Docs issue 170) - Improvement: Resize and optimize images to reduce spec page size. (internal MR 2833, internal MR 3355) - Improvement: Add in missing explicit section anchors. (internal MR 3322) - Improvement: Fix references to Docker container in spec build instructions. (internal MR 3352, internal issue 2283, OpenXR-SDK-Source issue 476) - Improvement: Inline several SVG diagrams to support searchable and screen- reader-accessible text. (internal MR 3355) - Improvement: General script cleanups and improvements. (internal MR 3362) - Update: Bump version of XR_FB_composition_layer_alpha_blend due to spec text clarification. (internal MR 3317) GitOrigin-RevId: b84815a669b7ab8721ff5117872d8af17b601754
- Loading branch information
Showing
438 changed files
with
2,456 additions
and
1,309 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
// Copyright 2024, The Khronos Group Inc. | ||
// | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
const regBadFonts = /Helvetica|Arial|Arimo|ArimoMT/g; | ||
|
||
const fixFonts = { | ||
name: "fixFonts", | ||
params: { | ||
paramName: "paramValue", | ||
}, | ||
fn: (ast, params, info) => { | ||
return { | ||
element: { | ||
enter: (node) => { | ||
if (node.attributes.style != null) { | ||
node.attributes.style = node.attributes.style.replace( | ||
regBadFonts, | ||
"sans-serif" | ||
); | ||
} | ||
if (node.attributes["font-family"] != null) { | ||
node.attributes["font-family"] = node.attributes[ | ||
"font-family" | ||
].replace(regBadFonts, "sans-serif"); | ||
} | ||
}, | ||
}, | ||
}; | ||
}, | ||
}; | ||
export default { | ||
multipass: true, | ||
plugins: [fixFonts, "preset-default", fixFonts], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.