| 1475 | |
| 1476 | OVR_PUBLIC_FUNCTION(ovrResult) |
| 1477 | ovr_GetViewportStencil( |
| 1478 | ovrSession session, |
| 1479 | const ovrViewportStencilDesc* viewportStencilDesc, |
| 1480 | ovrFovStencilMeshBuffer* outMeshBuffer) |
| 1481 | { |
| 1482 | ovrFovStencilDesc fovStencilDesc = {}; |
| 1483 | fovStencilDesc.StencilType = viewportStencilDesc->StencilType; |
| 1484 | fovStencilDesc.StencilFlags = 0; |
| 1485 | fovStencilDesc.Eye = viewportStencilDesc->Eye; |
| 1486 | fovStencilDesc.FovPort = viewportStencilDesc->FovPort; |
| 1487 | fovStencilDesc.HmdToEyeRotation = viewportStencilDesc->HmdToEyeRotation; |
| 1488 | return ovr_GetFovStencil(session, &fovStencilDesc, outMeshBuffer); |
| 1489 | } |
| 1490 | |
| 1491 | OVR_PUBLIC_FUNCTION(ovrResult) |
| 1492 | ovr_GetFovStencil( |
nothing calls this directly
no test coverage detected