| 1317 | |
| 1318 | OVR_PUBLIC_FUNCTION(ovrResult) |
| 1319 | ovr_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 | |
| 1332 | OVR_PUBLIC_FUNCTION(ovrResult) |
| 1333 | ovr_EnableExtension(ovrSession session, ovrExtensions extension) |
nothing calls this directly
no outgoing calls
no test coverage detected