From: Biswapriyo Nath Subject: [PATCH 3/5] include/ddraw.h: Add missing dwFlags of DD_BLTDATA struct. Message-Id: Date: Tue, 22 Sep 2020 09:56:50 +0530 From 0e11370f64c04720c692178b3d1c49c6de045862 Mon Sep 17 00:00:00 2001 From: Biswapriyo Nath Date: Tue, 22 Sep 2020 09:46:41 +0530 Subject: [PATCH 3/5] include/ddraw.h: Add missing dwFlags of DD_BLTDATA struct. Signed-off-by: Biswapriyo Nath --- include/ddraw.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/include/ddraw.h b/include/ddraw.h index 6f7cc0e..5af76d2 100644 --- a/include/ddraw.h +++ b/include/ddraw.h @@ -226,7 +226,11 @@ typedef struct IDirectDrawGammaControl *LPDIRECTDRAWGAMMACONTROL; #define DDBLT_ZBUFFERSRCOVERRIDE 0x00800000 #define DDBLT_WAIT 0x01000000 #define DDBLT_DEPTHFILL 0x02000000 -#define DDBLT_DONOTWAIT 0x08000000 +#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