mirror of
				https://github.com/PancakeTAS/lsfg-vk.git
				synced 2025-10-30 07:01:10 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			38 lines
		
	
	
	
		
			683 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
	
		
			683 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <string>
 | |
| 
 | |
| const std::string DEFAULT_CONFIG = R"(version = 1
 | |
| [global]
 | |
| # override the location of Lossless Scaling
 | |
| # dll = "/games/Lossless Scaling/Lossless.dll"
 | |
| # force-disable fp16 (use on older nvidia cards)
 | |
| # no_fp16 = true
 | |
| 
 | |
| # [[game]] # example entry
 | |
| # exe = "Game.exe"
 | |
| #
 | |
| # multiplier = 3
 | |
| # flow_scale = 0.7
 | |
| # performance_mode = true
 | |
| # hdr_mode = false
 | |
| #
 | |
| # experimental_present_mode = "fifo"
 | |
| 
 | |
| [[game]] # default vkcube entry
 | |
| exe = "vkcube"
 | |
| 
 | |
| multiplier = 4
 | |
| performance_mode = true
 | |
| 
 | |
| [[game]] # default benchmark entry
 | |
| exe = "benchmark"
 | |
| 
 | |
| multiplier = 4
 | |
| performance_mode = false
 | |
| 
 | |
| [[game]] # override Genshin Impact
 | |
| exe = "GenshinImpact.exe"
 | |
| 
 | |
| multiplier = 3
 | |
| )";
 | 
