This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Place the following lines at the bottom of your game's rtx.conf file. | |
## I have done my best to find the config options that net the bigest FPS gains without completely giving up the additional quality of RT. | |
## In the case of Portal RTX (Both of them), these do result in minor lighting glitches in a few cases, however it's rather minor. | |
## For me, the tweaks applied on-top of just a 30% resolution scaling factor gives the game another 10-20% increase in FPS depending on the scene. | |
## If you want to see a video of how the game looks with these changes, here's a video I recorded: https://www.youtube.com/watch?v=pYuLyxiiqwg | |
# Tweaks to the max number of bounces & light interactions. | |
# primaryRayMaxInteractions was only reduced to 2 as anything lower completely breaks many of the lighting effects in the game. | |
rtx.pathMaxBounces = 1 | |
rtx.primaryRayMaxInteractions=2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
Title w10onARM Setup batch | |
echo Blocking junk apps & echo. | |
reg load HKLM\DEFAULT c:\users\default\ntuser.dat | |
reg add "HKLM\DEFAULT\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v PreInstalledAppsEnabled /t REG_DWORD /d 0 /f | |
reg add "HKLM\DEFAULT\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v OemPreInstalledAppsEnabled /t REG_DWORD /d 0 /f | |
reg unload HKLM\DEFAULT | |
echo Removing useless windows components & echo. |