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_DEVICE_FUNCTION_NOT_IMPLEMENTED error

+8
+1
src/xrt/auxiliary/util/u_pretty_print.c
··· 392 392 case XRT_ERROR_RECENTERING_NOT_SUPPORTED: DG("XRT_ERROR_RECENTERING_NOT_SUPPORTED"); return; 393 393 case XRT_ERROR_COMPOSITOR_NOT_SUPPORTED: DG("XRT_ERROR_COMPOSITOR_NOT_SUPPORTED"); return; 394 394 case XRT_ERROR_IPC_COMPOSITOR_NOT_CREATED: DG("XRT_ERROR_IPC_COMPOSITOR_NOT_CREATED"); return; 395 + case XRT_ERROR_DEVICE_FUNCTION_NOT_IMPLEMENTED: DG("XRT_ERROR_DEVICE_FUNCTION_NOT_IMPLEMENTED"); return; 395 396 } 396 397 // clang-format on 397 398
+7
src/xrt/include/xrt/xrt_results.h
··· 174 174 * which is needed for the given command. 175 175 */ 176 176 XRT_ERROR_IPC_COMPOSITOR_NOT_CREATED = -28, 177 + 178 + /*! 179 + * The function called on the device was not implemented, it is not 180 + * meant to query the availability of the function or feature, only a 181 + * error condition on bad code. 182 + */ 183 + XRT_ERROR_DEVICE_FUNCTION_NOT_IMPLEMENTED = -29, 177 184 } xrt_result_t;