Biswapriyo Nath : include/ddraw.h: Add missing members in DDPIXELFORMAT struct.

Alexandre Julliard julliard at winehq.org
Wed Sep 23 15:47:14 CDT 2020


Module: wine
Branch: master
Commit: 7a4ca1b0b2b5203b7ec9c7b56f9ccf25691ba91f
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=7a4ca1b0b2b5203b7ec9c7b56f9ccf25691ba91f

Author: Biswapriyo Nath <nathbappai at gmail.com>
Date:   Tue Sep 22 10:04:41 2020 +0530

include/ddraw.h: Add missing members in DDPIXELFORMAT struct.

Signed-off-by: Biswapriyo Nath <nathbappai at gmail.com>
Signed-off-by: Henri Verbeet <hverbeet at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 include/ddraw.h | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/include/ddraw.h b/include/ddraw.h
index cb77df19f0..528c70aa21 100644
--- a/include/ddraw.h
+++ b/include/ddraw.h
@@ -743,6 +743,7 @@ typedef struct _DDPIXELFORMAT {
 	DWORD	dwAlphaBitDepth;        /* C: how many bits for alpha channels*/
 	DWORD	dwLuminanceBitCount;
 	DWORD	dwBumpBitCount;
+	DWORD	dwPrivateFormatBitCount;
     } DUMMYUNIONNAME1;
     union {
 	DWORD	dwRBitMask;             /* 10: mask for red bit*/
@@ -750,12 +751,17 @@ typedef struct _DDPIXELFORMAT {
 	DWORD	dwStencilBitDepth;
 	DWORD	dwLuminanceBitMask;
 	DWORD	dwBumpDuBitMask;
+	DWORD	dwOperations;
     } DUMMYUNIONNAME2;
     union {
 	DWORD	dwGBitMask;             /* 14: mask for green bits*/
 	DWORD	dwUBitMask;             /* 14: mask for U bits*/
 	DWORD	dwZBitMask;
 	DWORD	dwBumpDvBitMask;
+	struct {
+		WORD	wFlipMSTypes;
+		WORD	wBltMSTypes;
+	} MultiSampleCaps;
     } DUMMYUNIONNAME3;
     union {
 	DWORD   dwBBitMask;             /* 18: mask for blue bits*/




More information about the wine-cvs mailing list