Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[OpenXR] Add support for XR_EXTX_overlay extension #851

Merged
merged 2 commits into from Jul 25, 2023
Merged

Conversation

svillar
Copy link
Member

@svillar svillar commented Jul 20, 2023

This provisional extension allows multiple OpenXR apps to run concurrently
and get their contents composited. Apps specify at which level they'd like
to be composited from 0 (first to be composited) to MAX_UINT32 (last to be
composited on top of all the other ones). We initially selected 0 so that all
the other OpenXR apps supporting this extension will render on top
(unless one uses also 0 and is launched before Wolvic).

From the list of currently supported devices Pico 4 & 4E, Lynx-R1 and
Lenovo A3 devices support this extension.

Copy link
Contributor

@elima elima left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!

@@ -1435,6 +1444,14 @@ DeviceDelegateOpenXR::EnterVR(const crow::BrowserEGLContext& aEGLContext) {
XrSessionCreateInfo createInfo{XR_TYPE_SESSION_CREATE_INFO};
createInfo.next = reinterpret_cast<const XrBaseInStructure*>(&m.graphicsBinding);
createInfo.systemId = m.system;

if (OpenXRExtensions::IsExtensionSupported(XR_EXTX_OVERLAY_EXTENSION_NAME)) {
XrSessionCreateInfoOverlayEXTX overlayInfo { .type = XR_TYPE_SESSION_CREATE_INFO_OVERLAY_EXTX, .createFlags = 0, .sessionLayersPlacement = 0 };
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: I would break this long line into several lines, one for each member. It helps read-ability IMO.

This provisional extension allows multiple OpenXR apps to run
concurrently and get their contents composited. Apps specify at
which level they'd like to be composited from 0 (first to be
composited) to MAX_UINT32 (last to be composited on top of all
the other ones). We initially selected 0 so that all the other
OpenXR apps supporting this extension will render on top (unless
one uses also 0 and is launched before Wolvic).

From the list of currently supported devices Pico 4 & 4E,
Lynx-R1 and Lenovo A3 devices support this extension.
@svillar svillar merged commit 4a2fac1 into main Jul 25, 2023
7 checks passed
@svillar svillar deleted the ext_overlay branch July 25, 2023 09:17
felipeerias pushed a commit that referenced this pull request Aug 4, 2023
This provisional extension allows multiple OpenXR apps to run
concurrently and get their contents composited. Apps specify at
which level they'd like to be composited from 0 (first to be
composited) to MAX_UINT32 (last to be composited on top of all
the other ones). We initially selected 0 so that all the other
OpenXR apps supporting this extension will render on top (unless
one uses also 0 and is launched before Wolvic).

From the list of currently supported devices Pico 4 & 4E,
Lynx-R1 and Lenovo A3 devices support this extension.
felipeerias pushed a commit that referenced this pull request Aug 4, 2023
This provisional extension allows multiple OpenXR apps to run
concurrently and get their contents composited. Apps specify at
which level they'd like to be composited from 0 (first to be
composited) to MAX_UINT32 (last to be composited on top of all
the other ones). We initially selected 0 so that all the other
OpenXR apps supporting this extension will render on top (unless
one uses also 0 and is launched before Wolvic).

From the list of currently supported devices Pico 4 & 4E,
Lynx-R1 and Lenovo A3 devices support this extension.
felipeerias pushed a commit that referenced this pull request Aug 4, 2023
This provisional extension allows multiple OpenXR apps to run
concurrently and get their contents composited. Apps specify at
which level they'd like to be composited from 0 (first to be
composited) to MAX_UINT32 (last to be composited on top of all
the other ones). We initially selected 0 so that all the other
OpenXR apps supporting this extension will render on top (unless
one uses also 0 and is launched before Wolvic).

From the list of currently supported devices Pico 4 & 4E,
Lynx-R1 and Lenovo A3 devices support this extension.
felipeerias pushed a commit that referenced this pull request Aug 6, 2023
)

This provisional extension allows multiple OpenXR apps to run
concurrently and get their contents composited. Apps specify at
which level they'd like to be composited from 0 (first to be
composited) to MAX_UINT32 (last to be composited on top of all
the other ones). We initially selected 0 so that all the other
OpenXR apps supporting this extension will render on top (unless
one uses also 0 and is launched before Wolvic).

From the list of currently supported devices Pico 4 & 4E,
Lynx-R1 and Lenovo A3 devices support this extension.
felipeerias pushed a commit that referenced this pull request Aug 6, 2023
)

This provisional extension allows multiple OpenXR apps to run
concurrently and get their contents composited. Apps specify at
which level they'd like to be composited from 0 (first to be
composited) to MAX_UINT32 (last to be composited on top of all
the other ones). We initially selected 0 so that all the other
OpenXR apps supporting this extension will render on top (unless
one uses also 0 and is launched before Wolvic).

From the list of currently supported devices Pico 4 & 4E,
Lynx-R1 and Lenovo A3 devices support this extension.
felipeerias pushed a commit that referenced this pull request Aug 7, 2023
)

This provisional extension allows multiple OpenXR apps to run
concurrently and get their contents composited. Apps specify at
which level they'd like to be composited from 0 (first to be
composited) to MAX_UINT32 (last to be composited on top of all
the other ones). We initially selected 0 so that all the other
OpenXR apps supporting this extension will render on top (unless
one uses also 0 and is launched before Wolvic).

From the list of currently supported devices Pico 4 & 4E,
Lynx-R1 and Lenovo A3 devices support this extension.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants