From: Biswapriyo Nath Subject: [PATCH v2 3/5] include/ddraw.h: Add missing dwFlags of DD_BLTDATA struct. Message-Id: Date: Wed, 23 Sep 2020 20:53:44 +0530 From 37c3901dd355c18ba92677ad729a34daad7ceae8 Mon Sep 17 00:00:00 2001 From: Biswapriyo Nath Date: Wed, 23 Sep 2020 20:52:11 +0530 Subject: [PATCH v2 3/5] include/ddraw.h: Add missing dwFlags of DD_BLTDATA struct. Signed-off-by: Biswapriyo Nath --- include/ddraw.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/ddraw.h b/include/ddraw.h index cb77df1..0d3c9cf 100644 --- a/include/ddraw.h +++ b/include/ddraw.h @@ -227,6 +227,10 @@ typedef struct IDirectDrawGammaControl *LPDIRECTDRAWGAMMACONTROL; #define DDBLT_WAIT 0x01000000 #define DDBLT_DEPTHFILL 0x02000000 #define DDBLT_DONOTWAIT 0x08000000 +#define DDBLT_PRESENTATION 0x10000000 +#define DDBLT_LAST_PRESENTATION 0x20000000 +#define DDBLT_EXTENDED_FLAGS 0x40000000 +#define DDBLT_EXTENDED_LINEAR_CONTENT 0x00000004 /* dwTrans for BltFast */ #define DDBLTFAST_NOCOLORKEY 0x00000000 -- 2.27.0