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

Function ovr_IsExtensionSupported

Revive/REV_CAPI.cpp:1319–1330  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1317
1318OVR_PUBLIC_FUNCTION(ovrResult)
1319ovr_IsExtensionSupported(
1320 ovrSession session,
1321 ovrExtensions extension,
1322 ovrBool* outExtensionSupported)
1323{
1324 if (!outExtensionSupported)
1325 return ovrError_InvalidParameter;
1326
1327 // TODO: Extensions support
1328 *outExtensionSupported = false;
1329 return ovrSuccess;
1330}
1331
1332OVR_PUBLIC_FUNCTION(ovrResult)
1333ovr_EnableExtension(ovrSession session, ovrExtensions extension)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected