| 1 | #include "TextureBase.h" |
| 2 | |
| 3 | ovrTextureSwapChainData::ovrTextureSwapChainData(ovrTextureSwapChainDesc desc) |
| 4 | : Length(REV_SWAPCHAIN_MAX_LENGTH) |
| 5 | , Identifier(0) |
| 6 | , CurrentIndex(0) |
| 7 | , SubmitIndex(0) |
| 8 | , Desc(desc) |
| 9 | , Overlay(vr::k_ulOverlayHandleInvalid) |
| 10 | , Textures() |
| 11 | { |
| 12 | } |
| 13 | |
| 14 | ovrTextureSwapChainData::~ovrTextureSwapChainData() |
| 15 | { |
nothing calls this directly
no outgoing calls
no test coverage detected