[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:
Geoffrey McRae 2021-06-06 01:35:00 +10:00
parent 87568f97eb
commit 0d9b0bd367

View file

@ -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",