| 429 | } |
| 430 | |
| 431 | xr::XRConfigValue XRInterface::getXRConfig(xr::XRConfigKey key) { |
| 432 | #if CC_USE_XR |
| 433 | return xr::XrEntry::getInstance()->getXRConfig(key); |
| 434 | #else |
| 435 | CC_UNUSED_PARAM(key); |
| 436 | cc::xr::XRConfigValue configValue; |
| 437 | return configValue; |
| 438 | #endif |
| 439 | } |
| 440 | |
| 441 | void XRInterface::setXRConfig(xr::XRConfigKey key, xr::XRConfigValue value) { |
| 442 | #if CC_USE_XR |
no outgoing calls
no test coverage detected