| 778 | } |
| 779 | |
| 780 | OVR_PUBLIC_FUNCTION(ovrResult) ovr_GetTextureSwapChainDesc(ovrSession session, ovrTextureSwapChain chain, ovrTextureSwapChainDesc* out_Desc) |
| 781 | { |
| 782 | REV_TRACE(ovr_GetTextureSwapChainDesc); |
| 783 | |
| 784 | if (!chain) |
| 785 | return ovrError_InvalidParameter; |
| 786 | |
| 787 | MICROPROFILE_META_CPU("Identifier", PtrToInt(chain->Swapchain)); |
| 788 | *out_Desc = chain->Desc; |
| 789 | return ovrSuccess; |
| 790 | } |
| 791 | |
| 792 | OVR_PUBLIC_FUNCTION(ovrResult) ovr_CommitTextureSwapChain(ovrSession session, ovrTextureSwapChain chain) |
| 793 | { |
nothing calls this directly
no outgoing calls
no test coverage detected