···170170 case XRT_ERROR_IPC_COMPOSITOR_NOT_CREATED: DG("XRT_ERROR_IPC_COMPOSITOR_NOT_CREATED"); return;
171171 case XRT_ERROR_NOT_IMPLEMENTED: DG("XRT_ERROR_NOT_IMPLEMENTED"); return;
172172 case XRT_ERROR_UNSUPPORTED_SPACE_TYPE: DG("XRT_ERROR_UNSUPPORTED_SPACE_TYPE"); return;
173173+ case XRT_ERROR_ANDROID: DG("XRT_ERROR_ANDROID"); return;
173174 }
174175 // clang-format on
175176
+4
src/xrt/include/xrt/xrt_results.h
···189189 * The supplied space type is not supported for this operation.
190190 */
191191 XRT_ERROR_UNSUPPORTED_SPACE_TYPE = -30,
192192+ /*!
193193+ * Some other Android error, typically a logic error that should be impossible to reach.
194194+ */
195195+ XRT_ERROR_ANDROID = -31,
192196} xrt_result_t;