summaryrefslogtreecommitdiffstats
path: root/src/engine/Qt3DSRenderRuntimeBinding.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/Qt3DSRenderRuntimeBinding.cpp')
-rw-r--r--src/engine/Qt3DSRenderRuntimeBinding.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/engine/Qt3DSRenderRuntimeBinding.cpp b/src/engine/Qt3DSRenderRuntimeBinding.cpp
index f314f18..3f4b662 100644
--- a/src/engine/Qt3DSRenderRuntimeBinding.cpp
+++ b/src/engine/Qt3DSRenderRuntimeBinding.cpp
@@ -1810,12 +1810,13 @@ struct SRenderFactory : public IQt3DSRenderFactoryCore, public IQt3DSRenderFacto
};
IQt3DSRenderFactory &CreateRenderFactory(const QSurfaceFormat& format,
- bool delayedLoading) override
+ bool delayedLoading, void *signalProxy) override
{
{
QT3DS_PERF_SCOPED_TIMER(GetPerfTimer(), "Context: CreateRenderContext")
SContextTypeRenderFactory theContextFactory(format);
- m_Context->CreateRenderContext(theContextFactory, delayedLoading);
+ m_Context->CreateRenderContext(theContextFactory, delayedLoading,
+ (QRuntimeViewSignalProxy *)signalProxy);
}
GetSceneLoader();