 |
Blender
V2.93
|
Go to the documentation of this file.
28 #define CHECK_XR(call, error_msg) \
30 XrResult _res = call; \
31 if (XR_FAILED(_res)) { \
32 throw GHOST_XrException(error_msg, _res); \
41 #define CHECK_XR_ASSERT(call) \
43 XrResult _res = call; \
44 assert(_res == XR_SUCCESS); \