From e0897ac850673a2c38853ddf85216d4401c6a14f Mon Sep 17 00:00:00 2001 From: Biswapriyo Nath <[email protected]> Date: Sun, 27 Sep 2020 14:58:06 +0530 Subject: [PATCH] headers/ddraw.h: Add missing dwFlags of DD_BLTDATA struct.
Signed-off-by: Biswapriyo Nath <[email protected]> --- mingw-w64-headers/include/ddraw.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mingw-w64-headers/include/ddraw.h b/mingw-w64-headers/include/ddraw.h index 45ece21..22ebfa2 100644 --- a/mingw-w64-headers/include/ddraw.h +++ b/mingw-w64-headers/include/ddraw.h @@ -228,6 +228,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
_______________________________________________ Mingw-w64-public mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mingw-w64-public
