| 765 | } |
| 766 | |
| 767 | OVR_PUBLIC_FUNCTION(ovrResult) ovr_GetTextureSwapChainCurrentIndex(ovrSession session, ovrTextureSwapChain chain, int* out_Index) |
| 768 | { |
| 769 | REV_TRACE(ovr_GetTextureSwapChainCurrentIndex); |
| 770 | |
| 771 | if (!chain) |
| 772 | return ovrError_InvalidParameter; |
| 773 | |
| 774 | MICROPROFILE_META_CPU("Identifier", PtrToInt(chain->Swapchain)); |
| 775 | MICROPROFILE_META_CPU("Index", chain->CurrentIndex); |
| 776 | *out_Index = chain->CurrentIndex; |
| 777 | return ovrSuccess; |
| 778 | } |
| 779 | |
| 780 | OVR_PUBLIC_FUNCTION(ovrResult) ovr_GetTextureSwapChainDesc(ovrSession session, ovrTextureSwapChain chain, ovrTextureSwapChainDesc* out_Desc) |
| 781 | { |
nothing calls this directly
no outgoing calls
no test coverage detected