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

Signed-off-by: Biswapriyo Nath <nathbappai@gmail.com>
Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Biswapriyo Nath 2020-09-22 09:46:41 +05:30 committed by Alexandre Julliard
parent 3b3c8619c8
commit 7a4ca1b0b2
1 changed files with 6 additions and 0 deletions

View File

@ -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*/