Hi,
For some reason I am trying to configure some SwapChain settings during the app is running. I am going to configure those things:
- SWAP_EFFECT
- FULLSCREEN MODE
- BUFFER COUNT
I know it is weird to do so, since most games mainly change fullscreen/resolution on the run, which can be done by IDXGISwapChain functions. There is no function to change swap effect or buffer count (at least I haven't find them), so I'm trying to rebuild the swapchain. Is there any method to achieve this?
Thanks,
CopZ_33