Skip to content

Commit

Permalink
ci: compatibility fixes for spout, syphon
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed Feb 6, 2025
1 parent 597d2ef commit 84a6918
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/plugins/score-plugin-gfx/Gfx/Spout/SpoutOutput.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/score-plugin-gfx/Gfx/Syphon/SyphonOutput.mm
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 84a6918

Please sign in to comment.