MCPcopy Create free account
hub / github.com/LibreVR/Revive / ovr_IsExtensionSupported

Function ovr_IsExtensionSupported

ReviveXR/REV_CAPI.cpp:1449–1460  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1447
1448OVR_PUBLIC_FUNCTION(ovrResult)
1449ovr_IsExtensionSupported(
1450 ovrSession session,
1451 ovrExtensions extension,
1452 ovrBool* outExtensionSupported)
1453{
1454 if (!outExtensionSupported)
1455 return ovrError_InvalidParameter;
1456
1457 // TODO: Extensions support
1458 *outExtensionSupported = false;
1459 return ovrSuccess;
1460}
1461
1462OVR_PUBLIC_FUNCTION(ovrResult)
1463ovr_EnableExtension(ovrSession session, ovrExtensions extension)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected