-
Notifications
You must be signed in to change notification settings - Fork 261
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This release primarily adds new defines for easier use of both OpenXR 1.0 and 1.1 with up-to-date headers, some documentation improvements, and improvements for Android, including support for using the “API Dump” and “Validation” API layers in your own APK during the development process. - 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) - SDK - Addition: Ship open-in-docker.sh script for use building the loader design doc. (internal MR 3352, internal issue 2283, OpenXR-SDK-Source issue 476) - Fix: Fix references to Docker container in spec build instructions and clarify that most parts do not apply to the SDK-Source repo. (internal MR 3352, internal issue 2283, OpenXR-SDK-Source issue 476) - Fix: Do not load all Android app-supplied layers as explicit, but rather as their actual type. (OpenXR-SDK-Source PR 475, internal issue 2284) - Improvement: Use new XR_API_VERSION_1_0 and XR_API_VERSION_1_1 defines. (internal MR 3329, internal issue 2254) - Improvement: Add Android support to “api_dump” and “core_validation” API layers. (internal MR 3330) GitOrigin-RevId: b84815a669b7ab8721ff5117872d8af17b601754
- Loading branch information
Showing
25 changed files
with
339 additions
and
65 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 was deleted.
Oops, something went wrong.
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,33 @@ | ||
#!/bin/bash | ||
# Copyright (c) 2019-2024, The Khronos Group Inc. | ||
# Copyright (c) 2019 Collabora, Ltd. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
# Start the docker image named below, for spec generation, etc. | ||
# Mounts this directory as the mountpoint mentioned below, | ||
# and logs you in as a normal user whose user ID and group ID match | ||
# your outside-of-container user, thus avoiding mangling permissions. | ||
# Container is automatically removed when you exit it. | ||
|
||
# The docker images used are published here: | ||
# https://hub.docker.com/r/khronosgroup/docker-images/tags | ||
# | ||
# with their dockerfile located at: | ||
# https://github.com/KhronosGroup/DockerContainers | ||
|
||
# This image/tag is generated from https://github.com/KhronosGroup/DockerContainers/blob/main/openxr.Dockerfile | ||
# Purpose: Spec (pdf/html) generation | ||
IMAGE_NAME=khronosgroup/docker-images:openxr.20240412 | ||
MOUNTPOINT=$(pwd) | ||
|
||
set -e | ||
# docker pull $IMAGE_NAME | ||
uid=$(id -u) | ||
gid=$(id -g) | ||
docker run -it --rm \ | ||
--entrypoint /root/entrypoint.openxr.sh \ | ||
-e "USER_ID=$uid" \ | ||
-e "GROUP_ID=$gid" \ | ||
-e "CONTAINER_CWD=$MOUNTPOINT" \ | ||
-v "$MOUNTPOINT:$MOUNTPOINT" \ | ||
$IMAGE_NAME "$@" |
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
Oops, something went wrong.