summaryrefslogtreecommitdiffstats
path: root/src/Runtime/Source/engine/Qt3DSRenderRuntimeBindingImpl.h
diff options
context:
space:
mode:
authorAntti Määttä <antti.maatta@qt.io>2019-04-12 13:54:35 +0300
committerAntti Määttä <antti.maatta@qt.io>2019-05-03 09:34:00 +0000
commit73ebd0f9cf6376a762c96d37ab6046fefd8d4789 (patch)
treee415e2af7e30002563422ba9cbec02f3276b013e /src/Runtime/Source/engine/Qt3DSRenderRuntimeBindingImpl.h
parentccc70e48e576c0dffc289df4850a909fb6fef83d (diff)
Implement dynamic loading of slide resources
Implements loading of textures and images during runtime instead of load time. - Images which are not part of any slide are loaded at load time - Master slide images are always loaded at load time - Images used in a slide are loaded when the slide is entered - Images are unloaded when slide is exited and any other slide does not use them Task-number: QT3DS-3208 Change-Id: I7a827a5e828908efd2b104fe25374c66958319d2 Reviewed-by: Mahmoud Badri <mahmoud.badri@qt.io> Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io>
Diffstat (limited to 'src/Runtime/Source/engine/Qt3DSRenderRuntimeBindingImpl.h')
-rw-r--r--src/Runtime/Source/engine/Qt3DSRenderRuntimeBindingImpl.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/Runtime/Source/engine/Qt3DSRenderRuntimeBindingImpl.h b/src/Runtime/Source/engine/Qt3DSRenderRuntimeBindingImpl.h
index 1d27f293..c174d4a7 100644
--- a/src/Runtime/Source/engine/Qt3DSRenderRuntimeBindingImpl.h
+++ b/src/Runtime/Source/engine/Qt3DSRenderRuntimeBindingImpl.h
@@ -136,12 +136,15 @@ namespace render {
m_FlowData = NULL;
}
- void CreateRenderContext(qt3ds::render::IRuntimeFactoryRenderFactory &inContextFactory)
+ void CreateRenderContext(qt3ds::render::IRuntimeFactoryRenderFactory &inContextFactory,
+ bool delayedLoading)
{
m_RenderContext = inContextFactory.CreateRenderContext(*m_Foundation, *m_StringTable);
- if (m_RenderContext)
+ if (m_RenderContext) {
m_Context =
- m_CoreContext->CreateRenderContext(*m_RenderContext, m_PrimitivePath.c_str());
+ m_CoreContext->CreateRenderContext(*m_RenderContext, m_PrimitivePath.c_str(),
+ delayedLoading);
+ }
}
QT3DS_IMPLEMENT_REF_COUNT_ADDREF_RELEASE(g_BaseAllocator)