blob: 37f9fe9ea7ff6bcc7b5e7079484cf16e65cc2235 [file] [log] [blame] [edit]
#ifndef _RIVE_FILL_HPP_
#define _RIVE_FILL_HPP_
#include "rive/generated/shapes/paint/fill_base.hpp"
#include "rive/shapes/path_flags.hpp"
namespace rive
{
class Fill : public FillBase
{
public:
RenderPaint* initRenderPaint(ShapePaintMutator* mutator) override;
PathFlags pathFlags() const override;
void applyTo(RenderPaint* renderPaint, float opacityModifier) override;
ShapePaintPath* pickPath(ShapePaintContainer* shape) const override;
};
} // namespace rive
#endif