blob: 2276d947e403d0e959ce8b2c16abe9bf96fcdab6 [file] [log] [blame]
#ifndef _RIVE_STROKE_EFFECT_HPP_
#define _RIVE_STROKE_EFFECT_HPP_
#include "rive/rive_types.hpp"
namespace rive
{
class Factory;
class RenderPath;
class MetricsPath;
class StrokeEffect
{
public:
virtual ~StrokeEffect() {}
virtual RenderPath* effectPath(MetricsPath* source, Factory*) = 0;
virtual void invalidateEffect() = 0;
};
} // namespace rive
#endif