Clean up pass
All checks were successful
CI / React UI Build (push) Successful in 10s
CI / Native Windows Build And Tests (push) Successful in 2m35s
CI / Windows Release Package (push) Successful in 2m38s

This commit is contained in:
Aiden
2026-05-11 16:52:53 +10:00
parent 06f3dd4942
commit e459155d51
6 changed files with 14 additions and 30 deletions

View File

@@ -1,10 +1,13 @@
#include "RuntimeServiceLiveBridge.h"
#include "RenderEngine.h"
#include "RuntimeServices.h"
#include <windows.h>
void RuntimeServiceLiveBridge::DrainServiceEvents(RuntimeServices& runtimeServices, RenderEngine& renderEngine)
namespace
{
void DrainServiceEvents(RuntimeServices& runtimeServices, RenderEngine& renderEngine)
{
std::vector<RuntimeServices::AppliedOscUpdate> appliedOscUpdates;
std::vector<RuntimeServices::CompletedOscCommit> completedOscCommits;
@@ -31,7 +34,7 @@ void RuntimeServiceLiveBridge::DrainServiceEvents(RuntimeServices& runtimeServic
renderEngine.UpdateOscOverlayState(overlayUpdates, overlayCommitCompletions);
}
void RuntimeServiceLiveBridge::QueueServiceCommitRequests(
void QueueServiceCommitRequests(
RuntimeServices& runtimeServices,
const std::vector<RenderEngine::OscOverlayCommitRequest>& commitRequests)
{
@@ -51,6 +54,7 @@ void RuntimeServiceLiveBridge::QueueServiceCommitRequests(
}
}
}
}
bool RuntimeServiceLiveBridge::PrepareLiveRenderLayerStates(
RuntimeServices& runtimeServices,