mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-20 16:28:54 +00:00
LibGfx: Add Painter::fill_ellipse()
This commit is contained in:
parent
31359e3ad2
commit
8520d3a425
Notes:
sideshowbarker
2024-07-19 06:10:49 +09:00
Author: https://github.com/bugaevc
Commit: 8520d3a425
Pull-request: https://github.com/SerenityOS/serenity/pull/2362
Reviewed-by: https://github.com/alimpfard
Reviewed-by: https://github.com/linusg
2 changed files with 20 additions and 0 deletions
|
@ -56,6 +56,7 @@ public:
|
|||
void fill_rect_with_checkerboard(const Rect&, const Size&, Color color_dark, Color color_light);
|
||||
void fill_rect_with_gradient(Orientation, const Rect&, Color gradient_start, Color gradient_end);
|
||||
void fill_rect_with_gradient(const Rect&, Color gradient_start, Color gradient_end);
|
||||
void fill_ellipse(const Rect&, Color);
|
||||
void draw_rect(const Rect&, Color, bool rough = false);
|
||||
void draw_bitmap(const Point&, const CharacterBitmap&, Color = Color());
|
||||
void draw_bitmap(const Point&, const GlyphBitmap&, Color = Color());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue