mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 08:24:58 +00:00
test-jpeg-roundtrip: Add a few more colors
This commit is contained in:
parent
25efe65a83
commit
96e8debf0b
1 changed files with 9 additions and 0 deletions
|
@ -78,15 +78,24 @@ ErrorOr<int> serenity_main(Main::Arguments)
|
|||
TRY(test(Gfx::Color::Green, stats));
|
||||
TRY(test(Gfx::Color::Blue, stats));
|
||||
|
||||
TRY(test(Gfx::Color::LightBlue, stats));
|
||||
|
||||
TRY(test(Gfx::Color::MidRed, stats));
|
||||
TRY(test(Gfx::Color::MidGreen, stats));
|
||||
TRY(test(Gfx::Color::MidBlue, stats));
|
||||
|
||||
TRY(test(Gfx::Color::DarkRed, stats));
|
||||
TRY(test(Gfx::Color::DarkGreen, stats));
|
||||
TRY(test(Gfx::Color::DarkBlue, stats));
|
||||
|
||||
TRY(test(Gfx::Color::Cyan, stats));
|
||||
TRY(test(Gfx::Color::Magenta, stats));
|
||||
TRY(test(Gfx::Color::Yellow, stats));
|
||||
|
||||
TRY(test(Gfx::Color::Black, stats));
|
||||
TRY(test(Gfx::Color::DarkGray, stats));
|
||||
TRY(test(Gfx::Color::MidGray, stats));
|
||||
TRY(test(Gfx::Color::LightGray, stats));
|
||||
TRY(test(Gfx::Color::White, stats));
|
||||
|
||||
outln();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue