blob: 63e5ed28571ebf4ff0b07e8952b022ea7b1e2cb9 [file]
#ifndef _RIVE_FILL_HPP_
#define _RIVE_FILL_HPP_
#include "generated/shapes/paint/fill_base.hpp"
#include "shapes/path_space.hpp"
namespace rive
{
class Fill : public FillBase
{
public:
RenderPaint* initRenderPaint(ShapePaintMutator* mutator) override;
PathSpace pathSpace() const override;
void draw(Renderer* renderer, CommandPath* path) override;
};
} // namespace rive
#endif