Fixed trigger
All checks were successful
CI / React UI Build (push) Successful in 10s
CI / Native Windows Build And Tests (push) Successful in 2m57s
CI / Windows Release Package (push) Has been skipped

This commit is contained in:
Aiden
2026-05-12 18:11:43 +10:00
parent 5fb4607d8c
commit 6e32941675
5 changed files with 49 additions and 4 deletions

View File

@@ -4,6 +4,7 @@
#include "RuntimeShaderArtifact.h"
#include "SupportedShaderCatalog.h"
#include <chrono>
#include <cstdint>
#include <map>
#include <string>
@@ -91,8 +92,10 @@ private:
static const ShaderParameterDefinition* FindParameterDefinition(const Layer& layer, const std::string& parameterId);
std::string AllocateLayerId();
static RuntimeLayerReadModel ToReadModel(const Layer& layer);
double RuntimeElapsedSeconds() const;
std::vector<Layer> mLayers;
uint64_t mNextLayerNumber = 1;
std::chrono::steady_clock::time_point mStartTime = std::chrono::steady_clock::now();
};
}