1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 21:07:36 +00:00

LibGfx: Add support for dashed lines

Non-configurable for now.
This commit is contained in:
Linus Groh 2020-05-10 16:17:26 +01:00 committed by Andreas Kling
parent 3667677008
commit 0669dbcf5d
3 changed files with 32 additions and 11 deletions

View file

@ -47,6 +47,7 @@ public:
enum class LineStyle {
Solid,
Dotted,
Dashed,
};
void clear_rect(const Rect&, Color);