Module: wine Branch: refs/heads/master Commit: e0898f5e0ecc5f42cf0bef87ddf4a3a0bba68f79 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=e0898f5e0ecc5f42cf0bef87... Author: Stefan Dösinger <stefandoesinger(a)gmx.at> Date: Fri Apr 7 01:20:33 2006 +0200 wined3d: Add WINED3DPRESENT_INTERVAL_* definitions. --- include/wine/wined3d_types.h | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/include/wine/wined3d_types.h b/include/wine/wined3d_types.h index e28fbc7..fe88bd1 100644 --- a/include/wine/wined3d_types.h +++ b/include/wine/wined3d_types.h @@ -1045,4 +1045,11 @@ typedef enum _WINED3DDECLUSAGE { #define WINED3DPRESENT_RATE_DEFAULT 0x000000000 +#define WINED3DPRESENT_INTERVAL_DEFAULT 0x00000000 +#define WINED3DPRESENT_INTERVAL_ONE 0x00000001 +#define WINED3DPRESENT_INTERVAL_TWO 0x00000002 +#define WINED3DPRESENT_INTERVAL_THREE 0x00000004 +#define WINED3DPRESENT_INTERVAL_FOUR 0x00000008 +#define WINED3DPRESENT_INTERVAL_IMMEDIATE 0x80000000 + #endif