Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
19c5534c
Commit
19c5534c
authored
Oct 10, 2006
by
Ivan Gyurdiev
Committed by
Alexandre Julliard
Oct 11, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: D3DDEVTYPE: Consistently use in WINED3D namespace.
parent
fb0c932f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
utils.c
dlls/wined3d/utils.c
+5
-5
wined3d_private.h
dlls/wined3d/wined3d_private.h
+2
-2
No files found.
dlls/wined3d/utils.c
View file @
19c5534c
...
...
@@ -216,15 +216,15 @@ const char* debug_d3dformat(WINED3DFORMAT fmt) {
}
}
const
char
*
debug_d3ddevicetype
(
D3DDEVTYPE
devtype
)
{
const
char
*
debug_d3ddevicetype
(
WINE
D3DDEVTYPE
devtype
)
{
switch
(
devtype
)
{
#define DEVTYPE_TO_STR(dev) case dev: return #dev
DEVTYPE_TO_STR
(
D3DDEVTYPE_HAL
);
DEVTYPE_TO_STR
(
D3DDEVTYPE_REF
);
DEVTYPE_TO_STR
(
D3DDEVTYPE_SW
);
DEVTYPE_TO_STR
(
WINE
D3DDEVTYPE_HAL
);
DEVTYPE_TO_STR
(
WINE
D3DDEVTYPE_REF
);
DEVTYPE_TO_STR
(
WINE
D3DDEVTYPE_SW
);
#undef DEVTYPE_TO_STR
default:
FIXME
(
"Unrecognized %u D3DDEVTYPE!
\n
"
,
devtype
);
FIXME
(
"Unrecognized %u
WINE
D3DDEVTYPE!
\n
"
,
devtype
);
return
"unrecognized"
;
}
}
...
...
dlls/wined3d/wined3d_private.h
View file @
19c5534c
...
...
@@ -529,7 +529,7 @@ typedef struct IWineD3DDeviceImpl
/* Internal use fields */
WINED3DDEVICE_CREATION_PARAMETERS
createParms
;
UINT
adapterNo
;
D3DDEVTYPE
devType
;
WINED3DDEVTYPE
devType
;
IWineD3DSwapChain
**
swapchains
;
uint
NumberOfSwapChains
;
...
...
@@ -1245,7 +1245,7 @@ extern IWineD3DSwapChainVtbl IWineD3DSwapChain_Vtbl;
/* Trace routines */
const
char
*
debug_d3dformat
(
WINED3DFORMAT
fmt
);
const
char
*
debug_d3ddevicetype
(
D3DDEVTYPE
devtype
);
const
char
*
debug_d3ddevicetype
(
WINE
D3DDEVTYPE
devtype
);
const
char
*
debug_d3dresourcetype
(
WINED3DRESOURCETYPE
res
);
const
char
*
debug_d3dusage
(
DWORD
usage
);
const
char
*
debug_d3dusagequery
(
DWORD
usagequery
);
...
...
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