mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-14 13:07:54 +00:00
[host] dxgi: increase maxTextures default to 4
Testing shows that at high frame rates the default of 3 is hampering performance, increasing this to 4 yields a substantial performance improvement.
This commit is contained in:
parent
87568f97eb
commit
0d9b0bd367
1 changed files with 1 additions and 1 deletions
|
@ -143,7 +143,7 @@ static void dxgi_initOptions(void)
|
|||
.name = "maxTextures",
|
||||
.description = "The maximum number of frames to buffer before skipping",
|
||||
.type = OPTION_TYPE_INT,
|
||||
.value.x_int = 3
|
||||
.value.x_int = 4
|
||||
},
|
||||
{
|
||||
.module = "dxgi",
|
||||
|
|
Loading…
Reference in a new issue