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
if (!context->isInitialized()) { LOGE("Failed to initialize context."); return; }
56
+
if (context == nullptr || !context->isInitialized()) { LOGE("Failed to initialize context."); return; }
65
57
}
66
58
67
59
OnixSource::~OnixSource()
@@ -73,14 +65,6 @@ OnixSource::~OnixSource()
73
65
}
74
66
}
75
67
76
-
std::string OnixSource::getLiboniVersion()
77
-
{
78
-
if (context != nullptr && context->isInitialized())
79
-
return context->getVersion();
80
-
else
81
-
return"";
82
-
}
83
-
84
68
voidOnixSource::registerParameters()
85
69
{
86
70
addBooleanParameter(Parameter::PROCESSOR_SCOPE, "passthroughA", "Passthrough A", "Enables passthrough mode for e-variant headstages on Port A", false, true);
0 commit comments