| 753 | } |
| 754 | |
| 755 | OVR_PUBLIC_FUNCTION(ovrResult) ovr_GetTextureSwapChainLength(ovrSession session, ovrTextureSwapChain chain, int* out_Length) |
| 756 | { |
| 757 | REV_TRACE(ovr_GetTextureSwapChainLength); |
| 758 | |
| 759 | if (!chain) |
| 760 | return ovrError_InvalidParameter; |
| 761 | |
| 762 | MICROPROFILE_META_CPU("Identifier", PtrToInt(chain->Swapchain)); |
| 763 | *out_Length = chain->Length; |
| 764 | return ovrSuccess; |
| 765 | } |
| 766 | |
| 767 | OVR_PUBLIC_FUNCTION(ovrResult) ovr_GetTextureSwapChainCurrentIndex(ovrSession session, ovrTextureSwapChain chain, int* out_Index) |
| 768 | { |
nothing calls this directly
no outgoing calls
no test coverage detected