mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
935d023967
This was done with CLion's automatic rename feature.
24 lines
657 B
C++
24 lines
657 B
C++
/*
|
|
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibCore/ArgsParser.h>
|
|
#include <LibGUI/Application.h>
|
|
#include <LibGUI/ConnectionToWindowServer.h>
|
|
|
|
ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|
{
|
|
auto app = GUI::Application::construct(arguments);
|
|
|
|
int flash_flush = -1;
|
|
Core::ArgsParser args_parser;
|
|
args_parser.add_option(flash_flush, "Flash flush (repaint) rectangles", "flash-flush", 'f', "0/1");
|
|
args_parser.parse(arguments);
|
|
|
|
if (flash_flush != -1)
|
|
GUI::ConnectionToWindowServer::the().async_set_flash_flush(flash_flush);
|
|
return 0;
|
|
}
|