mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 22:02:44 +00:00 
			
		
		
		
	 b027466f41
			
		
	
	
		b027466f41
		
	
	
	
	
		
			
			You can now put the WindowServer into "flash flush" mode by doing: $ wsctl -f 1 To disable it, somewhat obviously: $ wsctl -f 0
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			641 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			641 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/WindowServerConnection.h>
 | |
| 
 | |
| int main(int argc, char** argv)
 | |
| {
 | |
|     auto app = GUI::Application::construct(argc, argv);
 | |
| 
 | |
|     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(argc, argv);
 | |
| 
 | |
|     if (flash_flush != -1) {
 | |
|         GUI::WindowServerConnection::the().async_set_flash_flush(flash_flush);
 | |
|     }
 | |
|     return 0;
 | |
| }
 |