 |
Plasma Engine
2.0
|
Loading...
Searching...
No Matches
3#define XR_LOG_ERROR(code) \
9 plLog::Error("OpenXR call '{0}' failed with: {1} in {2}:{3}", PL_PP_STRINGIFY(code), s, PL_SOURCE_FILE, PL_SOURCE_LINE); \
13#define XR_SUCCEED_OR_RETURN_LOG(code) \
17 if (s != XR_SUCCESS) \
19 plLog::Error("OpenXR call '{0}' failed with: {1} in {2}:{3}", PL_PP_STRINGIFY(code), s, PL_SOURCE_FILE, PL_SOURCE_LINE); \
24#define XR_SUCCEED_OR_CLEANUP_LOG(code, cleanup) \
28 if (s != XR_SUCCESS) \
30 plLog::Error("OpenXR call '{0}' failed with: {1} in {2}:{3}", PL_PP_STRINGIFY(code), s, PL_SOURCE_FILE, PL_SOURCE_LINE); \
36static void voidFunction() {}