| 769 | } |
| 770 | |
| 771 | OVR_PUBLIC_FUNCTION(ovrResult) ovr_GetTextureSwapChainDesc(ovrSession session, ovrTextureSwapChain chain, ovrTextureSwapChainDesc* out_Desc) |
| 772 | { |
| 773 | REV_TRACE(ovr_GetTextureSwapChainDesc); |
| 774 | |
| 775 | if (!chain) |
| 776 | return ovrError_InvalidParameter; |
| 777 | |
| 778 | MICROPROFILE_META_CPU("Identifier", chain->Identifier); |
| 779 | *out_Desc = chain->Desc; |
| 780 | return ovrSuccess; |
| 781 | } |
| 782 | |
| 783 | OVR_PUBLIC_FUNCTION(ovrResult) ovr_CommitTextureSwapChain(ovrSession session, ovrTextureSwapChain chain) |
| 784 | { |
nothing calls this directly
no outgoing calls
no test coverage detected