mirror of
https://github.com/RGBCube/serenity
synced 2025-05-25 12:25:07 +00:00

This allows you to specify a luminosity range, all pixels that fall outside this range are set to black, the others are untouched.
51 lines
1 KiB
CMake
51 lines
1 KiB
CMake
set(SOURCES
|
|
AffineTransform.cpp
|
|
AntiAliasingPainter.cpp
|
|
Bitmap.cpp
|
|
BitmapMixer.cpp
|
|
BitmapFont.cpp
|
|
BMPLoader.cpp
|
|
BMPWriter.cpp
|
|
CharacterBitmap.cpp
|
|
ClassicStylePainter.cpp
|
|
ClassicWindowTheme.cpp
|
|
Color.cpp
|
|
CursorParams.cpp
|
|
DDSLoader.cpp
|
|
DisjointRectSet.cpp
|
|
Emoji.cpp
|
|
Filters/ColorBlindnessFilter.cpp
|
|
Filters/FastBoxBlurFilter.cpp
|
|
Filters/LumaFilter.cpp
|
|
FontDatabase.cpp
|
|
GIFLoader.cpp
|
|
ICOLoader.cpp
|
|
ImageDecoder.cpp
|
|
JPGLoader.cpp
|
|
Painter.cpp
|
|
Palette.cpp
|
|
Path.cpp
|
|
PBMLoader.cpp
|
|
PGMLoader.cpp
|
|
PNGLoader.cpp
|
|
PNGWriter.cpp
|
|
PPMLoader.cpp
|
|
Point.cpp
|
|
QOILoader.cpp
|
|
Rect.cpp
|
|
ShareableBitmap.cpp
|
|
Size.cpp
|
|
StylePainter.cpp
|
|
SystemTheme.cpp
|
|
TextDirection.cpp
|
|
TextLayout.cpp
|
|
Triangle.cpp
|
|
TrueTypeFont/Font.cpp
|
|
TrueTypeFont/Glyf.cpp
|
|
TrueTypeFont/Cmap.cpp
|
|
Typeface.cpp
|
|
WindowTheme.cpp
|
|
)
|
|
|
|
serenity_lib(LibGfx gfx)
|
|
target_link_libraries(LibGfx LibM LibCompress LibCore LibTextCodec LibIPC)
|