| 38 | {"ADBE Vector Filter - RC", pag::ShapeType::RoundCorners}}; |
| 39 | |
| 40 | static pag::ShapeType GetShapeType(const AEGP_StreamRefH& streamHandle) { |
| 41 | std::string matchName = GetStreamMatchName(streamHandle); |
| 42 | auto result = ShapeTypeMap.find(matchName); |
| 43 | if (result == ShapeTypeMap.end()) { |
| 44 | return pag::ShapeType::Unknown; |
| 45 | } |
| 46 | return result->second; |
| 47 | } |
| 48 | |
| 49 | static pag::ShapeElement* GetShape(const AEGP_StreamRefH& streamHandle, int& gradientIndex); |
| 50 |
no test coverage detected