blob: bc40a4cacfd68afc86652f0d1d08c1166a1e3c40 [file] [log] [blame]
#ifndef _RIVE_STROKE_EFFECT_HPP_
#define _RIVE_STROKE_EFFECT_HPP_
namespace rive {
class RenderPath;
class MetricsPath;
class StrokeEffect {
public:
virtual RenderPath* effectPath(MetricsPath* source) = 0;
virtual void invalidateEffect() = 0;
};
} // namespace rive
#endif