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 74da49d commit b46be6c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/plugins/score-plugin-gfx/Gfx/Spout/SpoutInput.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,9 @@ class SpoutInputNode::Renderer : public score::gfx::NodeRenderer
}
}

void update(score::gfx::RenderList& renderer, QRhiResourceUpdateBatch& res) override
void update(
score::gfx::RenderList& renderer, QRhiResourceUpdateBatch& res,
score::gfx::Edge* e) override
{
res.updateDynamicBuffer(
m_processUBO, 0, sizeof(score::gfx::ProcessUBO), &this->node.standardUBO);
Expand Down
4 changes: 3 additions & 1 deletion src/plugins/score-plugin-gfx/Gfx/Syphon/SyphonInput.mm
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,9 @@ void rebuildTexture(SyphonOpenGLImage* img)
}

GLuint currentTex = 0;
void update(score::gfx::RenderList& renderer, QRhiResourceUpdateBatch& res) override
void update(score::gfx::RenderList &renderer,
QRhiResourceUpdateBatch &res,
score::gfx::Edge *e) override
{
if(!enabled)
{
Expand Down

0 comments on commit b46be6c

Please sign in to comment.