GROUND WORK PHASE 3
All checks were successful
CI / React UI Build (push) Successful in 11s
CI / Native Windows Build And Tests (push) Successful in 2m32s
CI / Windows Release Package (push) Successful in 2m34s

This commit is contained in:
Aiden
2026-05-11 16:32:51 +10:00
parent 00b6ad4c36
commit 0808171677
9 changed files with 582 additions and 246 deletions

View File

@@ -6,6 +6,7 @@
#include "OpenGLShaderPrograms.h"
#include "HealthTelemetry.h"
#include "RuntimeCoordinator.h"
#include "RuntimeLiveState.h"
#include "RuntimeSnapshotProvider.h"
#include <windows.h>
@@ -132,20 +133,6 @@ private:
HDC mHdc;
HGLRC mHglrc;
struct OscOverlayState
{
std::string layerKey;
std::string parameterKey;
JsonValue targetValue;
ShaderParameterValue currentValue;
bool hasCurrentValue = false;
std::chrono::steady_clock::time_point lastUpdatedTime;
std::chrono::steady_clock::time_point lastAppliedTime;
uint64_t generation = 0;
uint64_t pendingCommitGeneration = 0;
bool commitQueued = false;
};
void ApplyOscOverlays(
std::vector<RuntimeRenderState>& states,
bool allowCommit,
@@ -158,5 +145,5 @@ private:
unsigned mCachedRenderStateWidth = 0;
unsigned mCachedRenderStateHeight = 0;
std::chrono::steady_clock::time_point mLastPreviewPresentTime;
std::map<std::string, OscOverlayState> mOscOverlayStates;
RuntimeLiveState mRuntimeLiveState;
};