mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-05-02 15:53:51 +00:00
Expose wrapper backend mode in runtime diagnostics
This commit is contained in:
parent
ea2d452f4b
commit
45c2ed7a64
5 changed files with 39 additions and 1 deletions
|
|
@ -76,6 +76,7 @@ public:
|
|||
bool isFrameGenerationReady() const { return frameGenerationReady_; }
|
||||
const std::string& loadedLibraryPath() const { return loadedLibraryPath_; }
|
||||
LoadPathKind loadPathKind() const { return loadPathKind_; }
|
||||
const std::string& wrapperBackendName() const { return wrapperBackendName_; }
|
||||
const std::string& lastError() const { return lastError_; }
|
||||
|
||||
private:
|
||||
|
|
@ -92,6 +93,7 @@ private:
|
|||
bool ready_ = false;
|
||||
bool frameGenerationReady_ = false;
|
||||
LoadPathKind loadPathKind_ = LoadPathKind::None;
|
||||
std::string wrapperBackendName_;
|
||||
std::string lastError_;
|
||||
|
||||
struct RuntimeFns;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue