You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Update version retrieval, improve context initialization checks, and enhance UI elements in OnixSourceEditor
- Add a blank element that is overlaid on existing editor elements if the context cannot be initialized
if (!context->isInitialized()) { LOGE("Failed to initialize context."); return; }
56
+
if (context == nullptr || !context->isInitialized()) { LOGE("Failed to initialize context."); return; }
59
57
}
60
58
61
59
OnixSource::~OnixSource()
@@ -67,14 +65,6 @@ OnixSource::~OnixSource()
67
65
}
68
66
}
69
67
70
-
std::string OnixSource::getLiboniVersion()
71
-
{
72
-
if (context != nullptr && context->isInitialized())
73
-
return context->getVersion();
74
-
else
75
-
return"";
76
-
}
77
-
78
68
voidOnixSource::registerParameters()
79
69
{
80
70
addBooleanParameter(Parameter::PROCESSOR_SCOPE, "passthroughA", "Passthrough A", "Enables passthrough mode for e-variant headstages on Port A", false, true);
0 commit comments