-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Conformance Tests - Fix: Refactor Pbr::Model into an immutable Pbr::Model and Pbr::Instance that holds the state for one drawn instance of the model. This corrects the known issue in the self-tests mentioned in a previous changelog. (internal MR 3079, internal issue 2139, internal MR 3141) - Fix: Avoid artificial error precedence requirement in test for XR_ERROR_GRAPHICS_DEVICE_INVALID, by making sure to call the “check graphics requirements” function if applicable. (internal MR 3093, internal issue 2155) - Fix: Remove extra xrSyncActions call in test_glTFRendering to resolve interaction issue. (internal MR 3107, internal issue 2163) - Fix: Skip XR_MSFT_controller_model interactive test if extension is not supported. (internal MR 3146, internal issue 2187) - Improvement: Adjust StringToPath utility function to be easier to use. (internal MR 2076) - Improvement: Simplify how some tests refer to the main OpenXR handles. (internal MR 3023) - Improvement: Make AutoBasicSession use EventReader to support event multiplexing. (internal MR 3023) - Improvement: Do not require system support for XR_EXT_eye_gaze_interaction before running XrPath and interaction profile related tests. Paths are valid as long as the extension is offered and enabled, regardless of whether there is system support for eye tracking. (internal MR 3055) - Improvement: General code cleanup, warning fixes, clang-tidy fixes, and refactoring to improve flexibility and maintainability. (internal MR 3082, internal MR 3023) - Improvement: On Android, log using the “FATAL” severity before triggering an abort from the conformance layer. (internal MR 3087) - Improvement: Exclude loader negotiation functions (added to XML and ratified spec in 1.0.33) from the list of functions automatically tested by the conformance suite. (internal MR 3113) - New test: Check behavior for actions created without subaction paths, but queried using subaction paths. (internal MR 3068) GitOrigin-RevId: a8b4c88506ea13655ef848c38d5a158e36977205
- Loading branch information
Showing
92 changed files
with
1,308 additions
and
1,027 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 was deleted.
Oops, something went wrong.
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
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
4 changes: 4 additions & 0 deletions
4
src/conformance/conformance_layer/XrApiLayer_conformance_layer.def
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 |
---|---|---|
@@ -1,2 +1,6 @@ | ||
; Copyright (c) 2019-2024, The Khronos Group Inc. | ||
; | ||
; SPDX-License-Identifier: Apache-2.0 | ||
|
||
EXPORTS | ||
xrNegotiateLoaderApiLayerInterface |
3 changes: 0 additions & 3 deletions
3
src/conformance/conformance_layer/XrApiLayer_conformance_layer.def.license
This file was deleted.
Oops, something went wrong.
12 changes: 12 additions & 0 deletions
12
src/conformance/conformance_layer/XrApiLayer_conformance_layer.map
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,12 @@ | ||
/* | ||
Copyright (c) 2019-2024, The Khronos Group Inc. | ||
|
||
SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
{ | ||
global: | ||
xrNegotiateLoaderApiLayerInterface; | ||
local: | ||
*; | ||
}; |
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
Oops, something went wrong.