| 88 | } |
| 89 | |
| 90 | static TextAnimatorsType GetTextAnimatorsType(const AEGP_StreamRefH& streamHandle) { |
| 91 | std::string matchName = GetStreamMatchName(streamHandle); |
| 92 | auto result = TextAnimatorsTypeMap.find(matchName); |
| 93 | if (result == TextAnimatorsTypeMap.end()) { |
| 94 | return TextAnimatorsType::Unknown; |
| 95 | } |
| 96 | return result->second; |
| 97 | } |
| 98 | |
| 99 | static TextAnimatorType GetTextAnimatorType(const AEGP_StreamRefH& streamHandle) { |
| 100 | std::string matchName = GetStreamMatchName(streamHandle); |
no test coverage detected