mirror of
https://github.com/LibreVR/Revive.git
synced 2026-08-04 00:54:37 -04:00
25 lines
465 B
C++
25 lines
465 B
C++
#include "TextureBase.h"
|
|
|
|
ovrTextureSwapChainData::ovrTextureSwapChainData(ovrTextureSwapChainDesc desc)
|
|
: Length(REV_SWAPCHAIN_MAX_LENGTH)
|
|
, Identifier(0)
|
|
, CurrentIndex(0)
|
|
, SubmitIndex(0)
|
|
, Desc(desc)
|
|
, Overlay(vr::k_ulOverlayHandleInvalid)
|
|
, Textures()
|
|
{
|
|
}
|
|
|
|
ovrTextureSwapChainData::~ovrTextureSwapChainData()
|
|
{
|
|
}
|
|
|
|
ovrMirrorTextureData::ovrMirrorTextureData(ovrMirrorTextureDesc desc)
|
|
: Desc(desc)
|
|
{
|
|
}
|
|
|
|
ovrMirrorTextureData::~ovrMirrorTextureData()
|
|
{
|
|
}
|