| 224 | } |
| 225 | |
| 226 | void CheckStreamExpression(AEGP_StreamRefH streamHandle) { |
| 227 | const auto& Suites = GetSuites(); |
| 228 | const auto& PluginID = GetPluginID(); |
| 229 | |
| 230 | A_Boolean canVary = false; |
| 231 | Suites->StreamSuite4()->AEGP_CanVaryOverTime(streamHandle, &canVary); |
| 232 | if (canVary) { |
| 233 | A_Boolean flag = false; |
| 234 | Suites->StreamSuite4()->AEGP_GetExpressionState(PluginID, streamHandle, &flag); |
| 235 | if (flag) { |
| 236 | PAGExportSessionManager::GetInstance()->recordWarning(AlertInfoType::Expression); |
| 237 | } |
| 238 | } |
| 239 | } |
| 240 | |
| 241 | } // namespace exporter |
no test coverage detected