| 756 | } |
| 757 | |
| 758 | OVR_PUBLIC_FUNCTION(ovrResult) ovr_GetTextureSwapChainCurrentIndex(ovrSession session, ovrTextureSwapChain chain, int* out_Index) |
| 759 | { |
| 760 | REV_TRACE(ovr_GetTextureSwapChainCurrentIndex); |
| 761 | |
| 762 | if (!chain) |
| 763 | return ovrError_InvalidParameter; |
| 764 | |
| 765 | MICROPROFILE_META_CPU("Identifier", chain->Identifier); |
| 766 | MICROPROFILE_META_CPU("Index", chain->CurrentIndex); |
| 767 | *out_Index = chain->CurrentIndex; |
| 768 | return ovrSuccess; |
| 769 | } |
| 770 | |
| 771 | OVR_PUBLIC_FUNCTION(ovrResult) ovr_GetTextureSwapChainDesc(ovrSession session, ovrTextureSwapChain chain, ovrTextureSwapChainDesc* out_Desc) |
| 772 | { |
nothing calls this directly
no outgoing calls
no test coverage detected