| 26 | class SkPathEffectWrapper : public PathEffect { |
| 27 | public: |
| 28 | explicit SkPathEffectWrapper(sk_sp<SkPathEffect> effect) : pathEffect(std::move(effect)) { |
| 29 | } |
| 30 | |
| 31 | bool filterPath(Path* path) const override { |
| 32 | if (path == nullptr) { |
nothing calls this directly
no outgoing calls
no test coverage detected