| 421 | } |
| 422 | |
| 423 | xr::XRVendor XRInterface::getVendor() { |
| 424 | #if CC_USE_XR |
| 425 | return static_cast<xr::XRVendor>(xr::XrEntry::getInstance()->getXRConfig(cc::xr::XRConfigKey::DEVICE_VENDOR).getInt()); |
| 426 | #else |
| 427 | return xr::XRVendor::MONADO; |
| 428 | #endif |
| 429 | } |
| 430 | |
| 431 | xr::XRConfigValue XRInterface::getXRConfig(xr::XRConfigKey key) { |
| 432 | #if CC_USE_XR |
no test coverage detected