mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2025-01-21 06:01:43 +00:00
xrt: Add XRT_ERROR_EGL_CONFIG_MISSING error
This commit is contained in:
parent
8be59f73ec
commit
0571e0337e
|
@ -1,4 +1,4 @@
|
||||||
// Copyright 2019-2020, Collabora, Ltd.
|
// Copyright 2019-2021, Collabora, Ltd.
|
||||||
// SPDX-License-Identifier: BSL-1.0
|
// SPDX-License-Identifier: BSL-1.0
|
||||||
/*!
|
/*!
|
||||||
* @file
|
* @file
|
||||||
|
|
|
@ -48,9 +48,13 @@ typedef enum xrt_result
|
||||||
* Multiple not supported on this layer level (IPC, compositor).
|
* Multiple not supported on this layer level (IPC, compositor).
|
||||||
*/
|
*/
|
||||||
XRT_ERROR_MULTI_SESSION_NOT_IMPLEMENTED = -11,
|
XRT_ERROR_MULTI_SESSION_NOT_IMPLEMENTED = -11,
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* The requested format is not supported by Monado.
|
* The requested format is not supported by Monado.
|
||||||
*/
|
*/
|
||||||
XRT_ERROR_SWAPCHAIN_FORMAT_UNSUPPORTED = -12,
|
XRT_ERROR_SWAPCHAIN_FORMAT_UNSUPPORTED = -12,
|
||||||
|
/*!
|
||||||
|
* The given config was EGL_NO_CONFIG_KHR and EGL_KHR_no_config_context
|
||||||
|
* is not supported by the display.
|
||||||
|
*/
|
||||||
|
XRT_ERROR_EGL_CONFIG_MISSING = -12,
|
||||||
} xrt_result_t;
|
} xrt_result_t;
|
||||||
|
|
Loading…
Reference in a new issue