mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2024-12-28 18:46:18 +00:00
st/oxr: Fix conformance issue in begin session.
This commit is contained in:
parent
6f41fbc43d
commit
3a4e020920
|
@ -69,6 +69,14 @@ oxr_session_begin(struct oxr_logger *log,
|
||||||
return oxr_error(log, XR_ERROR_SESSION_RUNNING,
|
return oxr_error(log, XR_ERROR_SESSION_RUNNING,
|
||||||
" session is already running");
|
" session is already running");
|
||||||
}
|
}
|
||||||
|
XrViewConfigurationType view_type =
|
||||||
|
beginInfo->primaryViewConfigurationType;
|
||||||
|
if (view_type != sess->sys->view_config_type) {
|
||||||
|
/*! @todo we only support a single view config type per system
|
||||||
|
* right now */
|
||||||
|
return oxr_error(log, XR_ERROR_SESSION_RUNNING,
|
||||||
|
" view configuration type not supported");
|
||||||
|
}
|
||||||
|
|
||||||
struct xrt_compositor *xc = sess->compositor;
|
struct xrt_compositor *xc = sess->compositor;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue