// dxgiddi.h
typedef enum DXGI_DDI_FLIP_INTERVAL_TYPE {
DXGI_DDI_FLIP_INTERVAL_IMMEDIATE,
DXGI_DDI_FLIP_INTERVAL_ONE,
DXGI_DDI_FLIP_INTERVAL_TWO,
DXGI_DDI_FLIP_INTERVAL_THREE,
DXGI_DDI_FLIP_INTERVAL_FOUR,
DXGI_DDI_FLIP_INTERVAL_IMMEDIATE_ALLOW_TEARING
} ;
View the official Windows Driver Kit DDI referenceNo description available.
The DXGI_DDI_FLIP_INTERVAL_TYPE enumeration type contains values that identify the type of flip that occurs in present operations.
DXGI_DDI_FLIP_INTERVAL_IMMEDIATEIndicates to perform the flip immediately without waiting for a vertical sync to occur.
DXGI_DDI_FLIP_INTERVAL_ONEIndicates to perform the flip on every vertical sync.
DXGI_DDI_FLIP_INTERVAL_TWOIndicates to perform the flip on every other vertical sync.
DXGI_DDI_FLIP_INTERVAL_THREEIndicates to perform the flip on every third vertical sync.
DXGI_DDI_FLIP_INTERVAL_FOURIndicates to perform the flip on every fourth vertical sync.
DXGI_DDI_FLIP_INTERVAL_IMMEDIATE_ALLOW_TEARING