Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Eisel <julian@blender.org>2020-04-02 14:49:08 +0300
committerJulian Eisel <julian@blender.org>2020-04-02 14:50:27 +0300
commit53d029d6daaa79ed2eb3e647a7c1313e47953fda (patch)
tree58ca4394ad97ccfa5543275d75715e2952f31174 /intern/ghost/intern/GHOST_XrSwapchain.h
parent782e6ea4edd9cb09f2583c8f28a24d6330dc6ce8 (diff)
Cleanup: Avoid complex template type for XR-Swapchain
I rather avoid types like `std::vector<std::unique_ptr<GHOST_XrSwapchain>>`, which is easy to do in this case.
Diffstat (limited to 'intern/ghost/intern/GHOST_XrSwapchain.h')
-rw-r--r--intern/ghost/intern/GHOST_XrSwapchain.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/intern/ghost/intern/GHOST_XrSwapchain.h b/intern/ghost/intern/GHOST_XrSwapchain.h
index df9cd924dd0..ab0a6736c9c 100644
--- a/intern/ghost/intern/GHOST_XrSwapchain.h
+++ b/intern/ghost/intern/GHOST_XrSwapchain.h
@@ -30,6 +30,7 @@ class GHOST_XrSwapchain {
GHOST_XrSwapchain(GHOST_IXrGraphicsBinding &gpu_binding,
const XrSession &session,
const XrViewConfigurationView &view_config);
+ GHOST_XrSwapchain(GHOST_XrSwapchain &&other);
~GHOST_XrSwapchain();
XrSwapchainImageBaseHeader *acquireDrawableSwapchainImage();