2

I found swap chain created with flip model (DXGI_SWAP_EFFECT_FLIP_SEQUENTIAL or DXGI_SWAP_EFFECT_FLIP_DISCARD) was locked to VSync (1/60 sec), calling IDXGISwapChain1::Present1 method with SyncInterval set to 0 as follows doesn't work.

swap_chain->Present1(0, 0, &param);

Does anyone know how to disable VSync for DXGI flip model?

Glenn Slayden
  • 17,543
  • 3
  • 114
  • 108
H23120
  • 337
  • 4
  • 12

1 Answers1

3

What is your version of Windows 10? UWP and windowed swap chain used to always be locked to VSync, prior to the 1511 build.

Glenn Slayden
  • 17,543
  • 3
  • 114
  • 108
galop1n
  • 8,573
  • 22
  • 36
  • 1
    thank you so much! My previous version was 1511(OS Build 10586.713), after I upgraded it to 1607, the latest version, the problem is gone! :D – H23120 Dec 20 '16 at 05:12