diff --git a/src/xrt/compositor/client/comp_egl_glue.c b/src/xrt/compositor/client/comp_egl_glue.c index 87df8c78a..56516a791 100644 --- a/src/xrt/compositor/client/comp_egl_glue.c +++ b/src/xrt/compositor/client/comp_egl_glue.c @@ -1,4 +1,4 @@ -// Copyright 2019-2020, Collabora, Ltd. +// Copyright 2019-2021, Collabora, Ltd. // SPDX-License-Identifier: BSL-1.0 /*! * @file diff --git a/src/xrt/include/xrt/xrt_results.h b/src/xrt/include/xrt/xrt_results.h index a178af9f3..207cb7b74 100644 --- a/src/xrt/include/xrt/xrt_results.h +++ b/src/xrt/include/xrt/xrt_results.h @@ -48,9 +48,13 @@ typedef enum xrt_result * Multiple not supported on this layer level (IPC, compositor). */ XRT_ERROR_MULTI_SESSION_NOT_IMPLEMENTED = -11, - /*! * The requested format is not supported by Monado. */ 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;