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 3, 2025
1 parent b46be6c commit 8e8c8ef
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/plugins/score-plugin-gfx/Gfx/Spout/SpoutInput.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ class SpoutInputNode::Renderer : public score::gfx::NodeRenderer
{
public:
explicit Renderer(const SpoutInputNode& n)
: node{n}
: score::gfx::NodeRenderer{n}
, node{n}
{
}

Expand Down
5 changes: 4 additions & 1 deletion src/plugins/score-plugin-gfx/Gfx/Syphon/SyphonInput.mm
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@ explicit SyphonInputNode(const InputSettings& s)
class SyphonInputNode::Renderer : public score::gfx::NodeRenderer
{
public:
explicit Renderer(const SyphonInputNode& n): node{n} { }
explicit Renderer(const SyphonInputNode &n)
: score::gfx::NodeRenderer{n}
, node{n}
{}

private:
const SyphonInputNode& node;
Expand Down

0 comments on commit 8e8c8ef

Please sign in to comment.