The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

xrt: Add XRT_ERROR_ANDROID

Co-authored-by: Rylie Pavlik <rylie.pavlik@collabora.com>
Part-of: <https://gitlab.freedesktop.org/monado/monado/-/merge_requests/1655>

authored by

Jarvis Huang
Rylie Pavlik
and committed by
Rylie Pavlik
30c067db 77bdc1a8

+9 -1
+4 -1
doc/changes/xrt/mr.2284.md
··· 1 - introduce XRT_ERROR_UNSUPPORTED_SPACE_TYPE 1 + --- 2 + - mr.1655 3 + --- 4 + introduce `XRT_ERROR_UNSUPPORTED_SPACE_TYPE`, `XRT_ERROR_ANDROID`
+1
src/xrt/auxiliary/util/u_pretty_print.c
··· 170 170 case XRT_ERROR_IPC_COMPOSITOR_NOT_CREATED: DG("XRT_ERROR_IPC_COMPOSITOR_NOT_CREATED"); return; 171 171 case XRT_ERROR_NOT_IMPLEMENTED: DG("XRT_ERROR_NOT_IMPLEMENTED"); return; 172 172 case XRT_ERROR_UNSUPPORTED_SPACE_TYPE: DG("XRT_ERROR_UNSUPPORTED_SPACE_TYPE"); return; 173 + case XRT_ERROR_ANDROID: DG("XRT_ERROR_ANDROID"); return; 173 174 } 174 175 // clang-format on 175 176
+4
src/xrt/include/xrt/xrt_results.h
··· 189 189 * The supplied space type is not supported for this operation. 190 190 */ 191 191 XRT_ERROR_UNSUPPORTED_SPACE_TYPE = -30, 192 + /*! 193 + * Some other Android error, typically a logic error that should be impossible to reach. 194 + */ 195 + XRT_ERROR_ANDROID = -31, 192 196 } xrt_result_t;