PreserveSwapChain and SkipResizeBuffers is now by default false. Hope will not revert this one

This commit is contained in:
cdozdil
2026-05-10 16:47:26 +03:00
parent 81e0d6caa3
commit c6ecb48497
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -100,13 +100,13 @@ OnlyAcceptFirstHudless=auto
; Preserve and prevent releasing FG swapchain
; Might prevents crashes when releasing swapchain
; true or false - Default (auto) is true
; true or false - Default (auto) is false
PreserveSwapChain=auto
; Skip ResizeBuffers call to swapchain
; If old and new descriptions are the same
; Prevents crashes after ResizeBuffers calls
; true or false - Default (auto) is true
; true or false - Default (auto) is false
SkipResizeBuffers=auto
; Normally after ResizeBuffers call swapchain buffers
+2 -2
View File
@@ -471,8 +471,8 @@ class Config
CustomOptional<bool> FGVelocityValidNow { false };
CustomOptional<bool> FGHudlessValidNow { false };
CustomOptional<bool> FGOnlyAcceptFirstHudless { false };
CustomOptional<bool> FGPreserveSwapChain { true };
CustomOptional<bool> FGSkipResizeBuffers { true };
CustomOptional<bool> FGPreserveSwapChain { false };
CustomOptional<bool> FGSkipResizeBuffers { false };
CustomOptional<bool> FGModifyBufferState { false };
CustomOptional<bool> FGModifySCIndex { false };
CustomOptional<FrameTimeSource> FTInput { FrameTimeSource::Input };