Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
0f9ccac4
Commit
0f9ccac4
authored
May 03, 2012
by
Henri Verbeet
Committed by
Alexandre Julliard
May 03, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ddraw: Get rid of the member_info typedef.
parent
7f1b26a0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
34 deletions
+30
-34
ddraw_private.h
dlls/ddraw/ddraw_private.h
+3
-3
utils.c
dlls/ddraw/utils.c
+27
-31
No files found.
dlls/ddraw/ddraw_private.h
View file @
0f9ccac4
...
...
@@ -571,13 +571,13 @@ struct flag_info
#define FE(x) { x, #x }
typedef
struct
struct
member_info
{
DWORD
val
;
const
char
*
name
;
const
char
*
name
;
void
(
*
func
)(
const
void
*
);
ptrdiff_t
offset
;
}
member_info
;
};
/* Structure copy */
#define ME(x,f,e) { x, #x, (void (*)(const void *))(f), offsetof(STRUCT, e) }
...
...
dlls/ddraw/utils.c
View file @
0f9ccac4
...
...
@@ -740,11 +740,7 @@ DDRAW_dump_pixelformat_flag(DWORD flagmask)
DDRAW_dump_flags_nolf
(
flagmask
,
flags
,
sizeof
(
flags
)
/
sizeof
(
flags
[
0
]));
}
static
void
DDRAW_dump_members
(
DWORD
flags
,
const
void
*
data
,
const
member_info
*
mems
,
size_t
num_mems
)
static
void
DDRAW_dump_members
(
DWORD
flags
,
const
void
*
data
,
const
struct
member_info
*
mems
,
size_t
num_mems
)
{
unsigned
int
i
;
...
...
@@ -821,32 +817,32 @@ DDRAW_dump_pixelformat(const DDPIXELFORMAT *pf)
void
DDRAW_dump_surface_desc
(
const
DDSURFACEDESC2
*
lpddsd
)
{
#define STRUCT DDSURFACEDESC2
static
const
member_info
members
[]
=
{
ME
(
DDSD_HEIGHT
,
DDRAW_dump_DWORD
,
dwHeight
),
ME
(
DDSD_WIDTH
,
DDRAW_dump_DWORD
,
dwWidth
),
ME
(
DDSD_PITCH
,
DDRAW_dump_DWORD
,
u1
/* lPitch */
),
ME
(
DDSD_LINEARSIZE
,
DDRAW_dump_DWORD
,
u1
/* dwLinearSize */
),
ME
(
DDSD_BACKBUFFERCOUNT
,
DDRAW_dump_DWORD
,
dwBackBufferCount
),
ME
(
DDSD_MIPMAPCOUNT
,
DDRAW_dump_DWORD
,
u2
/* dwMipMapCount */
),
ME
(
DDSD_ZBUFFERBITDEPTH
,
DDRAW_dump_DWORD
,
u2
/* dwZBufferBitDepth */
),
/* This is for 'old-style' D3D */
ME
(
DDSD_REFRESHRATE
,
DDRAW_dump_DWORD
,
u2
/* dwRefreshRate */
),
ME
(
DDSD_ALPHABITDEPTH
,
DDRAW_dump_DWORD
,
dwAlphaBitDepth
),
ME
(
DDSD_LPSURFACE
,
DDRAW_dump_PTR
,
lpSurface
),
ME
(
DDSD_CKDESTOVERLAY
,
DDRAW_dump_DDCOLORKEY
,
u3
/* ddckCKDestOverlay */
),
ME
(
DDSD_CKDESTBLT
,
DDRAW_dump_DDCOLORKEY
,
ddckCKDestBlt
),
ME
(
DDSD_CKSRCOVERLAY
,
DDRAW_dump_DDCOLORKEY
,
ddckCKSrcOverlay
),
ME
(
DDSD_CKSRCBLT
,
DDRAW_dump_DDCOLORKEY
,
ddckCKSrcBlt
),
ME
(
DDSD_PIXELFORMAT
,
DDRAW_dump_pixelformat
,
u4
/* ddpfPixelFormat */
)
};
static
const
member_info
members_caps
[]
=
{
ME
(
DDSD_CAPS
,
DDRAW_dump_DDSCAPS
,
ddsCaps
)
};
static
const
member_info
members_caps2
[]
=
{
ME
(
DDSD_CAPS
,
DDRAW_dump_DDSCAPS2
,
ddsCaps
)
};
static
const
struct
member_info
members
[]
=
{
ME
(
DDSD_HEIGHT
,
DDRAW_dump_DWORD
,
dwHeight
),
ME
(
DDSD_WIDTH
,
DDRAW_dump_DWORD
,
dwWidth
),
ME
(
DDSD_PITCH
,
DDRAW_dump_DWORD
,
u1
/* lPitch */
),
ME
(
DDSD_LINEARSIZE
,
DDRAW_dump_DWORD
,
u1
/* dwLinearSize */
),
ME
(
DDSD_BACKBUFFERCOUNT
,
DDRAW_dump_DWORD
,
dwBackBufferCount
),
ME
(
DDSD_MIPMAPCOUNT
,
DDRAW_dump_DWORD
,
u2
/* dwMipMapCount */
),
ME
(
DDSD_ZBUFFERBITDEPTH
,
DDRAW_dump_DWORD
,
u2
/* dwZBufferBitDepth */
),
/* This is for 'old-style' D3D */
ME
(
DDSD_REFRESHRATE
,
DDRAW_dump_DWORD
,
u2
/* dwRefreshRate */
),
ME
(
DDSD_ALPHABITDEPTH
,
DDRAW_dump_DWORD
,
dwAlphaBitDepth
),
ME
(
DDSD_LPSURFACE
,
DDRAW_dump_PTR
,
lpSurface
),
ME
(
DDSD_CKDESTOVERLAY
,
DDRAW_dump_DDCOLORKEY
,
u3
/* ddckCKDestOverlay */
),
ME
(
DDSD_CKDESTBLT
,
DDRAW_dump_DDCOLORKEY
,
ddckCKDestBlt
),
ME
(
DDSD_CKSRCOVERLAY
,
DDRAW_dump_DDCOLORKEY
,
ddckCKSrcOverlay
),
ME
(
DDSD_CKSRCBLT
,
DDRAW_dump_DDCOLORKEY
,
ddckCKSrcBlt
),
ME
(
DDSD_PIXELFORMAT
,
DDRAW_dump_pixelformat
,
u4
/* ddpfPixelFormat */
)
};
static
const
struct
member_info
members_caps
[]
=
{
ME
(
DDSD_CAPS
,
DDRAW_dump_DDSCAPS
,
ddsCaps
)
};
static
const
struct
member_info
members_caps2
[]
=
{
ME
(
DDSD_CAPS
,
DDRAW_dump_DDSCAPS2
,
ddsCaps
)
};
#undef STRUCT
if
(
NULL
==
lpddsd
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment