| 744 | } |
| 745 | |
| 746 | OVR_PUBLIC_FUNCTION(ovrResult) ovr_GetTextureSwapChainLength(ovrSession session, ovrTextureSwapChain chain, int* out_Length) |
| 747 | { |
| 748 | REV_TRACE(ovr_GetTextureSwapChainLength); |
| 749 | |
| 750 | if (!chain) |
| 751 | return ovrError_InvalidParameter; |
| 752 | |
| 753 | MICROPROFILE_META_CPU("Identifier", chain->Identifier); |
| 754 | *out_Length = chain->Length; |
| 755 | return ovrSuccess; |
| 756 | } |
| 757 | |
| 758 | OVR_PUBLIC_FUNCTION(ovrResult) ovr_GetTextureSwapChainCurrentIndex(ovrSession session, ovrTextureSwapChain chain, int* out_Index) |
| 759 | { |
nothing calls this directly
no outgoing calls
no test coverage detected