LibWeb: Implement missing CanvasPath::lineTo() steps

This commit is contained in:
MacDue 2024-03-20 21:21:47 +00:00 committed by Andreas Kling
commit d951ee399f
Notes: sideshowbarker 2024-07-18 03:35:30 +09:00
2 changed files with 21 additions and 1 deletions

View file

@ -48,6 +48,8 @@ protected:
private:
Gfx::AffineTransform active_transform() const;
void ensure_subpath(float x, float y);
JS::NonnullGCPtr<Bindings::PlatformObject> m_self;
Optional<CanvasState const&> m_canvas_state;
Gfx::Path m_path;