Cleanup: quiet missing-declarations warnings

This commit is contained in:
Campbell Barton
2025-03-17 21:44:08 +11:00
parent 4e33abdafe
commit 5aec1308e6
2 changed files with 2 additions and 2 deletions

View File

@@ -35,7 +35,7 @@ void Engine::free_static()
using namespace blender::eevee;
void eevee_render(RenderEngine *engine, Depsgraph *depsgraph)
static void eevee_render(RenderEngine *engine, Depsgraph *depsgraph)
{
Instance *instance = nullptr;

View File

@@ -748,7 +748,7 @@ static void workbench_render_update_passes(RenderEngine *engine,
}
}
void workbench_render(RenderEngine *engine, Depsgraph *depsgraph)
static void workbench_render(RenderEngine *engine, Depsgraph *depsgraph)
{
DRW_render_to_image(engine, depsgraph, workbench_render_to_image, [](RenderResult *) {});
}