Add interfaces for getting textures from ar frames

This commit is contained in:
2024-07-05 14:08:04 +02:00
parent 86e7681a8d
commit 7e9c568779
7 changed files with 65 additions and 2 deletions

View File

@@ -88,4 +88,14 @@ namespace OpenVulkano::AR::Playback
Stop();
OnSessionInterruptionChange(true);
}
Scene::Texture* ArSessionPlayback::MakeTexture(OpenVulkano::AR::ArFrame* frame)
{
return nullptr; //TODO
}
void ArSessionPlayback::ReturnTexture(Scene::Texture* texture)
{
//TODO
}
}