1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 05:27:45 +00:00

LibGfx: Start a very basic anti-aliased Painter implementation

This can currently draw AA lines (and by proxy, AA paths), and passes
all its output through a 2D affine transform to an underlying
Gfx::Painter.
This commit is contained in:
Ali Mohammad Pur 2021-09-17 12:01:48 +04:30 committed by Ali Mohammad Pur
parent f4ea235a33
commit e2cd558101
5 changed files with 364 additions and 157 deletions

View file

@ -1,5 +1,6 @@
set(SOURCES
AffineTransform.cpp
AntiAliasingPainter.cpp
Bitmap.cpp
BitmapFont.cpp
BMPLoader.cpp