Remove everything, going rustacean

Signed-off-by: Slendi <slendi@socopon.com>
This commit is contained in:
2025-06-29 19:32:27 +03:00
parent 1fb48e2426
commit fdafccbdad
15 changed files with 0 additions and 1216 deletions

View File

@@ -1,15 +0,0 @@
#pragma once
#include <format>
#define OPENXR_CHECK(fn_call, ...) \
do { \
XrResult result = fn_call(__VA_ARGS__); \
if (result != XR_SUCCESS) { \
std::array<char, XR_MAX_RESULT_STRING_SIZE> msg {}; \
xrResultToString(nullptr, result, msg.data()); \
throw std::runtime_error( \
std::format("OpenXR call '{}' failed (code {}): {}", #fn_call, \
static_cast<int>(result), msg.data())); \
} \
} while (0)