mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-07 20:31:04 +03:00
7fb32b6682
Before this, drawing a 1x1 bitmap scaled up to MxN would only fill M/2 x N/2 pixel, due to source_point going outside (0, 0).
22 lines
478 B
CMake
22 lines
478 B
CMake
set(TEST_SOURCES
|
|
BenchmarkGfxPainter.cpp
|
|
BenchmarkJPEGLoader.cpp
|
|
TestDeltaE.cpp
|
|
TestFontHandling.cpp
|
|
TestGfxBitmap.cpp
|
|
TestICCProfile.cpp
|
|
TestImageDecoder.cpp
|
|
TestPainter.cpp
|
|
TestParseISOBMFF.cpp
|
|
TestRect.cpp
|
|
TestScalingFunctions.cpp
|
|
TestWOFF.cpp
|
|
TestWOFF2.cpp
|
|
)
|
|
|
|
foreach(source IN LISTS TEST_SOURCES)
|
|
serenity_test("${source}" LibGfx LIBS LibGfx)
|
|
endforeach()
|
|
|
|
install(DIRECTORY test-inputs DESTINATION usr/Tests/LibGfx)
|