diff --git a/src/plugins/score-plugin-gfx/Gfx/Spout/SpoutOutput.cpp b/src/plugins/score-plugin-gfx/Gfx/Spout/SpoutOutput.cpp index 4edacfed08..ee12fcec85 100644 --- a/src/plugins/score-plugin-gfx/Gfx/Spout/SpoutOutput.cpp +++ b/src/plugins/score-plugin-gfx/Gfx/Spout/SpoutOutput.cpp @@ -135,7 +135,7 @@ struct SpoutNode final : score::gfx::OutputNode { public: SpoutRenderer(const score::gfx::RenderState& state, const SpoutNode& parent) - : score::gfx::OutputNodeRenderer{} + : score::gfx::OutputNodeRenderer{parent} { m_rt.renderTarget = parent.m_renderTarget; m_rt.renderPass = state.renderPassDescriptor; diff --git a/src/plugins/score-plugin-gfx/Gfx/Syphon/SyphonOutput.mm b/src/plugins/score-plugin-gfx/Gfx/Syphon/SyphonOutput.mm index 57d5239f68..5029f289d6 100644 --- a/src/plugins/score-plugin-gfx/Gfx/Syphon/SyphonOutput.mm +++ b/src/plugins/score-plugin-gfx/Gfx/Syphon/SyphonOutput.mm @@ -173,7 +173,7 @@ void destroyOutput() override { public: SyphonRenderer(const score::gfx::RenderState& state, const SyphonNode& parent) - : score::gfx::OutputNodeRenderer{} + : score::gfx::OutputNodeRenderer{parent} { m_rt.renderTarget = parent.m_renderTarget; m_rt.renderPass = state.renderPassDescriptor;