// d3dukmdt.h
typedef enum D3DDDI_FLIPINTERVAL_TYPE {
D3DDDI_FLIPINTERVAL_IMMEDIATE,
D3DDDI_FLIPINTERVAL_ONE,
D3DDDI_FLIPINTERVAL_TWO,
D3DDDI_FLIPINTERVAL_THREE,
D3DDDI_FLIPINTERVAL_FOUR,
D3DDDI_FLIPINTERVAL_IMMEDIATE_ALLOW_TEARING
} ;
View the official Windows Driver Kit DDI referenceNo description available.
The D3DDDI_FLIPINTERVAL_TYPE enumeration type contains values that identify the type of flip that occurs in present operations.
D3DDDI_FLIPINTERVAL_IMMEDIATEIndicates to perform the flip immediately without waiting for a vertical sync to occur.
D3DDDI_FLIPINTERVAL_ONEIndicates to perform the flip on every vertical sync.
D3DDDI_FLIPINTERVAL_TWOIndicates to perform the flip on every other vertical sync.
D3DDDI_FLIPINTERVAL_THREEIndicates to perform the flip on every third vertical sync.
D3DDDI_FLIPINTERVAL_FOURIndicates to perform the flip on every fourth vertical sync.
D3DDDI_FLIPINTERVAL_IMMEDIATE_ALLOW_TEARING