| 617 | } |
| 618 | |
| 619 | static void CheckLayerProperty(std::shared_ptr<PAGExportSession> session, pag::Layer* layer, |
| 620 | void*) { |
| 621 | CheckLayerMarkerCharacter(session, layer); |
| 622 | CheckLayerDisplacementMap(session, layer); |
| 623 | CheckLayerFlags(session, layer); |
| 624 | if (layer->type() == pag::LayerType::Text) { |
| 625 | CheckTextLayerAnimator(session, static_cast<pag::TextLayer*>(layer)); |
| 626 | CheckTextLaterTransform(session, static_cast<pag::TextLayer*>(layer)); |
| 627 | CheckTextLayerPathOption(session, static_cast<pag::TextLayer*>(layer)); |
| 628 | } |
| 629 | } |
| 630 | |
| 631 | static void CheckLayerProperty(std::shared_ptr<PAGExportSession> session, |
| 632 | std::vector<pag::Composition*>& compositions) { |
no test coverage detected