| 1447 | |
| 1448 | OVR_PUBLIC_FUNCTION(ovrResult) |
| 1449 | ovr_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 | |
| 1462 | OVR_PUBLIC_FUNCTION(ovrResult) |
| 1463 | ovr_EnableExtension(ovrSession session, ovrExtensions extension) |
nothing calls this directly
no outgoing calls
no test coverage detected